12 lines
224 B
Makefile
12 lines
224 B
Makefile
|
# Default makefile for algorithmica-like pages
|
||
|
|
||
|
.PHONY: all clean
|
||
|
|
||
|
all: render.html
|
||
|
|
||
|
render.html: main.md
|
||
|
pandoc $< --to html --mathjax --output $@
|
||
|
|
||
|
clean:
|
||
|
test -f render.html && rm render.html || echo "Nothing to clean"
|