mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 12:57:52 +00:00
d1f7d02470
- Add tutor logo - add "edit on github" links - modify theme colors - and various other things...
12 lines
239 B
Makefile
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
|