From b630d315582182b2f383c4dda19ca1ac5b049103 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Sat, 20 Feb 2021 06:24:58 +0000 Subject: [PATCH] build: adjust for sha256_arm.c --- perftests/standalone-enc/Makefile.BSD | 2 ++ spipe/Makefile.BSD | 2 ++ spiped/Makefile.BSD | 2 ++ 3 files changed, 6 insertions(+) diff --git a/perftests/standalone-enc/Makefile.BSD b/perftests/standalone-enc/Makefile.BSD index f507a1eb..b2874e83 100644 --- a/perftests/standalone-enc/Makefile.BSD +++ b/perftests/standalone-enc/Makefile.BSD @@ -22,12 +22,14 @@ IDIRS += -I${PROTO_DIR} # Fundamental algorithms .PATH.c : ${LIBCPERCIVA_DIR}/alg SRCS += sha256.c +SRCS += sha256_arm.c SRCS += sha256_shani.c SRCS += sha256_sse2.c IDIRS += -I${LIBCPERCIVA_DIR}/alg # CPU features detection .PATH.c : ${LIBCPERCIVA_DIR}/cpusupport +SRCS += cpusupport_arm_sha256.c SRCS += cpusupport_x86_aesni.c SRCS += cpusupport_x86_rdrand.c SRCS += cpusupport_x86_shani.c diff --git a/spipe/Makefile.BSD b/spipe/Makefile.BSD index 4855926f..478cfb2d 100644 --- a/spipe/Makefile.BSD +++ b/spipe/Makefile.BSD @@ -35,6 +35,7 @@ IDIRS += -I${LIB_DIR}/util # Fundamental algorithms .PATH.c : ${LIBCPERCIVA_DIR}/alg SRCS += sha256.c +SRCS += sha256_arm.c SRCS += sha256_shani.c SRCS += sha256_sse2.c IDIRS += -I${LIBCPERCIVA_DIR}/alg @@ -60,6 +61,7 @@ IDIRS += -I${LIBCPERCIVA_DIR}/util # CPU features detection .PATH.c : ${LIBCPERCIVA_DIR}/cpusupport +SRCS += cpusupport_arm_sha256.c SRCS += cpusupport_x86_aesni.c SRCS += cpusupport_x86_rdrand.c SRCS += cpusupport_x86_shani.c diff --git a/spiped/Makefile.BSD b/spiped/Makefile.BSD index 85eb7d70..e3363055 100644 --- a/spiped/Makefile.BSD +++ b/spiped/Makefile.BSD @@ -30,6 +30,7 @@ IDIRS += -I${PROTO_DIR} # Fundamental algorithms .PATH.c : ${LIBCPERCIVA_DIR}/alg SRCS += sha256.c +SRCS += sha256_arm.c SRCS += sha256_shani.c SRCS += sha256_sse2.c IDIRS += -I${LIBCPERCIVA_DIR}/alg @@ -69,6 +70,7 @@ IDIRS += -I${LIBCPERCIVA_DIR}/util # CPU features detection .PATH.c : ${LIBCPERCIVA_DIR}/cpusupport +SRCS += cpusupport_arm_sha256.c SRCS += cpusupport_x86_aesni.c SRCS += cpusupport_x86_rdrand.c SRCS += cpusupport_x86_shani.c