pokecrystal/Makefile

54 lines
1.4 KiB
Makefile
Raw Normal View History

.SUFFIXES: .asm .tx .o .gbc .png .2bpp .lz
2012-03-05 03:31:27 +00:00
TEXTFILES = \
text/sweethoney.tx \
2013-01-11 01:31:06 +00:00
text/phone/bill.tx \
text/phone/elm.tx \
text/phone/mom.tx \
text/phone/trainers1.tx \
2013-02-17 07:19:49 +00:00
text/common.tx \
text/common_2.tx \
text/common_3.tx \
2013-01-11 01:31:06 +00:00
main.tx
2012-03-05 03:31:27 +00:00
2013-05-28 04:59:11 +00: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-05 03:31:27 +00: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-05 03:31:27 +00:00
rgbasm -o pokecrystal.o pokecrystal.asm
2013-05-18 05:53:16 +00:00
pokecrystal.asm: depend
depend:
@touch main.asm
2012-03-05 03:31:27 +00:00
.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
pngs:
cd extras && python gfx.py mass-decompress && python gfx.py dump-pngs
2013-05-28 04:59:11 +00:00
lzs: $(LZ_GFX) $(TWOBPP_GFX)
2013-05-18 05:53:16 +00:00
gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp
2013-05-28 04:59:11 +00:00
python extras/gfx.py png-to-lz --front $^
gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png
2013-05-18 05:53:16 +00: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-28 04:59:11 +00:00
.png.2bpp:
python extras/gfx.py png-to-lz $<