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