x86/smpboot: Init apic mapping before usage
[cascardo/linux.git] / Documentation / Makefile.sphinx
1 # -*- makefile -*-
2 # Makefile for Sphinx documentation
3 #
4
5 # You can set these variables from the command line.
6 SPHINXBUILD   = sphinx-build
7 SPHINXOPTS    =
8 SPHINXDIRS    = .
9 _SPHINXDIRS   = $(patsubst $(srctree)/Documentation/%/conf.py,%,$(wildcard $(srctree)/Documentation/*/conf.py))
10 SPHINX_CONF   = conf.py
11 PAPER         =
12 BUILDDIR      = $(obj)/output
13
14 # User-friendly check for sphinx-build
15 HAVE_SPHINX := $(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi)
16
17 ifeq ($(HAVE_SPHINX),0)
18
19 .DEFAULT:
20         $(warning The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed and in PATH, or set the SPHINXBUILD make variable to point to the full path of the '$(SPHINXBUILD)' executable.)
21         @echo "  SKIP    Sphinx $@ target."
22
23 else ifneq ($(DOCBOOKS),)
24
25 # Skip Sphinx build if the user explicitly requested DOCBOOKS.
26 .DEFAULT:
27         @echo "  SKIP    Sphinx $@ target (DOCBOOKS specified)."
28
29 else # HAVE_SPHINX
30
31 # User-friendly check for pdflatex
32 HAVE_PDFLATEX := $(shell if which xelatex >/dev/null 2>&1; then echo 1; else echo 0; fi)
33
34 # Internal variables.
35 PAPEROPT_a4     = -D latex_paper_size=a4
36 PAPEROPT_letter = -D latex_paper_size=letter
37 KERNELDOC       = $(srctree)/scripts/kernel-doc
38 KERNELDOC_CONF  = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC)
39 ALLSPHINXOPTS   =  $(KERNELDOC_CONF) $(PAPEROPT_$(PAPER)) $(SPHINXOPTS)
40 # the i18n builder cannot share the environment and doctrees with the others
41 I18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
42
43 # commands; the 'cmd' from scripts/Kbuild.include is not *loopable*
44 loop_cmd = $(echo-cmd) $(cmd_$(1))
45
46 # $2 sphinx builder e.g. "html"
47 # $3 name of the build subfolder / e.g. "media", used as:
48 #    * dest folder relative to $(BUILDDIR) and
49 #    * cache folder relative to $(BUILDDIR)/.doctrees
50 # $4 dest subfolder e.g. "man" for man pages at media/man
51 # $5 reST source folder relative to $(srctree)/$(src),
52 #    e.g. "media" for the linux-tv book-set at ./Documentation/media
53
54 quiet_cmd_sphinx = SPHINX  $@ --> file://$(abspath $(BUILDDIR)/$3/$4);
55       cmd_sphinx = $(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/media all;\
56         BUILDDIR=$(abspath $(BUILDDIR)) SPHINX_CONF=$(abspath $(srctree)/$(src)/$5/$(SPHINX_CONF)) \
57         $(SPHINXBUILD) \
58         -b $2 \
59         -c $(abspath $(srctree)/$(src)) \
60         -d $(abspath $(BUILDDIR)/.doctrees/$3) \
61         -D version=$(KERNELVERSION) -D release=$(KERNELRELEASE) \
62         $(ALLSPHINXOPTS) \
63         $(abspath $(srctree)/$(src)/$5) \
64         $(abspath $(BUILDDIR)/$3/$4);
65
66 htmldocs:
67         @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,html,$(var),,$(var)))
68
69 latexdocs:
70 ifeq ($(HAVE_PDFLATEX),0)
71         $(warning The 'xelatex' command was not found. Make sure you have it installed and in PATH to produce PDF output.)
72         @echo "  SKIP    Sphinx $@ target."
73 else # HAVE_PDFLATEX
74         @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,latex,$(var),latex,$(var)))
75 endif # HAVE_PDFLATEX
76
77 pdfdocs: latexdocs
78 ifneq ($(HAVE_PDFLATEX),0)
79         $(foreach var,$(SPHINXDIRS), $(MAKE) PDFLATEX=xelatex LATEXOPTS="-interaction=nonstopmode" -C $(BUILDDIR)/$(var)/latex)
80 endif # HAVE_PDFLATEX
81
82 epubdocs:
83         @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,epub,$(var),epub,$(var)))
84
85 xmldocs:
86         @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,xml,$(var),xml,$(var)))
87
88 # no-ops for the Sphinx toolchain
89 sgmldocs:
90 psdocs:
91 mandocs:
92 installmandocs:
93
94 cleandocs:
95         $(Q)rm -rf $(BUILDDIR)
96
97 endif # HAVE_SPHINX
98
99 dochelp:
100         @echo  ' Linux kernel internal documentation in different formats (Sphinx):'
101         @echo  '  htmldocs        - HTML'
102         @echo  '  latexdocs       - LaTeX'
103         @echo  '  pdfdocs         - PDF'
104         @echo  '  epubdocs        - EPUB'
105         @echo  '  xmldocs         - XML'
106         @echo  '  cleandocs       - clean all generated files'
107         @echo
108         @echo  '  make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2'
109         @echo  '  valid values for SPHINXDIRS are: $(_SPHINXDIRS)'
110         @echo
111         @echo  '  make SPHINX_CONF={conf-file} [target] use *additional* sphinx-build'
112         @echo  '  configuration. This is e.g. useful to build with nit-picking config.'