blob: 19edf9398b840f35303ebfcaea0e39e752ffc0d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.2 2020/06/04 21:21:03 schwarze Exp $
PROGS = x509attribute x509name
LDADD= -lcrypto
DPADD= ${LIBCRYPTO}
WARNINGS= Yes
CFLAGS+= -Wall -Werror
REGRESS_TARGETS=regress-x509attribute regress-x509name
CLEANFILES+= x509name.result
regress-x509attribute: x509attribute
./x509attribute
regress-x509name: x509name
./x509name > x509name.result
diff -u ${.CURDIR}/x509name.expected x509name.result
.include <bsd.regress.mk>
|