From f0e2e95aa878323f1eaacfd78d3c718e52b76af5 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 2 Sep 2023 23:14:47 -0400 Subject: Makefile: add CFLAGS to test target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 11f844c..b858ffc 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ $(EXAMPLE_APP): $(OBJS) $(CC) -c $(CFLAGS) $< test: - $(CC) -o $(TEST_APP) -DSHA3_TEST sha3.c && $(TEST_APP) + $(CC) -o $(TEST_APP) $(CFLAGS) -DSHA3_TEST sha3.c && $(TEST_APP) clean: $(RM) -f $(TEST_APP) $(EXAMPLE_APP) $(OBJS) -- cgit v1.2.3