Makefile option to build xml docs

Change-Id: I15316f7a8e3fef679c9b322ef34d94848715b206
This commit is contained in:
Steve Baker 2014-05-28 11:55:33 +12:00 committed by Gauvain Pocentek
parent c3f594242b
commit 7e272cc4fe
1 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,7 @@ help:
@echo " qthelp to make HTML files and a qthelp project"
@echo " devhelp to make HTML files and a Devhelp project"
@echo " epub to make an epub"
@echo " xml to make Docutils-native XML files"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " text to make text files"
@ -95,6 +96,11 @@ epub:
@echo
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
xml:
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
@echo
@echo "Build finished. The xml files are in $(BUILDDIR)/xml."
latex:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo