summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1c009297da61267374e425156c3cd581afc32af4 (plain)
  1. infiles := $(wildcard *.mdwn)
  2. all: $(infiles:%.mdwn=%.html)
  3. $(infiles:%.mdwn=%.html): %.html: %.mdwn
  4. pandoc -f markdown -t html -o $@ $<
  5. clean:
  6. rm -f *.html
  7. .PHONY: all clean