diff options
Diffstat (limited to 'src/regress/lib/libcrypto/sha/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/sha/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/sha/Makefile b/src/regress/lib/libcrypto/sha/Makefile index 6ec223116d..c6ab0398ba 100644 --- a/src/regress/lib/libcrypto/sha/Makefile +++ b/src/regress/lib/libcrypto/sha/Makefile | |||
@@ -1,9 +1,15 @@ | |||
1 | # $OpenBSD: Makefile,v 1.5 2022/09/01 14:02:41 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.6 2025/05/22 03:35:40 joshua Exp $ |
2 | 2 | ||
3 | PROG = sha_test | 3 | PROG = sha_test |
4 | LDADD = -lcrypto | 4 | LDADD = -lcrypto |
5 | DPADD = ${LIBCRYPTO} | 5 | DPADD = ${LIBCRYPTO} |
6 | WARNINGS = Yes | 6 | WARNINGS = Yes |
7 | CFLAGS += -DLIBRESSL_INTERNAL -Werror | 7 | CFLAGS += -DLIBRESSL_INTERNAL -Werror |
8 | CFLAGS += -I${.CURDIR}/../test | ||
9 | SRCS += sha_test.c | ||
10 | SRCS += test.c | ||
11 | SRCS += test_util.c | ||
12 | |||
13 | .PATH: ${.CURDIR}/../test | ||
8 | 14 | ||
9 | .include <bsd.regress.mk> | 15 | .include <bsd.regress.mk> |