diff options
Diffstat (limited to 'src/regress/lib/libcrypto/ocsp/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/ocsp/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/ocsp/Makefile b/src/regress/lib/libcrypto/ocsp/Makefile new file mode 100644 index 0000000000..5748b48c77 --- /dev/null +++ b/src/regress/lib/libcrypto/ocsp/Makefile | |||
@@ -0,0 +1,21 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2016/07/04 23:43:30 beck Exp $ | ||
2 | |||
3 | TESTS = \ | ||
4 | ocsp_test | ||
5 | |||
6 | REGRESS_TARGETS= all_tests | ||
7 | |||
8 | LDADD= -lcrypto -lssl | ||
9 | DPADD= ${LIBCRYPTO} ${LIBSSL} | ||
10 | WARNINGS= Yes | ||
11 | LDFLAGS+= -lcrypto -lssl | ||
12 | CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror | ||
13 | |||
14 | CLEANFILES+= ${TESTS} | ||
15 | |||
16 | all_tests: ${TESTS} | ||
17 | @for test in $>; do \ | ||
18 | ./$$test www.amazon.com 443; \ | ||
19 | done | ||
20 | |||
21 | .include <bsd.regress.mk> | ||