diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-25 16:14:44 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-25 16:14:44 -0400 |
commit | 66184aab11c86d4d6d6d05dbe7dd4e7f5110b3d2 (patch) | |
tree | 9924e1d32b9aa9a126cea323aea28c0d2d583bf4 /Makefile | |
parent | 11d588e4abde45f0f7e9533ca626ea5581836434 (diff) |
make swoosh.png from svg
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,7 +5,7 @@ SASS = sass PHP = php5 srcfiles = \ - img/swoosh.png \ + img/swoosh.svg \ style.scss \ header.php.patch \ Makefile \ @@ -13,7 +13,7 @@ srcfiles = \ license.txt \ css_shadow.php -all: header.php style.css .gitignore +all: header.php style.css img/swoosh.png .gitignore style.css: logo-style.scss @@ -28,6 +28,9 @@ style.css: logo-style.scss %: %.php $(PHP) -f $< > $@ +%.png: %.svg + rsvg-convert $< > $@ + .gitignore: Makefile echo "# DO NOT EDIT, this file is automatically made by \`Makefile'" >$@ echo '# ' >> '$@' |