Use textpre.py instead of textpre.awk.

This commit is contained in:
IIMarckus
2012-03-05 00:05:36 -07:00
parent 093aa58ec1
commit d5fe70b03b
4 changed files with 343 additions and 307 deletions

View File

@@ -1,6 +1,3 @@
#gawk sort order
export LC_CTYPE=C
.SUFFIXES: .asm .tx .o .gbc
TEXTFILES =
@@ -11,7 +8,7 @@ pokecrystal.o: pokecrystal.asm main.tx constants.asm ${TEXTFILES}
rgbasm -o pokecrystal.o pokecrystal.asm
.asm.tx:
awk -f textpre.awk < $< > $@
python textpre.py < $< > $@
pokecrystal.gbc: pokecrystal.o
rgblink -o $@ $<