diff options
Diffstat (limited to 'src/regress/lib/libcrypto/x509/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/x509/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/x509/Makefile b/src/regress/lib/libcrypto/x509/Makefile index 885a3211ec..37da3fb933 100644 --- a/src/regress/lib/libcrypto/x509/Makefile +++ b/src/regress/lib/libcrypto/x509/Makefile | |||
@@ -1,17 +1,22 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2020/07/14 18:33:00 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2020/09/11 18:34:29 beck Exp $ |
2 | 2 | ||
3 | PROGS = verify x509attribute x509name | 3 | PROGS = constraints verify x509attribute x509name |
4 | LDADD= -lcrypto | 4 | LDADD= -Wl,-Bstatic -lcrypto -Wl,-Bdynamic |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
7 | CFLAGS+= -Wall -Werror | 7 | CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Werror -I$(BSDSRCDIR)/lib/libcrypto/x509 |
8 | 8 | ||
9 | REGRESS_TARGETS=regress-verify regress-x509attribute regress-x509name | 9 | SUBDIR += bettertls |
10 | |||
11 | REGRESS_TARGETS=regress-constraints regress-verify regress-x509attribute regress-x509name | ||
10 | CLEANFILES+= x509name.result | 12 | CLEANFILES+= x509name.result |
11 | 13 | ||
12 | regress-verify: verify | 14 | regress-verify: verify |
13 | ./verify ${.CURDIR}/../certs | 15 | ./verify ${.CURDIR}/../certs |
14 | 16 | ||
17 | regress-constraints: constraints | ||
18 | ./constraints | ||
19 | |||
15 | regress-x509attribute: x509attribute | 20 | regress-x509attribute: x509attribute |
16 | ./x509attribute | 21 | ./x509attribute |
17 | 22 | ||