From e719c2c4bd7c9fb8bf923bccf815102be99b7dc2 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 19:53:26 +0100 Subject: [PATCH] added cleaning logs into clean rule --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 228a6f9..40fef96 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ app: $(CC) $(CFLAGS) $(SRC_CORE_APP) -o $(OUTPUT_APP) -l$(PROJECT_NAME) clean: - rm -rf $(OUTPUT)/* *.o *.so + rm -rf $(OUTPUT)/* $(LOGS)/* *.o *.so installHeader: installHeaderCore installHeaderLogger install: installHeader installLibCore installLibLogger installAppCore clean