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