blob: 51305012d6f790ce2017eab8eae04689d394caf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.1 2024/01/19 08:29:08 jsing Exp $
PROG= shutdowntest
LDADD= -lssl -lcrypto
DPADD= ${LIBSSL} ${LIBCRYPTO}
WARNINGS= Yes
CFLAGS+= -DLIBRESSL_INTERNAL -Werror
REGRESS_TARGETS= \
regress-shutdowntest
regress-shutdowntest: ${PROG}
./shutdowntest \
${.CURDIR}/../../libssl/certs/server.pem \
${.CURDIR}/../../libssl/certs/server.pem \
${.CURDIR}/../../libssl/certs/ca.pem
.include <bsd.regress.mk>
|