Commit d349bdc1 authored by JC Brand's avatar JC Brand

Add "make doc" alias to "make html"

parent e68c51d2
...@@ -38,6 +38,7 @@ help: ...@@ -38,6 +38,7 @@ help:
@echo " dev Set up the development environment. To force a fresh start, run 'make clean' first." @echo " dev Set up the development environment. To force a fresh start, run 'make clean' first."
@echo " epub Export the documentation to epub." @echo " epub Export the documentation to epub."
@echo " html Make standalone HTML files of the documentation." @echo " html Make standalone HTML files of the documentation."
@echo " doc Same as "doc". Make standalone HTML files of the documentation."
@echo " linkcheck Check all documentation external links for integrity." @echo " linkcheck Check all documentation external links for integrity."
@echo " po Generate gettext PO files for each i18n language." @echo " po Generate gettext PO files for each i18n language."
@echo " po2json Generate JSON files from the language PO files." @echo " po2json Generate JSON files from the language PO files."
...@@ -167,6 +168,9 @@ html: ...@@ -167,6 +168,9 @@ html:
@echo @echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html." @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
.PHONY: doc
doc: html
.PHONY: epub .PHONY: epub
epub: epub:
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment