diff options
Diffstat (limited to 'src/regress/lib/libtls/tls/Makefile')
-rw-r--r-- | src/regress/lib/libtls/tls/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/regress/lib/libtls/tls/Makefile b/src/regress/lib/libtls/tls/Makefile new file mode 100644 index 0000000000..61285faab1 --- /dev/null +++ b/src/regress/lib/libtls/tls/Makefile | |||
@@ -0,0 +1,19 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2017/01/12 15:50:16 jsing Exp $ | ||
2 | |||
3 | PROG= tlstest | ||
4 | LDADD= -lcrypto -lssl -ltls | ||
5 | DPADD= ${LIBCRYPTO} ${LIBSSL} ${LIBTLS} | ||
6 | |||
7 | WARNINGS= Yes | ||
8 | CFLAGS+= -Werror | ||
9 | |||
10 | REGRESS_TARGETS= \ | ||
11 | regress-tlstest | ||
12 | |||
13 | regress-tlstest: ${PROG} | ||
14 | ./tlstest \ | ||
15 | ${.CURDIR}/../../libssl/certs/server.pem \ | ||
16 | ${.CURDIR}/../../libssl/certs/server.pem \ | ||
17 | ${.CURDIR}/../../libssl/certs/ca.pem | ||
18 | |||
19 | .include <bsd.regress.mk> | ||