From 2fc8a49ceac2c49d1e55c2df96839bc8e8522220 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Fri, 3 Dec 2021 18:07:06 +0100 Subject: [PATCH] fix cleanall target (lib object files) --- 2021/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2021/Makefile b/2021/Makefile index 0e4101a..0edb149 100644 --- a/2021/Makefile +++ b/2021/Makefile @@ -44,7 +44,7 @@ clean: done cleanall: clean - @$(RM) -f $(SLIB) $(DLIB) + @$(RM) -f $(SLIB) $(DLIB) $(LIBOBJ) redo: cleanall all