18 lines
443 B
Makefile
18 lines
443 B
Makefile
# $OpenBSD: Makefile,v 1.2 2024/03/20 10:38:05 jsing Exp $
|
|
|
|
PROG= tlstest
|
|
LDADD= -lssl -lcrypto
|
|
DPADD= ${LIBSSL} ${LIBCRYPTO}
|
|
WARNINGS= Yes
|
|
CFLAGS+= -DLIBRESSL_INTERNAL -Werror
|
|
|
|
REGRESS_TARGETS= \
|
|
regress-tlstest
|
|
|
|
regress-tlstest: ${PROG}
|
|
./tlstest \
|
|
${.CURDIR}/../../libssl/certs/server1-rsa.pem \
|
|
${.CURDIR}/../../libssl/certs/server1-rsa-chain.pem \
|
|
${.CURDIR}/../../libssl/certs/ca-root-rsa.pem
|
|
|
|
.include <bsd.regress.mk>
|