mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 12:57:52 +00:00
b4e3c43902
- More concise table of contents - New intro - Simpler make commands - Fix a couple typos here and there - Get rid of the default github issue template, and start using the template created online.
12 lines
222 B
Makefile
12 lines
222 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; $(MAKE) html; done
|