.PHONY: html html: build .PHONY: publish publish: build .PHONY: build build: mathjax cd fgs && python3 __main__.py .PHONY: mathjax mathjax: [ ! -d output/mathjax ] && mkdir -p output && cp -vr mathjax/es5 output/mathjax || true .PHONY: devserver devserver: cd output && python -m http.server 8000