summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/free/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/free/Makefile')
-rw-r--r--src/regress/lib/libcrypto/free/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/free/Makefile b/src/regress/lib/libcrypto/free/Makefile
new file mode 100644
index 0000000000..cde5cb6702
--- /dev/null
+++ b/src/regress/lib/libcrypto/free/Makefile
@@ -0,0 +1,20 @@
1# $OpenBSD: Makefile,v 1.1 2017/05/02 04:03:06 beck Exp $
2
3TESTS = \
4 freenull
5
6REGRESS_TARGETS= all_tests
7
8LDADD= -lcrypto
9DPADD= ${LIBCRYPTO} ${LIBSSL}
10LDFLAGS+= -lcrypto
11CFLAGS+= -DLIBRESSL_INTERNAL
12
13CLEANFILES+= ${TESTS}
14
15all_tests: ${TESTS}
16 @for test in $>; do \
17 ./$$test; \
18 done
19
20.include <bsd.regress.mk>