melpa/html/Makefile

14 lines
268 B
Makefile
Raw Normal View History

2012-07-19 13:37:06 +00:00
SHELL := /bin/bash
.PHONY: all clean index.md
2012-07-19 13:37:06 +00:00
all: index.html
index.md: index.erb
erb index.erb > index.md
index.html: index.md
pandoc --template=template.html --css=style.css -s --mathml -t html --smart index.md > index.html
clean:
-rm -v index.md index.html