diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-07 15:37:22 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-07 15:44:03 -0500 |
commit | f21b73a9204750f271f1f8d042eb96f83292e5d3 (patch) | |
tree | 5c64c64fdb7fdcae470d365b1d19fbf447f23da6 /Makefile | |
parent | 04f823e202eac486a201ea6f01fd852259d375b3 (diff) | |
download | python-coveragepy-git-f21b73a9204750f271f1f8d042eb96f83292e5d3.tar.gz |
sphinx-autobuild is handy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -129,8 +129,10 @@ build_ext: # Documentation +DOCBIN = .tox/doc/bin SPHINXOPTS = -aE -SPHINXBUILD = .tox/doc/bin/sphinx-build $(SPHINXOPTS) +SPHINXBUILD = $(DOCBIN)/sphinx-build $(SPHINXOPTS) +SPHINXAUTOBUILD = $(DOCBIN)/sphinx-autobuild -p 9876 --ignore '.git/**' --open-browser WEBHOME = ~/web/stellated/ WEBSAMPLE = $(WEBHOME)/files/sample_coverage_html WEBSAMPLEBETA = $(WEBHOME)/files/sample_coverage_html_beta @@ -139,11 +141,11 @@ docreqs: tox -q -e doc --notest dochtml: docreqs ## Build the docs HTML output. - .tox/doc/bin/python doc/check_copied_from.py doc/*.rst + $(DOCBIN)/python doc/check_copied_from.py doc/*.rst $(SPHINXBUILD) -b html doc doc/_build/html -docopen: dochtml - open doc/_build/html/index.html +docdev: dochtml ## Build docs, and auto-watch for changes. + PATH=$(DOCBIN):$(PATH) $(SPHINXAUTOBUILD) -b html doc doc/_build/html docspell: docreqs $(SPHINXBUILD) -b spelling doc doc/_spell |