diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 11:56:44 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-08-13 20:41:36 -0600 |
commit | 451526304f21468199d45566a918a81ce7d3b20f (patch) | |
tree | c806873786283881887ea782bb499d8213b678f9 | |
parent | 6179154e22f592e7d8d44eefab03192567074ea1 (diff) |
official-2013/optimized-text/Makefile: fix
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 \ |