jwcook.tilde.team/Makefile

13 lines
190 B
Makefile
Raw Normal View History

2022-11-07 02:42:26 +00:00
.PHONY: clean docs livedocs
clean:
rm -rf docs/_build
docs:
sphinx-build docs docs/_build/html
livedocs:
sphinx-autobuild docs docs/_build/html -a \
--ignore '*.tmp' \
--port 8181