diff options
| author | IIMarckus <iimarckus@gmail.com> | 2018-06-02 03:58:54 -0600 |
|---|---|---|
| committer | IIMarckus <iimarckus@gmail.com> | 2018-06-02 03:58:54 -0600 |
| commit | 5e32a29c2e25641c17d794d8e321904cdf7de950 (patch) | |
| tree | d7bf99ff898027beee690e67dab6c847b6783582 /Makefile | |
| parent | 1a13f92d5db9cf08ddd87a5fc79f446375138b77 (diff) | |
Migrate language-dependent files to a subdirectory.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |
