Makefile 120 B

123456789
  1. all: index.html
  2. # markdown --html4tags $^ >$@
  3. index.html : index.md
  4. pandoc --output=$@ $^
  5. clean :
  6. trash index.html