Add `make serve` opening a local dev server

This commit is contained in:
Nadja Reitzenstein 2022-05-12 16:42:18 +02:00
parent 5631c18d8a
commit c794881d4f
1 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,11 @@ BUILDDIR = build
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
.PHONY: help Makefile
serve:
@$(MAKE) html
cd $(BUILDDIR)/html && python -m http.server
.PHONY: help serve Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).