From 5916e89e41a6c4c78d5dfbdbf3fc6491551804f5 Mon Sep 17 00:00:00 2001 From: fedir Date: Mon, 18 Nov 2024 17:44:00 +0100 Subject: [PATCH] Added clean rule to the Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8f47659..ed04fd3 100644 --- a/Makefile +++ b/Makefile @@ -19,3 +19,6 @@ build: $(SOURCES_DIR)/main.cpp dev-build: $(SOURCES_DIR)/main.cpp $(CXX) $(O_CFLAGS_DEBUG) $(I_CFLAGS) $(SOURCES_DIR)/main.cpp $(O_LDFLAGS_DEBUG) $(I_LDFLAGS) -o $(BUILD_DIR)/icfs + +clean: + rm $(BUILD_DIR)/icfs