You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
266 B

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