diff options
Diffstat (limited to 'src/regress/lib/libssl/handshake/Makefile')
-rw-r--r-- | src/regress/lib/libssl/handshake/Makefile | 20 |
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 | |||
3 | PROGS += valid_handshakes_terminate | ||
4 | |||
5 | .for p in ${PROGS} | ||
6 | REGRESS_TARGETS += run-$p | ||
7 | .endfor | ||
8 | |||
9 | LDADD = ${SSL_INT} -lcrypto | ||
10 | DPADD = ${LIBCRYPTO} ${LIBSSL} | ||
11 | WARNINGS = Yes | ||
12 | CFLAGS += -DLIBRESSL_INTERNAL -Wundef -Werror -I$(BSDSRCDIR)/lib/libssl | ||
13 | |||
14 | .for p in ${PROGS} | ||
15 | run-$p: $p | ||
16 | @echo '\n======== $@ ========' | ||
17 | ./$p | ||
18 | .endfor | ||
19 | |||
20 | .include <bsd.regress.mk> | ||