mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 04:48:00 +00:00
12 lines
247 B
Makefile
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
|