blob: e3e185d0f075f46420fe644064516690abbd1033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
MD=markdown
articles=20211011-browsing-gems.html 20210919-raspberry-pi-white-noise-machine.html 20210911-openbsd-simple-git-server.html
static=about.html
site : index $(articles) $(static)
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
# compile each article
%.html : %.md
cat template/header.html > tmp.html
echo '<article>' >> tmp.html
$(MD) $< >> tmp.html
cat template/back.html >> tmp.html
cat template/footer.html >> tmp.html
echo '</article>' >> 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/
|