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-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 \
|
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-02-11 14:44:19 -08:00
|
|
|
VERTGFX = gfx/pics/%.png \
|
2013-02-09 02:09:58 -08:00
|
|
|
gfx/trainers/%.png
|
|
|
|
|
2013-02-11 14:44:19 -08:00
|
|
|
HORIZGFX = $(filter-out gfx/%.png, $(VERTGFX))
|
2013-02-09 02:09:58 -08:00
|
|
|
|
|
|
|
|
2013-02-11 14:44:19 -08:00
|
|
|
# uncomment this build target to enable png import:
|
|
|
|
|
|
|
|
#all: lzs
|
|
|
|
|
|
|
|
# the recompressed graphics may be larger than the originals,
|
|
|
|
# so take care to reorganize accordingly
|
2013-02-09 02:09:58 -08:00
|
|
|
|
2012-03-04 19:31:27 -08:00
|
|
|
all: pokecrystal.gbc
|
|
|
|
|
2013-02-11 14:44:19 -08:00
|
|
|
clean:
|
|
|
|
rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES}
|
|
|
|
|
2013-02-09 02:09:58 -08:00
|
|
|
|
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 $@
|
|
|
|
|
2013-02-09 02:09:58 -08:00
|
|
|
|
2013-02-12 00:17:05 -08:00
|
|
|
lzs: ${VERTGFX} ${HORIZGFX}
|
2013-02-10 14:50:30 -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-02-12 00:17:05 -08:00
|
|
|
front.png: tiles.png
|
2013-03-18 13:36:30 -07:00
|
|
|
cd extras && python gfx.py png-to-lz --front $@ $(OBJECT_DIRECTORY)/tiles.2bpp
|
2013-02-12 00:17:05 -08:00
|
|
|
tiles.png:
|
2013-03-18 13:36:30 -07:00
|
|
|
cd extras && python gfx.py png-to-2bpp $@
|
2013-02-12 00:17:05 -08:00
|
|
|
.png: ${VERTGFX}
|
2013-03-18 13:36:30 -07:00
|
|
|
cd extras && python gfx.py png-to-lz --vert $@
|
2013-02-12 00:17:05 -08:00
|
|
|
.png: ${HORIZGFX}
|
2013-03-18 13:36:30 -07:00
|
|
|
cd extras && python gfx.py png-to-lz $@
|
2013-02-09 02:09:58 -08:00
|
|
|
|