pokecrystal/Makefile

20 lines
450 B
Makefile
Raw Normal View History

2012-03-05 03:31:27 +00:00
.SUFFIXES: .asm .tx .o .gbc
TEXTFILES = text/sweethoney.tx
2012-03-05 03:31:27 +00:00
all: pokecrystal.gbc
2012-03-21 04:23:40 +00:00
pokecrystal.o: pokecrystal.asm main.tx constants.asm wram.asm ${TEXTFILES}
2012-03-05 03:31:27 +00:00
rgbasm -o pokecrystal.o pokecrystal.asm
.asm.tx:
2012-04-26 21:58:20 +00:00
python preprocessor.py < $< > $@
2012-03-05 03:31:27 +00:00
pokecrystal.gbc: pokecrystal.o
rgblink -o $@ $<
2012-05-30 19:13:14 +00:00
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
2012-03-05 03:31:27 +00:00
cmp baserom.gbc $@
clean:
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}