diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-08 06:25:40 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-08 06:25:40 +0000 |
commit | 1908b0c6517dea6c1fb6bb3f1d3771847569377a (patch) | |
tree | 283e9615d6492f9bff145742a201e2df818bf5ea /regress/lib/libcrypto/wycheproof | |
parent | bdbff2a19c6480c19c8795e929de6f374fa94474 (diff) |
Add to variables instead of overriding them
Diffstat (limited to 'regress/lib/libcrypto/wycheproof')
-rw-r--r-- | regress/lib/libcrypto/wycheproof/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libcrypto/wycheproof/Makefile b/regress/lib/libcrypto/wycheproof/Makefile index 2e1d16b1653..019e2af301d 100644 --- a/regress/lib/libcrypto/wycheproof/Makefile +++ b/regress/lib/libcrypto/wycheproof/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2022/07/07 20:01:20 tb Exp $ +# $OpenBSD: Makefile,v 1.5 2022/07/08 06:25:39 tb Exp $ WYCHEPROOF_TESTVECTORS = /usr/local/share/wycheproof/testvectors/ @@ -32,9 +32,9 @@ regress-wycheproof: wycheproof PROGS += wycheproof-primes -LDADD = -lcrypto -DPADD = ${LIBCRYPTO} -CFLAGS = -I${.CURDIR} -I${.OBJDIR} +LDADD += -lcrypto +DPADD += ${LIBCRYPTO} +CFLAGS += -I${.CURDIR} -I${.OBJDIR} primality_testcases.h: wycheproof-json.pl ${WYCHEPROOF_TESTVECTORS}/primality_test.json perl ${.CURDIR}/wycheproof-json.pl > $@.tmp |