diff options
author | Paul Duncan <pabs@pablotron.org> | 2023-09-02 23:14:47 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2023-09-02 23:14:47 -0400 |
commit | f0e2e95aa878323f1eaacfd78d3c718e52b76af5 (patch) | |
tree | e840f547e561fddc9e585c464517630c9223613f /Makefile | |
parent | 32baae301751f958e1471b80216ac2d0edb62176 (diff) | |
download | sha3-f0e2e95aa878323f1eaacfd78d3c718e52b76af5.tar.bz2 sha3-f0e2e95aa878323f1eaacfd78d3c718e52b76af5.zip |
Makefile: add CFLAGS to test target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |