From 45487891f1712c2ab93cd9fbb2213f843c6fa9e0 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 25 Sep 2025 15:24:40 -0400 Subject: [PATCH] Also remove static library when cleaning --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6d6db8..be5d1ed 100644 --- a/Makefile +++ b/Makefile @@ -141,7 +141,7 @@ tidy: clang-tidy --extra-arg=-std=c++17 $(filter %.cc,$(SOURCES)) -- $(CPPFLAGS) clean: - rm -f $(OUT)/libhardened_malloc.so $(OBJECTS) + rm -f $(OUT)/libhardened_malloc.so $(OUT)/libhardened_malloc.a $(OBJECTS) $(MAKE) -C test/ clean test: $(OUT)/libhardened_malloc$(SUFFIX).so