diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 19 insertions, 7 deletions
@@ -3,21 +3,33 @@ MD=markdown_py articles!=ls *.md articles_html = ${articles:.md=.html} -site : index $(articles_html) +site : index about $(articles_html) @echo "done" index : - @echo "Building index" - @cat template/header.html > output/index.html - @echo '<body>' >> output/index.html - @cat template/index.html >> output/index.html - @echo '</body>' >> output/index.html - @cat template/footer.html >> output/index.html + @echo "Building $@" + @cat template/header.html > output/$@.html + @sed -i "s/\$$title/blog\.vdouillet\.fr/g" output/$@.html + @echo '<body>' >> output/$@.html + @cat template/index.html >> output/$@.html + @echo '</body>' >> output/$@.html + @cat template/footer.html >> output/$@.html + +about : + @echo "Building $@" + @cat template/header.html > output/$@.html + @sed -i "s/\$$title/About/g" output/$@.html + @echo '<body>' >> output/$@.html + @$(MD) static/$@.md >> output/$@.html + @echo '</body>' >> output/$@.html + @cat template/footer.html >> output/$@.html # compile each article .md.html: @echo "Processing $<" @cat template/header.html > tmp.html + @ARTICLE_TITLE=`head -n1 $< | cut -d'# ' -f2` ; \ + sed -i "s/\$$title/$$ARTICLE_TITLE/g" tmp.html @echo '<article>' >> tmp.html @$(MD) $< >> tmp.html @cat template/back.html >> tmp.html |