summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/x509/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/x509/Makefile')
-rw-r--r--src/regress/lib/libcrypto/x509/Makefile15
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
3PROGS = verify x509attribute x509name 3PROGS = constraints verify x509attribute x509name
4LDADD= -lcrypto 4LDADD= -Wl,-Bstatic -lcrypto -Wl,-Bdynamic
5DPADD= ${LIBCRYPTO} 5DPADD= ${LIBCRYPTO}
6WARNINGS= Yes 6WARNINGS= Yes
7CFLAGS+= -Wall -Werror 7CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Werror -I$(BSDSRCDIR)/lib/libcrypto/x509
8 8
9REGRESS_TARGETS=regress-verify regress-x509attribute regress-x509name 9SUBDIR += bettertls
10
11REGRESS_TARGETS=regress-constraints regress-verify regress-x509attribute regress-x509name
10CLEANFILES+= x509name.result 12CLEANFILES+= x509name.result
11 13
12regress-verify: verify 14regress-verify: verify
13 ./verify ${.CURDIR}/../certs 15 ./verify ${.CURDIR}/../certs
14 16
17regress-constraints: constraints
18 ./constraints
19
15regress-x509attribute: x509attribute 20regress-x509attribute: x509attribute
16 ./x509attribute 21 ./x509attribute
17 22