blob: 46919a42c529e2f7a382b3cb7896c6640e6f714a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.PHONY: all
all: out/index.html out/feed.ass out/feed.atom
out/index.html: src/index.sh src/feed.ass
sh $^ > $@
out/feed.ass: src/feed.ass
cp $< $@
out/feed.atom: src/feed.ass src/atom.sh
sh src/atom.sh < $< > $@
out/%.html: src/%.md src/tmpl.html
pandoc --template src/tmpl.html $< -o $@
|