diff options
-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,$<,$@) |