mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 03:00:14 +00:00
13 lines
268 B
Makefile
13 lines
268 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: all clean index.md
|
|
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
|