blob: 4b47bfdc2bec171e9d4a2b4d838063a24d433556 (
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
|
# $OpenBSD: Makefile,v 1.7 2021/11/30 07:34:29 jsing Exp $
TESTS = \
asn1evp \
asn1string_copy \
asn1time \
asn1x509 \
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>
|