blob: da8a7b36c8bb443f95337ef30515e0771df46944 [file] [log] [blame]
# Make a preview site for Sphinx output
BUILDDIR = _build/html
.PHONY: Makefile clean preview
clean:
rm -rf _build
preview: _build sphinx
_build:
mkdir -p _build
sphinx:
sphinx-build . ${BUILDDIR}