7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-10 09:42:23 +00:00
tutor/docs/Makefile

25 lines
684 B
Makefile
Raw Normal View History

2018-12-26 15:00:47 +00:00
.DEFAULT_GOAL := html
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SOURCEDIR = .
BUILDDIR = _build
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
2018-12-26 15:00:47 +00:00
browse:
sensible-browser _build/html/index.html
watch: html
2018-12-26 15:00:47 +00:00
while true; do inotifywait -e modify *.rst; $(MAKE) html; done
.PHONY: help Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
2018-12-26 15:00:47 +00:00
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)