diff options
Diffstat (limited to 'src/regress/lib/libcrypto/md/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/md/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/md/Makefile b/src/regress/lib/libcrypto/md/Makefile index 94bec95e05..1df57283b2 100644 --- a/src/regress/lib/libcrypto/md/Makefile +++ b/src/regress/lib/libcrypto/md/Makefile | |||
@@ -1,9 +1,15 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1.1.1 2022/09/02 13:34:48 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2025/05/22 03:24:47 joshua Exp $ |
2 | 2 | ||
3 | PROG= md_test | 3 | PROG = md_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 += md_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> |