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