diff options
Diffstat (limited to 'src/regress/lib/libc/qsort/Makefile')
-rw-r--r-- | src/regress/lib/libc/qsort/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/regress/lib/libc/qsort/Makefile b/src/regress/lib/libc/qsort/Makefile new file mode 100644 index 0000000000..d3c4e2baa2 --- /dev/null +++ b/src/regress/lib/libc/qsort/Makefile | |||
@@ -0,0 +1,14 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2017/05/17 14:47:06 millert Exp $ | ||
2 | |||
3 | PROG= qsort_test | ||
4 | CFLAGS+=-Wall | ||
5 | LDADD+= -lm | ||
6 | DPADD+= ${LIBM} | ||
7 | |||
8 | qsort-regress: ${PROG} | ||
9 | ./${PROG} | ||
10 | |||
11 | REGRESS_TARGETS=qsort-regress | ||
12 | .PHONY: ${REGRESS_TARGETS} | ||
13 | |||
14 | .include <bsd.regress.mk> | ||