jwcook.tilde.team/Makefile

13 lines
177 B
Makefile

.PHONY: clean docs livedocs
clean:
rm -rf _build
docs:
sphinx-build pages _build/html
livedocs:
sphinx-autobuild pages _build/html -a \
--ignore '*.tmp' \
--port 8181