blob: 6d694f2e1cb4f3e959a709f6b6edea4114ecccf2 (
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
|
# $OpenBSD: Makefile,v 1.5 2020/10/02 19:38:39 tb Exp $
PROGS = verify
.ifdef EOPENSSL11
LDADD += -Wl,-rpath,/usr/local/lib/eopenssl11 -L/usr/local/lib/eopenssl11
CFLAGS += -I/usr/local/include/eopenssl11/
.endif
LDADD += -lcrypto
DPADD += ${LIBCRYPTO}
WARNINGS ?= Yes
CFLAGS += -g -DLIBRESSL_INTERNAL -Wundef -Werror
REGRESS_TARGETS = bettertls-test
CLEANFILES += test.out
bettertls-test: bettertls-verify
${.CURDIR}/check.perl ${.CURDIR}/expected ${.CURDIR}/known ${.OBJDIR}/test.out
bettertls-verify: verify
./verify ${.CURDIR}/certificates > test.out
.include <bsd.regress.mk>
|