.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 $@