summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/handshake/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/handshake/Makefile')
-rw-r--r--src/regress/lib/libssl/handshake/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/regress/lib/libssl/handshake/Makefile b/src/regress/lib/libssl/handshake/Makefile
new file mode 100644
index 0000000000..151496fcbc
--- /dev/null
+++ b/src/regress/lib/libssl/handshake/Makefile
@@ -0,0 +1,20 @@
1# $OpenBSD: Makefile,v 1.1 2019/01/20 06:47:38 tb Exp $
2
3PROGS += valid_handshakes_terminate
4
5.for p in ${PROGS}
6REGRESS_TARGETS += run-$p
7.endfor
8
9LDADD = ${SSL_INT} -lcrypto
10DPADD = ${LIBCRYPTO} ${LIBSSL}
11WARNINGS = Yes
12CFLAGS += -DLIBRESSL_INTERNAL -Wundef -Werror -I$(BSDSRCDIR)/lib/libssl
13
14.for p in ${PROGS}
15run-$p: $p
16 @echo '\n======== $@ ========'
17 ./$p
18.endfor
19
20.include <bsd.regress.mk>