summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2023-01-31 05:13:28 +0000
committerjsing <>2023-01-31 05:13:28 +0000
commitf778e2dfb38549abc1d2b20ea58318a0056beca0 (patch)
tree387c3ed8f927541b36b4d76f6e525c08b613b809 /src
parent405b59803d1d0002d3b6452ed4f3a54ab668b455 (diff)
downloadopenbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.tar.gz
openbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.tar.bz2
openbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.zip
Add bn/arch/${MACHINE_CPU} to the include path.
This will be needed once headers pull in bn_arch.h.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/bn/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile
index c3d9def45c..2852b2e469 100644
--- a/src/regress/lib/libcrypto/bn/Makefile
+++ b/src/regress/lib/libcrypto/bn/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.20 2023/01/29 15:18:49 jsing Exp $ 1# $OpenBSD: Makefile,v 1.21 2023/01/31 05:13:28 jsing Exp $
2 2
3PROGS += bn_add_sub 3PROGS += bn_add_sub
4PROGS += bn_cmp 4PROGS += bn_cmp
@@ -29,6 +29,7 @@ DPADD = ${LIBCRYPTO}
29WARNINGS = Yes 29WARNINGS = Yes
30CFLAGS += -Wall -Wundef -Werror 30CFLAGS += -Wall -Wundef -Werror
31CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ 31CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/
32CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/arch/${MACHINE_CPU}/
32 33
33# Use default targets from bsd.regress.mk unless overridden below 34# Use default targets from bsd.regress.mk unless overridden below
34REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} 35REGRESS_TARGETS = ${PROGS:S/^/run-regress-/}