blob: 1873be6923974e9f48635dae50666241c00a6760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.6 2016/11/04 17:51:54 guenther Exp $
TEST_CASES+= cipher_list
TEST_CASES+= tls_ext_alpn
REGRESS_TARGETS= all_tests
WARNINGS= Yes
LDLIBS= ${SSL_INT} -lcrypto
CFLAGS+= -DLIBRESSL_INTERNAL -Wall -Wundef -Werror
CLEANFILES+= ${TEST_CASES}
all_tests: ${TEST_CASES}
@for test in $>; do \
./$$test; \
done
${TEST_CASES}: ${LIBSSL} ${LIBCRYPTO}
.include <bsd.regress.mk>
|