6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-19 16:09:02 +00:00
tutor/docs/Makefile

12 lines
239 B
Makefile
Raw Normal View History

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