diff options
Diffstat (limited to 'src/regress/lib/libcrypto/wycheproof/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/Makefile | 11 |
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 | ||
3 | GO_VERSION != sh -c "(go version) 2>/dev/null || true" | 3 | GO_VERSION != sh -c "(go version) 2>/dev/null || true" |
4 | 4 | ||
@@ -11,8 +11,15 @@ regress: | |||
11 | CLEANFILES+=wycheproof | 11 | CLEANFILES+=wycheproof |
12 | REGRESS_TARGETS=regress-wycheproof | 12 | REGRESS_TARGETS=regress-wycheproof |
13 | 13 | ||
14 | regress-wycheproof: | 14 | audit: wycheproof |
15 | ./wycheproof -v | ||
16 | |||
17 | wycheproof: wycheproof.go | ||
15 | go build -o wycheproof ${.CURDIR}/wycheproof.go | 18 | go build -o wycheproof ${.CURDIR}/wycheproof.go |
19 | |||
20 | regress-wycheproof: wycheproof | ||
16 | ./wycheproof | 21 | ./wycheproof |
17 | 22 | ||
23 | .PHONY: audit | ||
24 | |||
18 | .include <bsd.regress.mk> | 25 | .include <bsd.regress.mk> |