diff options
author | yenatch <yenatch@gmail.com> | 2016-02-17 16:22:05 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-02-17 16:22:05 -0500 |
commit | 73a660bf2a4f4d91ee846f403ce128fc30958b85 (patch) | |
tree | 03e45b075c633ab883ffde41548437200340f89d | |
parent | 2ae8f65b426dff98d998bece374bea98b1e46dea (diff) |
Remove "make pngs".
-rw-r--r-- | Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -2,7 +2,7 @@ PYTHON := python MD5 := md5sum -c --quiet .SUFFIXES: .asm .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap -.PHONY: all clean crystal crystal11 pngs +.PHONY: all clean crystal crystal11 .SECONDEXPANSION: poketools := extras/pokemontools @@ -60,12 +60,7 @@ pokecrystal.gbc: $(crystal_obj) rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@ -pngs: - find . -iname "*.lz" -exec $(gfx) unlz {} + - find . -iname "*.[12]bpp" -exec $(gfx) png {} + - find . -iname "*.[12]bpp" -exec touch {} \; - find . -iname "*.lz" -exec touch {} \; - +%.png: ; %.2bpp: %.png ; $(gfx) 2bpp $< %.1bpp: %.png ; $(gfx) 1bpp $< %.lz: % ; $(gfx) lz $< |