7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 00:20:49 +00:00
tutor/docs/Makefile
2020-03-16 22:14:36 +01:00

12 lines
247 B
Makefile

.DEFAULT_GOAL := html
.PHONY: help
html:
sphinx-build -b html -a -E "." "_build/html"
browse:
sensible-browser _build/html/index.html
watch: html browse
while true; do inotifywait -e modify *.rst */*.rst ../*.rst conf.py; $(MAKE) html; done