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