aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2024-12-27 12:10:13 -0600
committerGitHub <noreply@github.com>2024-12-27 13:10:13 -0500
commit0d4562d1b855bfa7965349e1a92deac0f5b89a27 (patch)
treedc3696bd493d990070788ee6afa84857eed0f7fd /Makefile
parentDon't pass redundant label names to `table_width` and `list_start` (#484) (diff)
downloadpokeyellow-0d4562d1b855bfa7965349e1a92deac0f5b89a27.tar.gz
pokeyellow-0d4562d1b855bfa7965349e1a92deac0f5b89a27.tar.xz
pokeyellow-0d4562d1b855bfa7965349e1a92deac0f5b89a27.zip
Use exported constants for VC patch (#483)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e53fce45..08c4dd9b 100644
--- a/Makefile
+++ b/Makefile
@@ -97,7 +97,7 @@ $(pokeblue_debug_obj): RGBASMFLAGS += -D _BLUE -D _DEBUG
$(pokered_vc_obj): RGBASMFLAGS += -D _RED -D _RED_VC
$(pokeblue_vc_obj): RGBASMFLAGS += -D _BLUE -D _BLUE_VC
-%.patch: vc/%.constants.sym %_vc.gbc %.gbc vc/%.patch.template
+%.patch: %_vc.gbc %.gbc vc/%.patch.template
tools/make_patch $*_vc.sym $^ $@
rgbdscheck.o: rgbdscheck.asm
@@ -125,10 +125,6 @@ $(foreach obj, $(pokeblue_debug_obj), $(eval $(call DEP,$(obj),$(obj:_blue_debug
$(foreach obj, $(pokered_vc_obj), $(eval $(call DEP,$(obj),$(obj:_red_vc.o=.asm))))
$(foreach obj, $(pokeblue_vc_obj), $(eval $(call DEP,$(obj),$(obj:_blue_vc.o=.asm))))
-# Dependencies for VC files that need to run scan_includes
-%.constants.sym: %.constants.asm $(shell tools/scan_includes %.constants.asm) $(preinclude_deps) | rgbdscheck.o
- $(RGBASM) $(RGBASMFLAGS) $< > $@
-
endif