From edad8ff5cdf93006a2041dec60fb8a8f9821a23b Mon Sep 17 00:00:00 2001 From: Syed Daanish Date: Sun, 26 Jul 2026 18:33:26 +0100 Subject: [PATCH] Refractor directory name --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7ad5a1c..5f62418 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ SRC_DIR := src BIN_DIR := bin OBJ_DIR := build INCLUDE_DIR := include +SCRIPT_DIR := scripts TARGET_DEBUG := $(BIN_DIR)/game-dbg TARGET_RELEASE := $(BIN_DIR)/game @@ -67,7 +68,7 @@ release: scripts $(TARGET_RELEASE) # ---------------- MRB_MGEMS ---------------- scripts: - ./scripts/compile.sh + $(SCRIPT_DIR)/compile.sh # ---------------- PCH ---------------- @@ -114,5 +115,5 @@ $(OBJ_DIR)/release/%.o: $(SRC_DIR)/%.cc $(PCH_RELEASE) clean: @rm -rf $(OBJ_DIR) $(BIN_DIR) - ./compile.sh clean + $(SCRIPT_DIR)/compile.sh clean @echo "Cleaned build artifacts."