all:
	python -m sphinx -b html -n . _build

clean:
	rm -rf _build

.PHONY: clean show linkcheck

show: all
	xdg-open _build/index.html

linkcheck:
	sphinx-build -b linkcheck -n . _build
