diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 10:30:35 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-08-13 20:29:11 -0600 |
commit | 90f2163dc1000e1098ba2c79008dd6f7bf236c7b (patch) | |
tree | 25dfdcf380ccef2f22c98b638b8ee128a6e9d479 /Makefile | |
parent | 32de399d42ead680846b460b80d9ed16a946dc4e (diff) |
add the new official logo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..426800d --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# SVG2PNG: Each is buggy in their own way +# ImageMagick: doesn't support transparency +#SVG2PNG = convert $1 -format png $2 +# librsvg: doesn't support <style> element +#SVG2PNG = rsvg-convert $1 -o $2 +# Inkscape: doesn't do text hinting (feature?), messes up gradients +SVG2PNG = inkscape $1 --export-png $2 + +all: \ + logotype-color-darkbg.png \ + logotype-color-lightbg.png \ + logotype-grayscale.png \ + logotype-mono-black.png \ + logotype-mono-white.png \ + +clean: + rm -f *.png + +%.png: %.svg + $(call SVG2PNG,$<,$@) |