diff options
author | IIMarckus <iimarckus@gmail.com> | 2018-06-02 04:27:31 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2018-06-02 04:27:31 -0600 |
commit | 5d2473f767b431910da023a6e37ad3239dcdd575 (patch) | |
tree | 6200e65d9bd7e8fa8429c62d3907f21587ab74df /Makefile | |
parent | f31a2ed69f7368d88a0a1aed5c35aa8cb34af6b3 (diff) |
Start of German translation. Needs work.multilang
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ MD5 := md5sum -c pokered_obj := audio_red.o main_red.o pokeblue_obj := audio_blue.o main_blue.o -both_obj := en/text/text1.o en/text/text2.o en/text/text3.o en/text/text4.o en/text/text5.o en/text/text6.o en/text/text7.o en/text/text8.o en/text/text9.o en/text/text10.o en/text/text11.o en/text/pokedex_text.o en/text/move_names.o wram.o +both_obj := de/text/text1.o de/text/text2.o de/text/text3.o de/text/text4.o de/text/text5.o de/text/text6.o de/text/text7.o de/text/text8.o de/text/text9.o de/text/text10.o de/text/text11.o de/text/pokedex_text.o de/text/move_names.o wram.o .SUFFIXES: .SECONDEXPANSION: @@ -40,11 +40,11 @@ endif %_red.o: dep = $(shell tools/scan_includes $(@D)/$*.asm) $(pokered_obj): %_red.o: %.asm $$(dep) - rgbasm -D _RED -D LANG=1 -h -o $@ $*.asm + rgbasm -D _RED -D LANG=2 -h -o $@ $*.asm %_blue.o: dep = $(shell tools/scan_includes $(@D)/$*.asm) $(pokeblue_obj): %_blue.o: %.asm $$(dep) - rgbasm -D _BLUE -D LANG=1 -h -o $@ $*.asm + rgbasm -D _BLUE -D LANG=2 -h -o $@ $*.asm %.o: dep = $(shell tools/scan_includes $(@D)/$*.asm) $(both_obj): %.o: %.asm $$(dep) |