blob: f394a9365516f71eab96d08842f7dd1e94a88a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $OpenBSD: Makefile,v 1.6 2021/08/28 15:20:19 tb Exp $
PROGS = constraints verify x509attribute x509name
LDADD= -Wl,-Bstatic -lcrypto -Wl,-Bdynamic
DPADD= ${LIBCRYPTO}
WARNINGS= Yes
CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Werror -I$(BSDSRCDIR)/lib/libcrypto/x509
SUBDIR += bettertls
REGRESS_TARGETS=regress-constraints regress-verify regress-x509attribute regress-x509name
CLEANFILES+= x509name.result
.if make(clean) || make(cleandir)
. if ${.OBJDIR} != ${.CURDIR}
.BEGIN:
rm -rf [0-9]*
. endif
.endif
regress-verify: verify
perl ${.CURDIR}/make-dir-roots.pl ${.CURDIR}/../certs .
./verify ${.CURDIR}/../certs
regress-constraints: constraints
./constraints
regress-x509attribute: x509attribute
./x509attribute
regress-x509name: x509name
./x509name > x509name.result
diff -u ${.CURDIR}/x509name.expected x509name.result
.include <bsd.regress.mk>
|