aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2024-12-27 12:10:20 -0600
committerGitHub <noreply@github.com>2024-12-27 13:10:20 -0500
commit5336950d5fac3ca504b8342e6c9a2d4760ab1f79 (patch)
tree70e0bf5be406046659c97b652272848d0eebccef /Makefile
parentDon't pass redundant label names to `table_width` and `list_start` (#125) (diff)
downloadpokeyellow-5336950d5fac3ca504b8342e6c9a2d4760ab1f79.tar.gz
pokeyellow-5336950d5fac3ca504b8342e6c9a2d4760ab1f79.tar.xz
pokeyellow-5336950d5fac3ca504b8342e6c9a2d4760ab1f79.zip
Use exported constants for VC patch (#124)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ee694236..6cb1fdbf 100644
--- a/Makefile
+++ b/Makefile
@@ -90,7 +90,7 @@ endif
$(pokeyellow_debug_obj): RGBASMFLAGS += -D _DEBUG
$(pokeyellow_vc_obj): RGBASMFLAGS += -D _YELLOW_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
@@ -116,10 +116,6 @@ $(foreach obj, $(pokeyellow_obj), $(eval $(call DEP,$(obj),$(obj:.o=.asm))))
$(foreach obj, $(pokeyellow_debug_obj), $(eval $(call DEP,$(obj),$(obj:_debug.o=.asm))))
$(foreach obj, $(pokeyellow_vc_obj), $(eval $(call DEP,$(obj),$(obj:_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