Makefile 278 B

12345678910111213
  1. build: index.html
  2. index.html: fetch
  3. pandoc --standalone -f markdown -t revealjs README.md -V theme=solarized -o index.html
  4. fetch:
  5. curl -SLo README.md https://etherpad.tylercipriani.com/p/mead-session/export/txt
  6. serve:
  7. python -m SimpleHTTPServer
  8. .PHONY: build fetch serve