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