summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/qsort/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libc/qsort/Makefile')
-rw-r--r--src/regress/lib/libc/qsort/Makefile14
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
3PROG= qsort_test
4CFLAGS+=-Wall
5LDADD+= -lm
6DPADD+= ${LIBM}
7
8qsort-regress: ${PROG}
9 ./${PROG}
10
11REGRESS_TARGETS=qsort-regress
12.PHONY: ${REGRESS_TARGETS}
13
14.include <bsd.regress.mk>