doc: do not generate unused doxygen HTML and Latex output by default
The doc build needs not the HTML or Latex documentation generated by doxygen, as sphinx takes only the XML. Disable them to use less space and speed up the build. Change-Id: I51974449262fc5b45c6c2b41aad54365cceac341 Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
This commit is contained in:
parent
ef29812d51
commit
f6d29b297f
2 changed files with 2 additions and 6 deletions
|
|
@ -68,10 +68,6 @@ kconfig: scripts/genrest/genrest.py
|
|||
|
||||
html: kconfig
|
||||
$(SPHINXBUILD) -t $(DOC_TAG) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||
@mkdir -p $(BUILDDIR)/html/api
|
||||
@cp -a html $(BUILDDIR)/html/api
|
||||
@echo
|
||||
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
|
||||
|
||||
dirhtml:
|
||||
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ IGNORE_PREFIX =
|
|||
#---------------------------------------------------------------------------
|
||||
# Configuration options related to the HTML output
|
||||
#---------------------------------------------------------------------------
|
||||
GENERATE_HTML = YES
|
||||
GENERATE_HTML = NO
|
||||
HTML_OUTPUT = html
|
||||
HTML_FILE_EXTENSION = .html
|
||||
HTML_HEADER =
|
||||
|
|
@ -201,7 +201,7 @@ EXTRA_SEARCH_MAPPINGS =
|
|||
#---------------------------------------------------------------------------
|
||||
# Configuration options related to the LaTeX output
|
||||
#---------------------------------------------------------------------------
|
||||
GENERATE_LATEX = YES
|
||||
GENERATE_LATEX = NO
|
||||
LATEX_OUTPUT = latex
|
||||
LATEX_CMD_NAME = latex
|
||||
MAKEINDEX_CMD_NAME = makeindex
|
||||
|
|
|
|||
Loading…
Reference in a new issue