From 2d7387a9f5dfdda7569f10d2f85ece9f12d208bd Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sun, 17 Sep 2023 11:22:09 -0400 Subject: Makefile: add LIB to clean target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3