summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1bf46a3d08dec4a24b8f584cbf322b99b9e56c7d (plain)
  1. infiles = index.mdwn india.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