]> git.baikalelectronics.ru Git - kernel.git/commit
Documentation/sphinx: add basic working Sphinx configuration and build
authorJani Nikula <jani.nikula@intel.com>
Thu, 19 May 2016 12:14:05 +0000 (15:14 +0300)
committerJani Nikula <jani.nikula@intel.com>
Mon, 30 May 2016 10:38:51 +0000 (13:38 +0300)
commite2d08ebd1b7427a2da3a14978ed5ad3bc5f75788
treecdf4645853d1c8f1fe6f364ef41b6890600328a7
parente7be276349fe20937b5d6418bd9290cf174a5810
Documentation/sphinx: add basic working Sphinx configuration and build

Add basic configuration and makefile to build documentation from any
.rst files under Documentation using Sphinx. For starters, there's just
the placeholder index.rst.

At the top level Makefile, hook Sphinx documentation targets alongside
(but independent of) the DocBook toolchain, having both be run on the
various 'make *docs' targets.

All Sphinx processing is placed into Documentation/Makefile.sphinx. Both
that and the Documentation/DocBook/Makefile are now expected to handle
all the documentation targets, explicitly ignoring them if they're not
relevant for that particular toolchain. The changes to the existing
DocBook Makefile are kept minimal.

There is graceful handling of missing Sphinx and rst2pdf (which is
needed for pdf output) by checking for the tool and python module,
respectively, with informative messages to the user.

If the Read the Docs theme (sphinx_rtd_theme) is available, use it, but
otherwise gracefully fall back to the Sphinx default theme, with an
informative message to the user, and slightly less pretty HTML output.

Sphinx can now handle htmldocs, pdfdocs (if rst2pdf is available),
epubdocs and xmldocs targets. The output documents are written into per
output type subdirectories under Documentation/output.

Finally, you can pass options to sphinx-build using the SPHINXBUILD make
variable. For example, 'make SPHINXOPTS=-v htmldocs' for more verbose
output from Sphinx.

This is based on the original work by Jonathan Corbet, but he probably
wouldn't recognize this as his own anymore.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Documentation/DocBook/Makefile
Documentation/Makefile.sphinx [new file with mode: 0644]
Documentation/conf.py [new file with mode: 0644]
Documentation/index.rst [new file with mode: 0644]
Makefile