summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlibjet <libj3t@gmail.com>2020-02-19 02:42:34 +0000
committerlibjet <libj3t@gmail.com>2020-02-19 02:42:34 +0000
commit5172056acdf4691e8d3db4563d3a1a73d7025efc (patch)
tree91a918cd62b151c993a843a388cc38ec0e51509f /Makefile
parent6cbd16985aaa5408f855454c55a073d753b38d8c (diff)
Use labels instead of constants for HRAM
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 212efd54..a8309730 100644
--- a/Makefile
+++ b/Makefile
@@ -43,10 +43,10 @@ $(foreach obj, $(gold_obj), $(eval $(call DEP,$(obj),$(obj:_gold.o=.asm))))
$(foreach obj, $(silver_obj), $(eval $(call DEP,$(obj),$(obj:_silver.o=.asm))))
$(gold_obj): %_gold.o: %.asm $$(dep)
- rgbasm -D GOLD -o $@ $<
+ rgbasm -D GOLD -L -o $@ $<
$(silver_obj): %_silver.o: %.asm $$(dep)
- rgbasm -D SILVER -o $@ $<
+ rgbasm -D SILVER -L -o $@ $<
pokegold.gbc: $(gold_obj)
rgblink -n pokegold.sym -m pokegold.map -l pokegold.link -o $@ $^