9 lines
189 B

TEMPLATE = template.html
all: web/style.css web/index.html
web/style.css: style.css
cp $< $@
web/%.html: %.md
pandoc --from markdown $< --output $@ --standalone --template $(TEMPLATE)