diff options
Diffstat (limited to 'src/regress/lib/libcrypto/x509/policy/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/x509/policy/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/x509/policy/Makefile b/src/regress/lib/libcrypto/x509/policy/Makefile new file mode 100644 index 0000000000..b365499412 --- /dev/null +++ b/src/regress/lib/libcrypto/x509/policy/Makefile | |||
@@ -0,0 +1,22 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2023/04/27 12:23:31 beck Exp $ | ||
2 | |||
3 | PROGS = policy | ||
4 | |||
5 | LDADD = -lcrypto | ||
6 | DPADD = ${LIBCRYPTO} | ||
7 | |||
8 | LDADD_policy = ${CRYPTO_INT} | ||
9 | |||
10 | WARNINGS = Yes | ||
11 | CFLAGS += -DLIBRESSL_INTERNAL -Wall -Werror | ||
12 | CFLAGS += -I${.CURDIR}/../../../../../lib/libcrypto/x509 | ||
13 | CFLAGS += -I${.CURDIR}/../../../../../lib/libcrypto/bytestring | ||
14 | CFLAGS += -DCERTSDIR=\"${.CURDIR}/../../../libcrypto/x509/policy\" | ||
15 | |||
16 | REGRESS_TARGETS = policy-test | ||
17 | |||
18 | policy-test: policy | ||
19 | ./policy | ||
20 | |||
21 | .include "../../Makefile.inc" | ||
22 | .include <bsd.regress.mk> | ||