summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b5651399..79c559d1 100644
--- a/Makefile
+++ b/Makefile
@@ -40,15 +40,15 @@ endif
%_red.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
$(pokered_obj): %_red.o: %.asm $$(dep)
- rgbasm -D _RED -h -o $@ $*.asm
+ rgbasm -D _RED -D LANG=1 -h -o $@ $*.asm
%_blue.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
$(pokeblue_obj): %_blue.o: %.asm $$(dep)
- rgbasm -D _BLUE -h -o $@ $*.asm
+ rgbasm -D _BLUE -D LANG=1 -h -o $@ $*.asm
%.o: dep = $(shell tools/scan_includes $(@D)/$*.asm)
$(both_obj): %.o: %.asm $$(dep)
- rgbasm -h -o $@ $*.asm
+ rgbasm -D LANG=1 -h -o $@ $*.asm
pokered_opt = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED"
pokeblue_opt = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE"