diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2013-06-12 22:44:45 -0500 |
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2013-06-12 22:44:45 -0500 |
| commit | 4eebcf0ae2fc411916cdd44b4ca3ffdb1b6cca7b (patch) | |
| tree | 20b8042fc2e6b723f8d9c9f4467a7da942ec0bc1 /Makefile | |
| parent | 358b5b074b45e4a484799fde4e18bc2cb4fec78b (diff) | |
| parent | 6ba758aa53bbf14e2c152fd88f786a501f6bb029 (diff) | |
Merge remote-tracking branch 'yenatch/master'
Also merge pull request #145.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
@@ -11,16 +11,9 @@ TEXTFILES = \ text/common_3.tx \ main.tx -PNG_PICS = $(shell find gfx/pics/ -type f -name 'front.png') -PNG_ANIMS = $(shell find gfx/pics/ -type f -name 'tiles.png') -PNG_TRAINERS = gfx/trainers/*.png -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')) - +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') all: pokecrystal.gbc cmp baserom.gbc $< @@ -39,11 +32,11 @@ pokecrystal.gbc: pokecrystal.o 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 - python extras/gfx.py png-to-lz --front $< $(@D)/tiles.2bpp -gfx/pics/%/tiles.2bpp: + python extras/gfx.py png-to-lz --front $^ +gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png python extras/gfx.py png-to-2bpp $< gfx/pics/%/back.lz: gfx/pics/%/back.png 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 $< .png.lz: python extras/gfx.py png-to-lz $< +.png.2bpp: + python extras/gfx.py png-to-lz $< |
