pokecrystal-board/Makefile

25 lines
549 B
Makefile
Raw Normal View History

2012-03-04 19:31:27 -08:00
.SUFFIXES: .asm .tx .o .gbc
2013-01-10 17:31:06 -08:00
TEXTFILES = text/sweethoney.tx \
text/phone/bill.tx \
text/phone/elm.tx \
text/phone/mom.tx \
text/phone/trainers1.tx \
main.tx
2012-03-04 19:31:27 -08:00
all: pokecrystal.gbc
2013-01-10 17:31:06 -08:00
pokecrystal.o: pokecrystal.asm constants.asm wram.asm ${TEXTFILES}
2012-03-04 19:31:27 -08:00
rgbasm -o pokecrystal.o pokecrystal.asm
.asm.tx:
2012-04-26 14:58:20 -07:00
python preprocessor.py < $< > $@
2012-03-04 19:31:27 -08:00
pokecrystal.gbc: pokecrystal.o
rgblink -o $@ $<
2012-05-30 12:13:14 -07:00
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
2012-03-04 19:31:27 -08:00
cmp baserom.gbc $@
clean:
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}