summaryrefslogtreecommitdiff
path: root/src/regress/lib
diff options
context:
space:
mode:
authorjsing <>2024-08-11 13:05:43 +0000
committerjsing <>2024-08-11 13:05:43 +0000
commitbe33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4 (patch)
tree29cae43f8430ebdd9bee07cc48823f7d855d4495 /src/regress/lib
parentb0dd926baf4bcb43c9b178d7c252489f4434c5a8 (diff)
downloadopenbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.tar.gz
openbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.tar.bz2
openbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.zip
Add include path for crypto_arch.h.
Diffstat (limited to '')
-rw-r--r--src/regress/lib/libcrypto/crypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/crypto/Makefile b/src/regress/lib/libcrypto/crypto/Makefile
index 34a4e7050b..c766cd8f4a 100644
--- a/src/regress/lib/libcrypto/crypto/Makefile
+++ b/src/regress/lib/libcrypto/crypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.1 2024/04/25 14:27:29 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2024/08/11 13:05:43 jsing Exp $
2 2
3PROG = crypto_test 3PROG = crypto_test
4 4
@@ -8,5 +8,6 @@ LDFLAGS+= -lcrypto
8CFLAGS+= -DLIBRESSL_INTERNAL 8CFLAGS+= -DLIBRESSL_INTERNAL
9CFLAGS+= -Wall -Wundef -Werror 9CFLAGS+= -Wall -Wundef -Werror
10CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto 10CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto
11CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/arch/${MACHINE_CPU}
11 12
12.include <bsd.regress.mk> 13.include <bsd.regress.mk>