summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/asn1/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/asn1/Makefile b/src/regress/lib/libcrypto/asn1/Makefile
index d201cc1779..a92ca39e9a 100644
--- a/src/regress/lib/libcrypto/asn1/Makefile
+++ b/src/regress/lib/libcrypto/asn1/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.19 2022/06/28 08:41:17 beck Exp $ 1# $OpenBSD: Makefile,v 1.20 2022/06/28 08:44:26 tb Exp $
2 2
3PROGS = \ 3PROGS = \
4 asn1api \ 4 asn1api \
@@ -16,7 +16,6 @@ PROGS = \
16DPADD+= ${LIBCRYPTO} 16DPADD+= ${LIBCRYPTO}
17WARNINGS= Yes 17WARNINGS= Yes
18LDFLAGS+= -lcrypto 18LDFLAGS+= -lcrypto
19LDADD= ${CRYPTO_INT}
20CFLAGS+= -DLIBRESSL_INTERNAL 19CFLAGS+= -DLIBRESSL_INTERNAL
21CFLAGS+= -Wall -Wundef -Werror 20CFLAGS+= -Wall -Wundef -Werror
22CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1 21CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/asn1
@@ -24,6 +23,9 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/bytestring
24 23
25LDADD_asn1basic = ${CRYPTO_INT} 24LDADD_asn1basic = ${CRYPTO_INT}
26 25
26# XXX needs to be static until symbols are exposed
27LDADD_asn1time = ${CRYPTO_INT}
28
27.for p in ${PROGS} 29.for p in ${PROGS}
28REGRESS_TARGETS += run-$p 30REGRESS_TARGETS += run-$p
29 31