summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorespie <>2023-07-08 18:33:41 +0000
committerespie <>2023-07-08 18:33:41 +0000
commitde646a32c9fbb104b2c228972ebfd3edc32f45d4 (patch)
tree5498a8c95150253a61b68c0bb05c4a9504025415 /src
parentfce75ad52c1586db1ba9f44c6be85668e7d4a110 (diff)
downloadopenbsd-de646a32c9fbb104b2c228972ebfd3edc32f45d4.tar.gz
openbsd-de646a32c9fbb104b2c228972ebfd3edc32f45d4.tar.bz2
openbsd-de646a32c9fbb104b2c228972ebfd3edc32f45d4.zip
partial fix for make -j8 (bluhm@ is sitting right next to me and agreeing)
there is a subtler issue with make regress/make all that will be way more of a headache to sort !
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/Makefile b/src/regress/lib/libcrypto/wycheproof/Makefile
index 4017fe0a4c..6e88568eeb 100644
--- a/src/regress/lib/libcrypto/wycheproof/Makefile
+++ b/src/regress/lib/libcrypto/wycheproof/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.7 2023/03/08 05:36:45 tb Exp $ 1# $OpenBSD: Makefile,v 1.8 2023/07/08 18:33:41 espie Exp $
2 2
3WYCHEPROOF_TESTVECTORS = /usr/local/share/wycheproof/testvectors/ 3WYCHEPROOF_TESTVECTORS = /usr/local/share/wycheproof/testvectors/
4 4
@@ -32,12 +32,11 @@ DPADD += ${LIBCRYPTO}
32CFLAGS += -I${.CURDIR} -I${.OBJDIR} 32CFLAGS += -I${.CURDIR} -I${.OBJDIR}
33 33
34primality_testcases.h: wycheproof-json.pl ${WYCHEPROOF_TESTVECTORS}/primality_test.json 34primality_testcases.h: wycheproof-json.pl ${WYCHEPROOF_TESTVECTORS}/primality_test.json
35 perl ${.CURDIR}/wycheproof-json.pl > $@.tmp 35 perl ${.CURDIR}/wycheproof-json.pl > $@.tmp && mv $@.tmp $@
36 mv -f $@.tmp $@
37 36
38wycheproof-primes: wycheproof-primes.c primality_testcases.h 37wycheproof-primes.o: primality_testcases.h
39 38
40regress-wycheproof-primes: primality_testcases.h wycheproof-primes 39regress-wycheproof-primes: wycheproof-primes
41 ./wycheproof-primes 40 ./wycheproof-primes
42 41
43CLEANFILES += primality_testcases.h 42CLEANFILES += primality_testcases.h