From 5e32a29c2e25641c17d794d8e321904cdf7de950 Mon Sep 17 00:00:00 2001 From: IIMarckus Date: Sat, 2 Jun 2018 03:58:54 -0600 Subject: Migrate language-dependent files to a subdirectory. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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" -- cgit v1.2.3