6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-18 23:49:02 +00:00
tutor/docs/Makefile
Régis Behmo d1f7d02470 Improve docs
- Add tutor logo
- add "edit on github" links
- modify theme colors
- and various other things...
2019-10-17 17:21:35 +02:00

12 lines
239 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 conf.py; $(MAKE) html; done