# 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"