diff options
Diffstat (limited to 'src/regress/lib/libcrypto/free/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/free/Makefile | 20 |
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 | |||
3 | TESTS = \ | ||
4 | freenull | ||
5 | |||
6 | REGRESS_TARGETS= all_tests | ||
7 | |||
8 | LDADD= -lcrypto | ||
9 | DPADD= ${LIBCRYPTO} ${LIBSSL} | ||
10 | LDFLAGS+= -lcrypto | ||
11 | CFLAGS+= -DLIBRESSL_INTERNAL | ||
12 | |||
13 | CLEANFILES+= ${TESTS} | ||
14 | |||
15 | all_tests: ${TESTS} | ||
16 | @for test in $>; do \ | ||
17 | ./$$test; \ | ||
18 | done | ||
19 | |||
20 | .include <bsd.regress.mk> | ||