2013-02-09 02:09:58 -08:00
|
|
|
.SUFFIXES: .asm .tx .o .gbc .png .2bpp .lz
|
2012-03-04 19:31:27 -08:00
|
|
|
|
2013-04-04 19:40:44 -07: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')
|
2013-02-09 02:09:58 -08:00
|
|
|
|
2012-03-04 19:31:27 -08:00
|
|
|
all: pokecrystal.gbc
|
2013-04-04 19:40:44 -07:00
|
|
|
cmp baserom.gbc $<
|
2013-02-11 14:44:19 -08:00
|
|
|
clean:
|
|
|
|
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}
|
2013-05-18 01:13:45 -07:00
|
|
|
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
|
|
|
|
2013-06-18 18:54:40 -07:00
|
|
|
pokecrystal.asm: depend
|
|
|
|
depend:
|
|
|
|
@touch main.asm
|
|
|
|
|
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
|
|
|
|
2013-02-12 00:17:05 -08:00
|
|
|
pngs:
|
2013-03-18 13:36:30 -07:00
|
|
|
cd extras && python gfx.py mass-decompress && python gfx.py dump-pngs
|
2013-02-09 02:09:58 -08:00
|
|
|
|
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 $<
|
2013-02-09 02:09:58 -08:00
|
|
|
|