summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/ocsp/Makefile
blob: 4178f3199f8d257bc0e1f21f9b5b9bdbe7d43023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#	$OpenBSD: Makefile,v 1.2 2016/07/05 00:16:23 beck Exp $

TESTS = \
	ocsp_test

REGRESS_TARGETS= all_tests

LDADD=		-lcrypto -lssl
DPADD=		${LIBCRYPTO} ${LIBSSL}
WARNINGS=	Yes
LDFLAGS+=	-lcrypto -lssl
CFLAGS+=	-DLIBRESSL_INTERNAL -Wall -Wundef -Werror

CLEANFILES+= ${TESTS}

all_tests: ${TESTS}
	@for test in $>; do \
		./$$test www.amazon.com 443; \
		./$$test cloudflare.com 443; \
	done

.include <bsd.regress.mk>