ref: 3ded09ef5dc1ab7af6d786cf34dd881ae8da3114
parent: 0fe8e003e4e0423a5eb016b093120429ce29ba51
parent: 32265fb71ba95632e06e403e2222c783378d1d9d
author: Bryan Bishop <kanzure@gmail.com>
date: Wed Sep 4 18:22:52 EDT 2013
Merge branch 'use-pokemontools' into master Conflicts: extras extras/analyze_incbins.py
--- /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.asm main.tx constants.asm ${TEXTFILES}
- rgbasm -o pokered.o pokered.asm
+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.asm ${TEXTFILES}
- rgbasm -o pokeblue.o pokeblue.asm
+pokeblue.o: pokeblue.tx main.tx constants.tx music.tx wram.tx ${TEXTFILES:.asm=.tx}
+ rgbasm -o pokeblue.o pokeblue.tx
-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