diff options
author | Paul Duncan <pabs@pablotron.org> | 2023-09-17 11:22:09 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2023-09-17 11:22:09 -0400 |
commit | 2d7387a9f5dfdda7569f10d2f85ece9f12d208bd (patch) | |
tree | b894522774aa877689dba5c273129af0a779e903 /Makefile | |
parent | c6cbe4eb859162e527998ded07db959feb13584c (diff) | |
download | sha3-2d7387a9f5dfdda7569f10d2f85ece9f12d208bd.tar.bz2 sha3-2d7387a9f5dfdda7569f10d2f85ece9f12d208bd.zip |
Makefile: add LIB to clean target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,5 +32,6 @@ $(LIB): $(LIB_OBJS) test: $(CC) -o $(TEST_APP) $(TEST_CFLAGS) -DSHA3_TEST sha3.c && $(TEST_APP) +# remove build files clean: - $(RM) -f $(TEST_APP) $(APP) $(LIB_OBJS) $(APP_OBJS) + $(RM) -f $(TEST_APP) $(APP) $(APP_OBJS) $(LIB) $(LIB_OBJS) |