2018-12-26 15:00:47 +00:00
|
|
|
.DEFAULT_GOAL := html
|
2019-05-13 14:33:26 +00:00
|
|
|
.PHONY: help
|
2018-12-03 18:59:09 +00:00
|
|
|
|
2021-11-23 16:59:14 +00:00
|
|
|
build:
|
|
|
|
sphinx-build -b html -a -E -n $(BUILD_ARGS) "." "_build/html"
|
|
|
|
|
2019-05-13 14:33:26 +00:00
|
|
|
html:
|
2021-11-23 16:59:14 +00:00
|
|
|
$(MAKE) build BUILD_ARGS="-W"
|
2018-12-03 18:59:09 +00:00
|
|
|
|
2018-12-26 15:00:47 +00:00
|
|
|
browse:
|
|
|
|
sensible-browser _build/html/index.html
|
|
|
|
|
2021-11-23 16:59:14 +00:00
|
|
|
watch: build browse
|
2022-02-07 17:11:43 +00:00
|
|
|
while true; do $(MAKE) wait-for-change build || true; done
|
|
|
|
|
|
|
|
wait-for-change:
|
|
|
|
inotifywait -e modify $(shell find . -name "*.rst") ../*.rst ../tutor/hooks/*.py conf.py
|