diff options
author | Paul Duncan <pabs@pablotron.org> | 2024-05-08 17:03:17 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2024-05-08 17:03:17 -0400 |
commit | b55d14bbe2f5d93b92ab8e37d8a2376ed5cb1f11 (patch) | |
tree | 70b13921ec1e66fe719f923f31eacfb0a9dbd42f /tests/bench/Makefile | |
parent | 255c5fcfec7b1296c4ba764ce72d14f9dc25dea9 (diff) | |
download | sha3-b55d14bbe2f5d93b92ab8e37d8a2376ed5cb1f11.tar.bz2 sha3-b55d14bbe2f5d93b92ab8e37d8a2376ed5cb1f11.zip |
s/SHA3_BACKEND/BACKEND/g
Diffstat (limited to 'tests/bench/Makefile')
-rw-r--r-- | tests/bench/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bench/Makefile b/tests/bench/Makefile index deb00b2..7fc1a9b 100644 --- a/tests/bench/Makefile +++ b/tests/bench/Makefile @@ -1,7 +1,7 @@ # get backend from environment, or fall back to 0 if unspecified -SHA3_BACKEND ?= 0 +BACKEND ?= 0 -CFLAGS=-std=c11 -W -Wall -Wextra -Wpedantic -Werror -g -O3 -march=native -mtune=native -DSHA3_BACKEND=$(SHA3_BACKEND) +CFLAGS=-std=c11 -W -Wall -Wextra -Wpedantic -Werror -g -O3 -march=native -mtune=native -DBACKEND=$(BACKEND) APP=./bench OBJS=sha3.o bench.o |