summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2023-09-17 11:22:09 -0400
committerPaul Duncan <pabs@pablotron.org>2023-09-17 11:22:09 -0400
commit2d7387a9f5dfdda7569f10d2f85ece9f12d208bd (patch)
treeb894522774aa877689dba5c273129af0a779e903
parentc6cbe4eb859162e527998ded07db959feb13584c (diff)
downloadsha3-2d7387a9f5dfdda7569f10d2f85ece9f12d208bd.tar.bz2
sha3-2d7387a9f5dfdda7569f10d2f85ece9f12d208bd.zip
Makefile: add LIB to clean target
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 865d668..fc8945e 100644
--- a/Makefile
+++ b/Makefile
@@ -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)