RM = rm -f CP = cp PATCH = patch SASS = sass PHP = php5 srcfiles = \ img/swoosh.svg \ style.scss \ header.php.patch \ Makefile \ logo-style.scss.php \ license.txt \ css_shadow.php \ twentyeleven-fix.scss all: header.php style.css img/swoosh.png .gitignore style.css: logo-style.scss twentyeleven-fix.scss %: %.patch ../twentyeleven/% $(RM) $@ $(CP) ../twentyeleven/$@ $@ $(PATCH) $@ < $@.patch %.css: %.scss $(SASS) $< $@ %: %.php $(PHP) -f $< > $@ %.png: %.svg rsvg-convert $< > $@.$$$$ && pngcrush $@.$$$$ $@ ; $(RM) $@.$$$$ .gitignore: Makefile echo "# DO NOT EDIT, this file is automatically made by \`Makefile'" >$@ echo '# ' >> '$@' echo '# ignore everyting' >> '$@' echo '*' >> '$@' echo '# but these:' >> '$@' for file in $(srcfiles); do echo !"$$file" >> '$@'; done