diff options
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libssl/ssl/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/regress/lib/libssl/ssl/Makefile b/src/regress/lib/libssl/ssl/Makefile new file mode 100644 index 0000000000..35a7a9a6be --- /dev/null +++ b/src/regress/lib/libssl/ssl/Makefile | |||
@@ -0,0 +1,14 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2014/05/24 14:56:32 jsing Exp $ | ||
2 | |||
3 | PROG= ssltest | ||
4 | LDADD= -lcrypto -lssl | ||
5 | DPADD= ${LIBCRYPTO} ${LIBSSL} | ||
6 | |||
7 | REGRESS_TARGETS=regress-ssltest | ||
8 | |||
9 | regress-ssltest: ${PROG} | ||
10 | sh ${.CURDIR}/testssl \ | ||
11 | ${.CURDIR}/../certs/server.pem ${.CURDIR}/../certs/server.pem \ | ||
12 | ${.CURDIR}/../certs/ca.pem | ||
13 | |||
14 | .include <bsd.regress.mk> | ||