initial commit

This commit is contained in:
Bryan Bishop
2012-03-04 21:31:27 -06:00
commit 7dc495b3c9
7 changed files with 2262 additions and 0 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
#gawk sort order
export LC_CTYPE=C
.SUFFIXES: .asm .tx .o .gbc
TEXTFILES =
all: pokecrystal.gbc
pokecrystal.o: pokecrystal.asm main.tx constants.asm ${TEXTFILES}
rgbasm -o pokecrystal.o pokecrystal.asm
.asm.tx:
awk -f textpre.awk < $< > $@
pokecrystal.gbc: pokecrystal.o
rgblink -o $@ $<
cmp baserom.gbc $@
clean:
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}