summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2012-03-05 00:05:36 -0700
committerIIMarckus <iimarckus@gmail.com>2012-03-05 00:05:36 -0700
commitd5fe70b03b5bf031ba3f1d686c2377ac81f0da3b (patch)
treeb83de210f0b6f8ed8ee7e7c4cce64c1e07c72eac /Makefile
parent093aa58ec161a384a6bf18b65a87347d98ccafb9 (diff)
Use textpre.py instead of textpre.awk.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 548d67a5d..3aafb0c89 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $@ $<