1 2 3 4 5 6 7 8 9 10 11 12
PROJECT=hconnect PANDOC?=pandoc PANDOCFLAGS?=--from markdown+tex_math_dollars --mathjax --to html5 --standalone --metadata pagetitle="${PROJECT}" all: cargo clippy cargo fmt %.html: %.md ${PANDOC} ${PANDOCFLAGS} -o $@ $< .PHONY: all