8000 Rename 'make autobuild' to 'make htmllive' (#1212) · python/devguide@2e9e657 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e9e657

Browse files
authored
Rename 'make autobuild' to 'make htmllive' (#1212)
1 parent da86846 commit 2e9e657

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ help:
2525
@echo " venv to create a venv with necessary tools"
2626
@echo " html to make standalone HTML files"
2727
@echo " htmlview to open the index page built by the html target in your browser"
28-
@echo " autobuild to rebuild and reload HTML files in your browser"
28+
@echo " htmllive to rebuild and reload HTML files in your browser"
2929
@echo " clean to remove the venv and build files"
3030
@echo " dirhtml to make HTML files named index.html in directories"
3131
@echo " singlehtml to make a single large HTML file"
@@ -159,10 +159,10 @@ doctest: html
159159
htmlview: html
160160
$(PYTHON) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('_build/html/index.html'))"
161161

162-
.PHONY: autobuild
163-
autobuild: SPHINXBUILD = $(VENVDIR)/bin/sphinx-autobuild
164-
autobuild: SPHINXOPTS = --re-ignore="/\.idea/|/venv/"
165-
autobuild: html
162+
.PHONY: htmllive
163+
htmllive: SPHINXBUILD = $(VENVDIR)/bin/sphinx-autobuild
164+
htmllive: SPHINXOPTS = --re-ignore="/\.idea/|/venv/"
165+
htmllive: html
166166

167167
.PHONY: check
168168
check: ensure-venv

0 commit comments

Comments
 (0)
0