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/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/x509/Makefile b/src/regress/lib/libcrypto/x509/Makefile
new file mode 100644
index 0000000000..106a9f2bf2
--- /dev/null
+++ b/src/regress/lib/libcrypto/x509/Makefile
@@ -0,0 +1,16 @@
1# $OpenBSD: Makefile,v 1.1 2018/04/07 13:54:46 schwarze Exp $
2
3PROG= x509name
4LDADD= -lcrypto
5DPADD= ${LIBCRYPTO}
6WARNINGS= Yes
7CFLAGS+= -Wall -Werror
8
9REGRESS_TARGETS=regress-x509name
10CLEANFILES+= x509name.result
11
12regress-x509name: ${PROG}
13 ./${PROG} > x509name.result
14 diff -u ${.CURDIR}/x509name.expected x509name.result
15
16.include <bsd.regress.mk>