blob: 473432f423b3309ccc9b5482553ea0d36990b954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.3 2017/05/22 17:16:43 millert Exp $
PROG= qsort_test
SRCS= qsort_test.c antiqsort.c
CFLAGS+=-Wall
qsort-regress: ${PROG}
./${PROG}
REGRESS_TARGETS=qsort-regress
.PHONY: ${REGRESS_TARGETS}
.include <bsd.regress.mk>
|