blob: cde5cb6702d9f3f02368e75e8d88a1261c4965e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile,v 1.1 2017/05/02 04:03:06 beck Exp $
TESTS = \
freenull
REGRESS_TARGETS= all_tests
LDADD= -lcrypto
DPADD= ${LIBCRYPTO} ${LIBSSL}
LDFLAGS+= -lcrypto
CFLAGS+= -DLIBRESSL_INTERNAL
CLEANFILES+= ${TESTS}
all_tests: ${TESTS}
@for test in $>; do \
./$$test; \
done
.include <bsd.regress.mk>
|