MD=markdown_py .SUFFIXES: .md .html articles!=ls *.md articles_html = ${articles:.md=.html} site : index $(articles_html) @echo "done" index : @echo "Building index" @cat template/header.html > output/index.html @echo '' >> output/index.html @cat template/index.html >> output/index.html @echo '' >> output/index.html @cat template/footer.html >> output/index.html # compile each article .md.html: @echo "Processing $<" @cat template/header.html > tmp.html @echo '
' >> tmp.html @$(MD) $< >> tmp.html @cat template/back.html >> tmp.html @cat template/footer.html >> tmp.html @echo '
' >> tmp.html @mv tmp.html output/`echo $@ | cut -d'-' -f2- -` clean : rm -rf output/* upload : rsync -avc --delete output/ vincent@blog.vdouillet.fr:/var/www/htdocs/blog/