summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/handshake/Makefile
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2022-10-20 07:33:15 +0000
committercvs2svn <admin@example.com>2022-10-20 07:33:15 +0000
commit963a7b06e7d578322df5c53439ac3f52eae54095 (patch)
tree47b3068b3442e2e9768ae23e8bcf303231adf015 /src/regress/lib/libssl/handshake/Makefile
parent6ef02c2707dc554983552781e5b767ae8103de15 (diff)
downloadopenbsd-tb_20221020.tar.gz
openbsd-tb_20221020.tar.bz2
openbsd-tb_20221020.zip
This commit was manufactured by cvs2git to create tag 'tb_20221020'.tb_20221020
Diffstat (limited to 'src/regress/lib/libssl/handshake/Makefile')
-rw-r--r--src/regress/lib/libssl/handshake/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/regress/lib/libssl/handshake/Makefile b/src/regress/lib/libssl/handshake/Makefile
deleted file mode 100644
index 64bd5709a8..0000000000
--- a/src/regress/lib/libssl/handshake/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
1# $OpenBSD: Makefile,v 1.9 2022/06/29 15:06:18 tb Exp $
2
3PROGS += handshake_table
4PROGS += valid_handshakes_terminate
5
6.for p in ${PROGS}
7REGRESS_TARGETS += run-$p
8.endfor
9
10LDADD = ${SSL_INT} -lcrypto
11DPADD = ${LIBCRYPTO} ${LIBSSL}
12WARNINGS = Yes
13CFLAGS += -DLIBRESSL_INTERNAL -Wundef -Werror
14CFLAGS+= -I${.CURDIR}/../../../../lib/libssl
15
16print: handshake_table
17 @./handshake_table -C
18
19handshake.gv: handshake_table
20 ./handshake_table -g > $@.tmp
21 mv $@.tmp $@
22
23CLEANFILES += handshake.gv
24
25.for _FMT in png ps svg
26handshake.${_FMT}: handshake.gv
27 @if [ ! -x /usr/local/bin/dot ]; then \
28 echo "pkg_add graphviz to generate png"; \
29 false; \
30 fi
31 dot -T${_FMT} handshake.gv -o $@
32
33CLEANFILES += handshake.${_FMT}
34.endfor
35
36.for p in ${PROGS}
37run-$p: $p
38 ./$p
39
40.PHONY: run-$p
41.endfor
42
43.PHONY: print
44
45.include <bsd.regress.mk>