diff options
-rw-r--r-- | src/regress/lib/libcrypto/evp/Makefile | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/regress/lib/libcrypto/evp/Makefile b/src/regress/lib/libcrypto/evp/Makefile index c337c3b111..c5fee02693 100644 --- a/src/regress/lib/libcrypto/evp/Makefile +++ b/src/regress/lib/libcrypto/evp/Makefile | |||
@@ -1,17 +1,22 @@ | |||
1 | # $OpenBSD: Makefile,v 1.11 2023/03/02 20:27:54 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.12 2023/03/02 20:45:11 tb Exp $ |
2 | 2 | ||
3 | PROGS= evptest evp_test evp_ecx_test evp_pkey_check evp_pkey_cleanup | 3 | PROGS += evp_ecx_test |
4 | LDADD= -lcrypto | 4 | PROGS += evp_pkey_check |
5 | DPADD= ${LIBCRYPTO} | 5 | PROGS += evp_pkey_cleanup |
6 | WARNINGS= Yes | 6 | PROGS += evp_test |
7 | CFLAGS+= -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror | 7 | PROGS += evptest |
8 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/curve25519 | ||
9 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/evp | ||
10 | 8 | ||
11 | run-regress-evptest: evptest | 9 | LDADD = -lcrypto |
10 | DPADD = ${LIBCRYPTO} | ||
11 | WARNINGS = Yes | ||
12 | CFLAGS += -DLIBRESSL_INTERNAL -DLIBRESSL_CRYPTO_INTERNAL -Werror | ||
13 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/curve25519 | ||
14 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/evp | ||
15 | |||
16 | run-regress-evptest: evptest | ||
12 | ./evptest ${.CURDIR}/evptests.txt | 17 | ./evptest ${.CURDIR}/evptests.txt |
13 | 18 | ||
14 | run-regress-evptest-verbose: | 19 | run-regress-evptest-verbose: evptest |
15 | ./evptest -v ${.CURDIR}/evptests.txt | 20 | ./evptest -v ${.CURDIR}/evptests.txt |
16 | 21 | ||
17 | .PHONY: run-regress-evptest-verbose | 22 | .PHONY: run-regress-evptest-verbose |