summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2016-02-17 16:22:05 -0500
committeryenatch <yenatch@gmail.com>2016-02-17 16:22:05 -0500
commit73a660bf2a4f4d91ee846f403ce128fc30958b85 (patch)
tree03e45b075c633ab883ffde41548437200340f89d
parent2ae8f65b426dff98d998bece374bea98b1e46dea (diff)
Remove "make pngs".
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index c5fad3779..cb6a66726 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<