From 9c41faf9bd6fba0cc577d3786883926bf66b2ab0 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 24 Feb 2024 00:47:18 -0500 Subject: add tests/cavp-tests --- tests/cavp-tests/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/cavp-tests/Makefile (limited to 'tests/cavp-tests/Makefile') diff --git a/tests/cavp-tests/Makefile b/tests/cavp-tests/Makefile new file mode 100644 index 0000000..7d5ac47 --- /dev/null +++ b/tests/cavp-tests/Makefile @@ -0,0 +1,16 @@ +CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O3 -march=native -mtune=native +APP=./cavp-tests +OBJS=sha3.o main.o + +.PHONY=all + +all: $(APP) + +$(APP): $(OBJS) + $(CC) -o $(APP) $(CFLAGS) $(OBJS) + +%.o: %.c + $(CC) -c $(CFLAGS) $< + +clean: + $(RM) -f $(APP) $(OBJS) -- cgit v1.2.3