summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/asn1/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/asn1/Makefile')
-rw-r--r--src/regress/lib/libcrypto/asn1/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/asn1/Makefile b/src/regress/lib/libcrypto/asn1/Makefile
new file mode 100644
index 0000000000..f7a2df5459
--- /dev/null
+++ b/src/regress/lib/libcrypto/asn1/Makefile
@@ -0,0 +1,21 @@
1# $OpenBSD: Makefile,v 1.1 2015/09/25 16:12:30 jsing Exp $
2
3TESTS = \
4 asn1time
5
6REGRESS_TARGETS= all_tests
7
8LDADD= -lcrypto
9DPADD= ${LIBCRYPTO} ${LIBSSL}
10WARNINGS= Yes
11LDFLAGS+= -lcrypto
12CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
13
14CLEANFILES+= ${TESTS}
15
16all_tests: ${TESTS}
17 @for test in $>; do \
18 ./$$test; \
19 done
20
21.include <bsd.regress.mk>