summaryrefslogtreecommitdiff
path: root/Makefile
blob: cbfd740eb3ef1e12f801576d2fce062ec8269d27 (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