pokecrystal-board/Makefile

50 lines
1.3 KiB
Makefile
Raw Normal View History

.SUFFIXES: .asm .tx .o .gbc .png .2bpp .lz
2012-03-04 19:31:27 -08:00
TEXTFILES = \
text/sweethoney.tx \
2013-01-10 17:31:06 -08:00
text/phone/bill.tx \
text/phone/elm.tx \
text/phone/mom.tx \
text/phone/trainers1.tx \
2013-02-16 23:19:49 -08:00
text/common.tx \
text/common_2.tx \
text/common_3.tx \
2013-01-10 17:31:06 -08:00
main.tx
2012-03-04 19:31:27 -08:00
2013-05-27 21:59:11 -07:00
PNG_GFX = $(shell find gfx/ -type f -name '*.png')
LZ_GFX = $(shell find gfx/ -type f -name '*.lz')
TWOBPP_GFX = $(shell find gfx/ -type f -name '*.2bpp')
2012-03-04 19:31:27 -08:00
all: pokecrystal.gbc
cmp baserom.gbc $<
clean:
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}
pokecrystal.o: pokecrystal.asm constants.asm wram.asm ${TEXTFILES} lzs
2012-03-04 19:31:27 -08:00
rgbasm -o pokecrystal.o pokecrystal.asm
2013-05-17 22:53:16 -07:00
2012-03-04 19:31:27 -08:00
.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
pngs:
cd extras && python gfx.py mass-decompress && python gfx.py dump-pngs
2013-05-27 21:59:11 -07:00
lzs: $(LZ_GFX) $(TWOBPP_GFX)
2013-05-17 22:53:16 -07:00
gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp
2013-05-27 21:59:11 -07:00
python extras/gfx.py png-to-lz --front $^
gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png
2013-05-17 22:53:16 -07:00
python extras/gfx.py png-to-2bpp $<
gfx/pics/%/back.lz: gfx/pics/%/back.png
python extras/gfx.py png-to-lz --vert $<
gfx/trainers/%.lz: gfx/trainers/%.png
python extras/gfx.py png-to-lz --vert $<
.png.lz:
python extras/gfx.py png-to-lz $<
2013-05-27 21:59:11 -07:00
.png.2bpp:
python extras/gfx.py png-to-lz $<