blob: a7dd6338694e1c3c34fdb307672a2b14fcee9318 (
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
|
# $OpenBSD: Makefile,v 1.6 2021/11/13 20:50:14 schwarze Exp $
TESTS = \
asn1evp \
asn1string_copy \
asn1time \
rfc5280time
PROGS = ${TESTS}
REGRESS_TARGETS= all_tests
LDADD= -lcrypto
DPADD= ${LIBCRYPTO} ${LIBSSL}
WARNINGS= Yes
LDFLAGS+= -lcrypto
CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
all_tests: ${TESTS}
@for test in $>; do \
./$$test; \
done
.include <bsd.regress.mk>
|