- .PHONY: all clean
- all: $(WWW_ROOT)/depot_local.html $(WWW_ROOT)/depot_local_slides.html
- cp *.png *.svg $(WWW_ROOT)
- $(WWW_ROOT)/depot_local.html: depot_local.md
- pandoc --template ../www/template.html --toc --toc-depth 1 --include-before ../www/before.html -s -o $@ $<
- $(WWW_ROOT)/depot_local_slides.html: depot_local.md
- pandoc --template ../www/template_slidy.html --toc-depth 1 -t slidy -s -o $@ $<
- clean:
|