summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/api/Makefile
diff options
context:
space:
mode:
authortb <>2023-04-14 12:38:30 +0000
committertb <>2023-04-14 12:38:30 +0000
commit5264a960a8d814a5b4d0ae2da392a87900170249 (patch)
tree7f8ed4763441e51c4513f6fcceedce86984e5918 /src/regress/lib/libssl/api/Makefile
parentf78b4c90269928d9cf87e71271ceff64401ba9ce (diff)
downloadopenbsd-5264a960a8d814a5b4d0ae2da392a87900170249.tar.gz
openbsd-5264a960a8d814a5b4d0ae2da392a87900170249.tar.bz2
openbsd-5264a960a8d814a5b4d0ae2da392a87900170249.zip
Make the apitest work better with the portable tets framework
Diffstat (limited to 'src/regress/lib/libssl/api/Makefile')
-rw-r--r--src/regress/lib/libssl/api/Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/regress/lib/libssl/api/Makefile b/src/regress/lib/libssl/api/Makefile
index 0989fc2264..7f745518eb 100644
--- a/src/regress/lib/libssl/api/Makefile
+++ b/src/regress/lib/libssl/api/Makefile
@@ -1,16 +1,10 @@
1# $OpenBSD: Makefile,v 1.1 2022/01/05 09:59:39 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2023/04/14 12:38:30 tb Exp $
2 2
3PROG= apitest 3PROG= apitest
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO} 5DPADD= ${LIBSSL} ${LIBCRYPTO}
6WARNINGS= Yes 6WARNINGS= Yes
7CFLAGS+= -DLIBRESSL_INTERNAL -Werror 7CFLAGS+= -DLIBRESSL_INTERNAL -Werror
8 8CFLAGS+= -DCERTSDIR=\"${.CURDIR}/../../libssl/certs\"
9REGRESS_TARGETS= \
10 regress-apitest
11
12regress-apitest: ${PROG}
13 ./apitest \
14 ${.CURDIR}/../../libssl/certs
15 9
16.include <bsd.regress.mk> 10.include <bsd.regress.mk>