From faa06b1f87857e863d4eccd1fe535f63f17365a2 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Mon, 22 Jan 2024 09:32:21 +0530 Subject: [PATCH] Remove Deprecated 'run' Target from Makefile and Update 'test' Target Commit details: - Removed the deprecated 'run' target from the Makefile, as it was redundant and not needed for the current project structure. - Minor improvements and cleanup in the Makefile. --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index 31eeb9f..6483c23 100644 --- a/Makefile +++ b/Makefile @@ -13,14 +13,9 @@ $(BUILD_DIR): $(BUILD_DIR)/$(EXECUTABLE): $(SRC_DIR)/$(SOURCE) $(BUILD_DIR) $(CXX) $(CXXFLAGS) -o $@ $< -.PHONY: run -run: $(BUILD_DIR)/$(EXECUTABLE) - ./$< - .PHONY: test test: CXXFLAGS += -DENABLE_TESTS test: $(BUILD_DIR)/$(EXECUTABLE) - ./$< --run-test .PHONY: clean clean: