blob: cdf82b543ca4f3b8a4ef32dc0a4f4c9542b58827 [file] [log] [blame]
Andrew Jefferyd88c9692021-03-12 16:22:29 +10301.PHONY: html
2html: $(patsubst %.md, %.html, $(wildcard *.md))
3
4%.html: %.md
5 markdown2 \
6 --extras=code-friendly \
7 --extras=fenced-code-blocks \
8 --extras=tables \
9 $< > $@
10
11.PHONY: clean
12clean:
13 $(RM) *.html