Fix remove old mod dir script in Makefile

This commit is contained in:
Agent X 2023-12-21 17:27:13 -05:00
parent a71fda7157
commit a04dd8b297
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ _ := $(shell rm -rf ./$(BUILD_DIR)/$(LANG_DIR))
MOD_DIR := mods MOD_DIR := mods
# Remove old mod dir # Remove old mod dir
_ := $(PYTHON) $(TOOLS_DIR)/remove_built_in_mods.py _ := $(shell $(PYTHON) $(TOOLS_DIR)/remove_built_in_mods.py)
# Automatic dependency files # Automatic dependency files
DEP_FILES := $(O_FILES:.o=.d) $(ULTRA_O_FILES:.o=.d) $(GODDARD_O_FILES:.o=.d) $(BUILD_DIR)/$(LD_SCRIPT).d DEP_FILES := $(O_FILES:.o=.d) $(ULTRA_O_FILES:.o=.d) $(GODDARD_O_FILES:.o=.d) $(BUILD_DIR)/$(LD_SCRIPT).d