diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 11:56:44 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 11:56:44 -0400 |
commit | 2b95ed3f98e63b97fcac31f7f46df0ae57710e3e (patch) | |
tree | 19c9e8449e01020f2aa6fc84825f5e542b9e70c4 | |
parent | 618c6e36771de4b8250a5b8fcfbec0340c384d69 (diff) |
official-2013/optimized-text/Makefile: fix
-rw-r--r-- | official-2013/optimized-text/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/official-2013/optimized-text/Makefile b/official-2013/optimized-text/Makefile index 2fb555b..b7c2def 100644 --- a/official-2013/optimized-text/Makefile +++ b/official-2013/optimized-text/Makefile @@ -2,9 +2,9 @@ # ImageMagick: doesn't support transparency #SVG2PNG = convert $1 -format png $(if $3,-resize $3x)$(if $4,$4) $(if $5,-bacground $5) $2 # librsvg: doesn't support <style> element -SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,--background-color=$5) +#SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,--background-color=$5) # Inkscape: messes up gradients -#SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,-b '$5') +SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) $(if $5,-b '$5') # PNG2ICO # png2ico: doesn't read PNG transparency properly @@ -22,7 +22,7 @@ all: website \ logotype-color-lightbg.png \ logotype-grayscale.png \ logotype-mono-black.png \ - logotype-mono-white.png \ + logotype-mono-white.png website: \ apple-touch-icon-57x57.png \ |