summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/asn1/Makefile
blob: abb69cb37935cfb98b9df9e7177304dae0e85822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#	$OpenBSD: Makefile,v 1.3 2017/11/28 16:47:55 jsing Exp $

TESTS = \
	asn1evp \
	asn1time \
	rfc5280time

REGRESS_TARGETS= all_tests

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

CLEANFILES+= ${TESTS}

all_tests: ${TESTS}
	@for test in $>; do \
		./$$test; \
	done

.include <bsd.regress.mk>