blob: 9981858eb7c1f1741e20d283480c156d04d2fec0 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# $OpenBSD: Makefile,v 1.10 2021/12/24 03:01:23 tb Exp $
PROGS = constraints verify x509attribute x509name x509req_ext callback
LDADD= -Wl,-Bstatic -lcrypto -Wl,-Bdynamic
DPADD= ${LIBCRYPTO}
WARNINGS= Yes
CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Werror -I$(BSDSRCDIR)/lib/libcrypto/x509
SUBDIR += bettertls rfc3779
REGRESS_TARGETS += regress-verify
REGRESS_TARGETS += regress-constraints
REGRESS_TARGETS += regress-x509attribute
REGRESS_TARGETS += regress-x509name
REGRESS_TARGETS += regress-x509req_ext
REGRESS_TARGETS += regress-callback
CLEANFILES+= x509name.result callbackout
.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
regress-x509req_ext: x509req_ext
./x509req_ext
regress-callback: callback
./callback ${.CURDIR}/../certs
perl ${.CURDIR}/callback.pl callback.out
.include <bsd.regress.mk>
|