diff options
author | tb <> | 2025-01-04 18:13:58 +0000 |
---|---|---|
committer | tb <> | 2025-01-04 18:13:58 +0000 |
commit | cd8752d60a836e131c86ae2883a1769e20419f3a (patch) | |
tree | 793bad5cf5646e4cef674e619ad15ce67f7cc515 | |
parent | 7ce51cb2cf1b0e87237d81a5cced141c84e5e274 (diff) | |
download | openbsd-cd8752d60a836e131c86ae2883a1769e20419f3a.tar.gz openbsd-cd8752d60a836e131c86ae2883a1769e20419f3a.tar.bz2 openbsd-cd8752d60a836e131c86ae2883a1769e20419f3a.zip |
rsa tests: tidy up the makefile
-rw-r--r-- | src/regress/lib/libcrypto/rsa/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/regress/lib/libcrypto/rsa/Makefile b/src/regress/lib/libcrypto/rsa/Makefile index 494d40d867..6c33c39755 100644 --- a/src/regress/lib/libcrypto/rsa/Makefile +++ b/src/regress/lib/libcrypto/rsa/Makefile | |||
@@ -1,10 +1,11 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2024/03/30 00:36:14 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2025/01/04 18:13:58 tb Exp $ |
2 | 2 | ||
3 | PROGS= rsa_test \ | 3 | PROGS += rsa_test |
4 | rsa_padding_test | 4 | PROGS += rsa_padding_test |
5 | LDADD= -lcrypto | 5 | |
6 | DPADD= ${LIBCRYPTO} | 6 | LDADD = -lcrypto |
7 | WARNINGS= Yes | 7 | DPADD = ${LIBCRYPTO} |
8 | CFLAGS+= -DLIBRESSL_INTERNAL -Werror | 8 | WARNINGS = Yes |
9 | CFLAGS += -DLIBRESSL_INTERNAL -Werror | ||
9 | 10 | ||
10 | .include <bsd.regress.mk> | 11 | .include <bsd.regress.mk> |