From 7ab624d7b121d68c638f1e858ce6d46c08ddc454 Mon Sep 17 00:00:00 2001 From: Alex Bates Date: Sat, 15 Aug 2020 00:57:39 +0100 Subject: [PATCH] make: remove common_structs.h rule --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index 68d3ecefaf..1693dd52ea 100644 --- a/Makefile +++ b/Makefile @@ -14,21 +14,17 @@ DATA_DIRS := bin COMPRESSED_DIRS := yay0 MAP_DIRS := Map_Assets.FS BGM_DIRS := bgm -STAR_ROD_STRUCT_DIRS := tools/star-rod/database/structs/ram tools/star-rod/database/structs/rom tools/star-rod/database/structs/wip # Source code files C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c)) S_FILES := $(foreach dir,$(ASM_DIRS),$(wildcard $(dir)/*.s)) ifdef PM_HEADER_REBUILD H_FILES := $(foreach dir,$(INCLUDE_DIRS),$(wildcard $(dir)/*.h)) -else - H_FILES := [] endif DATA_FILES := $(foreach dir,$(DATA_DIRS),$(wildcard $(dir)/*.bin)) COMPRESSED_FILES := $(foreach dir,$(COMPRESSED_DIRS),$(wildcard $(dir)/*.yay0)) MAP_FILES := $(foreach dir,$(MAP_DIRS),$(wildcard $(dir)/*.FS)) BGM_FILES := $(foreach dir,$(BGM_DIRS),$(wildcard $(dir)/*.bgm)) -STAR_ROD_STRUCT_FILES := $(foreach dir,$(STAR_ROD_STRUCT_DIRS),$(wildcard $(dir)/*.struct)) # Object files O_FILES := $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.c=.o)) \ @@ -90,9 +86,6 @@ setup: clean submodules n64split split print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true -include/common_structs.h: tools/starrod_structs_to_h.py $(STAR_ROD_STRUCT_FILES) - python3 tools/starrod_structs_to_h.py - $(BUILD_DIR): mkdir $(BUILD_DIR)