jwcook.tilde.team/Makefile

15 lines
222 B
Makefile
Raw Normal View History

2022-11-07 02:42:26 +00:00
.PHONY: clean docs livedocs
clean:
2022-11-07 02:52:58 +00:00
rm -rf _build
2022-11-07 02:42:26 +00:00
docs:
2022-11-07 02:52:58 +00:00
sphinx-build pages _build/html
2022-11-07 02:42:26 +00:00
livedocs:
2022-11-07 02:52:58 +00:00
sphinx-autobuild pages _build/html -a \
2022-11-07 03:36:08 +00:00
--watch assets \
--watch pages/conf.py \
2022-11-07 02:42:26 +00:00
--ignore '*.tmp' \
--port 8181