diff options
Diffstat (limited to 'src/regress/lib/libcrypto/x509/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/x509/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/x509/Makefile b/src/regress/lib/libcrypto/x509/Makefile index 19edf9398b..885a3211ec 100644 --- a/src/regress/lib/libcrypto/x509/Makefile +++ b/src/regress/lib/libcrypto/x509/Makefile | |||
@@ -1,14 +1,17 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2020/06/04 21:21:03 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2020/07/14 18:33:00 jsing Exp $ |
2 | 2 | ||
3 | PROGS = x509attribute x509name | 3 | PROGS = verify x509attribute x509name |
4 | LDADD= -lcrypto | 4 | LDADD= -lcrypto |
5 | DPADD= ${LIBCRYPTO} | 5 | DPADD= ${LIBCRYPTO} |
6 | WARNINGS= Yes | 6 | WARNINGS= Yes |
7 | CFLAGS+= -Wall -Werror | 7 | CFLAGS+= -Wall -Werror |
8 | 8 | ||
9 | REGRESS_TARGETS=regress-x509attribute regress-x509name | 9 | REGRESS_TARGETS=regress-verify regress-x509attribute regress-x509name |
10 | CLEANFILES+= x509name.result | 10 | CLEANFILES+= x509name.result |
11 | 11 | ||
12 | regress-verify: verify | ||
13 | ./verify ${.CURDIR}/../certs | ||
14 | |||
12 | regress-x509attribute: x509attribute | 15 | regress-x509attribute: x509attribute |
13 | ./x509attribute | 16 | ./x509attribute |
14 | 17 | ||