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."