summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/dtls/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/dtls/Makefile')
-rw-r--r--src/regress/lib/libssl/dtls/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/regress/lib/libssl/dtls/Makefile b/src/regress/lib/libssl/dtls/Makefile
new file mode 100644
index 0000000000..5d25cde2ee
--- /dev/null
+++ b/src/regress/lib/libssl/dtls/Makefile
@@ -0,0 +1,18 @@
1# $OpenBSD: Makefile,v 1.1 2020/10/14 15:49:14 jsing Exp $
2
3PROG= dtlstest
4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO}
6WARNINGS= Yes
7CFLAGS+= -DLIBRESSL_INTERNAL -Werror
8
9REGRESS_TARGETS= \
10 regress-dtlstest
11
12regress-dtlstest: ${PROG}
13 ./dtlstest \
14 ${.CURDIR}/../../libssl/certs/server.pem \
15 ${.CURDIR}/../../libssl/certs/server.pem \
16 ${.CURDIR}/../../libssl/certs/ca.pem
17
18.include <bsd.regress.mk>