summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2023-09-02 23:14:47 -0400
committerPaul Duncan <pabs@pablotron.org>2023-09-02 23:14:47 -0400
commitf0e2e95aa878323f1eaacfd78d3c718e52b76af5 (patch)
treee840f547e561fddc9e585c464517630c9223613f
parent32baae301751f958e1471b80216ac2d0edb62176 (diff)
downloadsha3-f0e2e95aa878323f1eaacfd78d3c718e52b76af5.tar.bz2
sha3-f0e2e95aa878323f1eaacfd78d3c718e52b76af5.zip
Makefile: add CFLAGS to test target
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)