summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/wycheproof/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/wycheproof/Makefile')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/Makefile b/src/regress/lib/libcrypto/wycheproof/Makefile
index e7338cb1f0..4359db438c 100644
--- a/src/regress/lib/libcrypto/wycheproof/Makefile
+++ b/src/regress/lib/libcrypto/wycheproof/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.1 2018/07/25 18:04:09 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2018/09/22 00:10:18 tb Exp $
2 2
3GO_VERSION != sh -c "(go version) 2>/dev/null || true" 3GO_VERSION != sh -c "(go version) 2>/dev/null || true"
4 4
@@ -11,8 +11,15 @@ regress:
11CLEANFILES+=wycheproof 11CLEANFILES+=wycheproof
12REGRESS_TARGETS=regress-wycheproof 12REGRESS_TARGETS=regress-wycheproof
13 13
14regress-wycheproof: 14audit: wycheproof
15 ./wycheproof -v
16
17wycheproof: wycheproof.go
15 go build -o wycheproof ${.CURDIR}/wycheproof.go 18 go build -o wycheproof ${.CURDIR}/wycheproof.go
19
20regress-wycheproof: wycheproof
16 ./wycheproof 21 ./wycheproof
17 22
23.PHONY: audit
24
18.include <bsd.regress.mk> 25.include <bsd.regress.mk>