diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/Makefile | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/docs/Makefile b/docs/Makefile index 6bf90e40..2b9976d5 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -8,6 +8,10 @@ SPHINXPROJ    = VyOS  SOURCEDIR     = .  BUILDDIR      = _build +AUTOHOST      =0.0.0.0 +AUTOPORT      =8000 +AUTOOPTS      =--poll +  # Put it first so that "make" without argument is like "make help".  help:  	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) @@ -17,4 +21,8 @@ help:  # Catch-all target: route all unknown targets to Sphinx using the new  # "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).  %: Makefile -	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
\ No newline at end of file +	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +livehtml: +	sphinx-autobuild --host $(AUTOHOST) --port $(AUTOPORT) $(AUTOOPTS) \ +		"$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
\ No newline at end of file | 
