mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
remove makefile clutter
This commit is contained in:
parent
eb75c58023
commit
2df19fef15
21
Makefile
21
Makefile
@ -11,16 +11,9 @@ TEXTFILES = \
|
|||||||
text/common_3.tx \
|
text/common_3.tx \
|
||||||
main.tx
|
main.tx
|
||||||
|
|
||||||
PNG_PICS = $(shell find gfx/pics/ -type f -name 'front.png')
|
PNG_GFX = $(shell find gfx/ -type f -name '*.png')
|
||||||
PNG_ANIMS = $(shell find gfx/pics/ -type f -name 'tiles.png')
|
LZ_GFX = $(shell find gfx/ -type f -name '*.lz')
|
||||||
PNG_TRAINERS = gfx/trainers/*.png
|
TWOBPP_GFX = $(shell find gfx/ -type f -name '*.2bpp')
|
||||||
PNG_GFX = $(PNG_PICS) $(PNG_ANIMS) $(PNG_TRAINERS), $(filter-out $(shell find gfx/ -type f -name '*.png'))
|
|
||||||
|
|
||||||
LZ_PICS = $(shell find gfx/pics/ -type f -name 'front.lz')
|
|
||||||
LZ_ANIMS = $(shell find gfx/pics/ -type f -name 'tiles.lz')
|
|
||||||
LZ_TRAINERS = gfx/trainers/*.lz
|
|
||||||
LZ_GFX = $(filter-out $(LZ_PICS) $(LZ_ANIMS) $(LZ_TRAINERS), $(shell find gfx/ -type f -name '*.lz'))
|
|
||||||
|
|
||||||
|
|
||||||
all: pokecrystal.gbc
|
all: pokecrystal.gbc
|
||||||
cmp baserom.gbc $<
|
cmp baserom.gbc $<
|
||||||
@ -39,11 +32,11 @@ pokecrystal.gbc: pokecrystal.o
|
|||||||
pngs:
|
pngs:
|
||||||
cd extras && python gfx.py mass-decompress && python gfx.py dump-pngs
|
cd extras && python gfx.py mass-decompress && python gfx.py dump-pngs
|
||||||
|
|
||||||
lzs: $(LZ_PICS) $(LZ_ANIMS) $(LZ_TRAINERS) $(LZ_GFX)
|
lzs: $(LZ_GFX) $(TWOBPP_GFX)
|
||||||
|
|
||||||
gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp
|
gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp
|
||||||
python extras/gfx.py png-to-lz --front $< $(@D)/tiles.2bpp
|
python extras/gfx.py png-to-lz --front $^
|
||||||
gfx/pics/%/tiles.2bpp:
|
gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png
|
||||||
python extras/gfx.py png-to-2bpp $<
|
python extras/gfx.py png-to-2bpp $<
|
||||||
gfx/pics/%/back.lz: gfx/pics/%/back.png
|
gfx/pics/%/back.lz: gfx/pics/%/back.png
|
||||||
python extras/gfx.py png-to-lz --vert $<
|
python extras/gfx.py png-to-lz --vert $<
|
||||||
@ -51,4 +44,6 @@ gfx/trainers/%.lz: gfx/trainers/%.png
|
|||||||
python extras/gfx.py png-to-lz --vert $<
|
python extras/gfx.py png-to-lz --vert $<
|
||||||
.png.lz:
|
.png.lz:
|
||||||
python extras/gfx.py png-to-lz $<
|
python extras/gfx.py png-to-lz $<
|
||||||
|
.png.2bpp:
|
||||||
|
python extras/gfx.py png-to-lz $<
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user