diff options
Diffstat (limited to 'src/regress/lib/libcrypto/x509/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/x509/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/regress/lib/libcrypto/x509/Makefile b/src/regress/lib/libcrypto/x509/Makefile index 106a9f2bf2..19edf9398b 100644 --- a/src/regress/lib/libcrypto/x509/Makefile +++ b/src/regress/lib/libcrypto/x509/Makefile | |||
@@ -1,16 +1,19 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2018/04/07 13:54:46 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2020/06/04 21:21:03 schwarze Exp $ |
2 | 2 | ||
3 | PROG= x509name | 3 | PROGS = 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-x509name | 9 | REGRESS_TARGETS=regress-x509attribute regress-x509name |
10 | CLEANFILES+= x509name.result | 10 | CLEANFILES+= x509name.result |
11 | 11 | ||
12 | regress-x509name: ${PROG} | 12 | regress-x509attribute: x509attribute |
13 | ./${PROG} > x509name.result | 13 | ./x509attribute |
14 | |||
15 | regress-x509name: x509name | ||
16 | ./x509name > x509name.result | ||
14 | diff -u ${.CURDIR}/x509name.expected x509name.result | 17 | diff -u ${.CURDIR}/x509name.expected x509name.result |
15 | 18 | ||
16 | .include <bsd.regress.mk> | 19 | .include <bsd.regress.mk> |