ref: e84a5b2062ff5e9b010447e3a3c78dd67a653166
parent: 4d6b8249698a8cd1ba42ee3517de08252c8062f2
author: Bryan Bishop <kanzure@gmail.com>
date: Sat Aug 31 22:27:44 EDT 2013
make extras/ a submodule Use pokemontools v1.3.0 and use the same preprocessor as the pokecrystal project.
--- /dev/null
+++ b/.gitmodules
@@ -1,0 +1,3 @@
+[submodule "extras"]
+ path = extras
+ url = git://github.com/kanzure/pokemon-reverse-engineering-tools.git
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,16 @@
.SUFFIXES: .asm .tx .o .gbc
-TEXTFILES = text/oakspeech.tx text/pokedex.tx text/mapRedsHouse1F.tx \
- text/mapBluesHouse.tx text/mapPalletTown.tx
+TEXTFILES := $(shell find ./ -type f -name '*.asm')
all: pokered.gbc
-pokered.o: pokered.tx main.tx constants.tx music.tx wram.tx ${TEXTFILES}
+pokered.o: pokered.tx main.tx constants.tx music.tx wram.tx ${TEXTFILES:.asm=.tx}
rgbasm -o pokered.o pokered.tx
-pokeblue.o: pokeblue.asm main.tx constants.tx ${TEXTFILES}
+pokeblue.o: pokeblue.tx main.tx constants.tx music.tx wram.tx ${TEXTFILES:.asm=.tx}
rgbasm -o pokeblue.o pokeblue.asm
-redrle: extras/redrle.c
+redrle: extras/redtools/redrle.c
${CC} -o $@ $>
.asm.tx:
@@ -28,6 +27,6 @@
cmp blue.gbc $@
clean:
- rm -f main.tx pokered.o pokered.gbc pokeblue.o pokeblue.gbc redrle ${TEXTFILES}
+ rm -f pokered.o pokered.gbc pokeblue.o pokeblue.gbc redrle $(TEXTFILES:.asm=.tx)
more: pokered.gbc pokeblue.gbc