diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 10:35:12 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 10:35:12 -0400 |
commit | c8c5fdd97f2aca0455eb9f8f826bfc9cff970650 (patch) | |
tree | 2980b35e46a4a1cc007f92975f71e6db766603e2 | |
parent | cdea365e5a128d15dfe42bca3fd1de1c00de0926 (diff) |
official-2013/optimized-text/Makefile: run PNGs through pngcrush
-rw-r--r-- | official-2013/optimized-text/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/official-2013/optimized-text/Makefile b/official-2013/optimized-text/Makefile index bf10896..b857464 100644 --- a/official-2013/optimized-text/Makefile +++ b/official-2013/optimized-text/Makefile @@ -12,6 +12,10 @@ SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) # icotool: has perl dependencies PNG2ICO = icotool -c $1 -o $2 +# pngcrush is available from [pcr] +#PNGCRUSH = cp $1 $2 +PNGCRUSH = pngcrush $1 $2 + all: \ archlogo.png \ favicon.ico \ @@ -24,9 +28,12 @@ all: \ clean: rm -f *.png *.ico -%.png: %.svg Makefile +%.raw.png: %.svg Makefile $(call SVG2PNG,$<,$@) +%.png: %.raw.png Makefile + $(call PNGCRUSH,$<,$@) + %.ico: %.png Makefile $(call PNG2ICO,$<,$@) |