summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0199a0b31e9f9c2cd558af42dae3286c4db75cf4 (plain)
  1. markdown := $(wildcard *.mdwn)
  2. hypertext = $(subst index/index,index,$(markdown:%.mdwn=%/index.html))
  3. all: $(hypertext)
  4. %.html %/index.html: %.mdwn
  5. $(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@))
  6. pandoc -f markdown -t html -o $@ $<
  7. clean:
  8. find -type f -name '*.html' -delete
  9. find -type d -empty -delete
  10. .PHONY: all clean