diff options
author | tb <> | 2022-07-08 06:25:39 +0000 |
---|---|---|
committer | tb <> | 2022-07-08 06:25:39 +0000 |
commit | a5585f64ff4005c2ba21bd6274c7eea753e67493 (patch) | |
tree | c999fc304aae64c90b4c7ff2afe3aa1618d65c3b /src | |
parent | b836d66591e0c2a45519653d065d29807d70ac5d (diff) | |
download | openbsd-a5585f64ff4005c2ba21bd6274c7eea753e67493.tar.gz openbsd-a5585f64ff4005c2ba21bd6274c7eea753e67493.tar.bz2 openbsd-a5585f64ff4005c2ba21bd6274c7eea753e67493.zip |
Add to variables instead of overriding them
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/Makefile b/src/regress/lib/libcrypto/wycheproof/Makefile index 2e1d16b165..019e2af301 100644 --- a/src/regress/lib/libcrypto/wycheproof/Makefile +++ b/src/regress/lib/libcrypto/wycheproof/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2022/07/07 20:01:20 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2022/07/08 06:25:39 tb Exp $ |
2 | 2 | ||
3 | WYCHEPROOF_TESTVECTORS = /usr/local/share/wycheproof/testvectors/ | 3 | WYCHEPROOF_TESTVECTORS = /usr/local/share/wycheproof/testvectors/ |
4 | 4 | ||
@@ -32,9 +32,9 @@ regress-wycheproof: wycheproof | |||
32 | 32 | ||
33 | PROGS += wycheproof-primes | 33 | PROGS += wycheproof-primes |
34 | 34 | ||
35 | LDADD = -lcrypto | 35 | LDADD += -lcrypto |
36 | DPADD = ${LIBCRYPTO} | 36 | DPADD += ${LIBCRYPTO} |
37 | CFLAGS = -I${.CURDIR} -I${.OBJDIR} | 37 | CFLAGS += -I${.CURDIR} -I${.OBJDIR} |
38 | 38 | ||
39 | primality_testcases.h: wycheproof-json.pl ${WYCHEPROOF_TESTVECTORS}/primality_test.json | 39 | primality_testcases.h: wycheproof-json.pl ${WYCHEPROOF_TESTVECTORS}/primality_test.json |
40 | perl ${.CURDIR}/wycheproof-json.pl > $@.tmp | 40 | perl ${.CURDIR}/wycheproof-json.pl > $@.tmp |