TXT = $(wildcard *.md) HTM = $(patsubst %.md,%.html,$(TXT)) TEX = $(patsubst %.text,%.tex,$(TXT)) html: $(HTM) $(HTM) : %.html : %.md pandoc -s --mathjax --template page-html.tmpl --email-obfuscation=references -f markdown -t html $< > $@