summaryrefslogtreecommitdiff
path: root/regress/lib/libcrypto/x509/Makefile
blob: 106a9f2bf2becf498004ce95d9973a3150b021c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$OpenBSD: Makefile,v 1.1 2018/04/07 13:54:46 schwarze Exp $

PROG=	x509name
LDADD=	-lcrypto
DPADD=	${LIBCRYPTO}
WARNINGS=	Yes
CFLAGS+=	-Wall -Werror

REGRESS_TARGETS=regress-x509name
CLEANFILES+=	x509name.result

regress-x509name: ${PROG}
	./${PROG} > x509name.result
	diff -u ${.CURDIR}/x509name.expected x509name.result

.include <bsd.regress.mk>