]>
Commit | Line | Data |
---|---|---|
22cba31b JN |
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 = | |
606b9ac8 MH |
8 | SPHINXDIRS = . |
9 | _SPHINXDIRS = $(patsubst $(srctree)/Documentation/%/conf.py,%,$(wildcard $(srctree)/Documentation/*/conf.py)) | |
10 | SPHINX_CONF = conf.py | |
22cba31b JN |
11 | PAPER = |
12 | BUILDDIR = $(obj)/output | |
1171a28b | 13 | PDFLATEX = xelatex |
eaed1b25 | 14 | LATEXOPTS = -interaction=batchmode |
22cba31b JN |
15 | |
16 | # User-friendly check for sphinx-build | |
17 | HAVE_SPHINX := $(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi) | |
18 | ||
19 | ifeq ($(HAVE_SPHINX),0) | |
20 | ||
21 | .DEFAULT: | |
22 | $(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.) | |
23 | @echo " SKIP Sphinx $@ target." | |
24 | ||
6387872c JN |
25 | else ifneq ($(DOCBOOKS),) |
26 | ||
27 | # Skip Sphinx build if the user explicitly requested DOCBOOKS. | |
28 | .DEFAULT: | |
29 | @echo " SKIP Sphinx $@ target (DOCBOOKS specified)." | |
30 | ||
22cba31b JN |
31 | else # HAVE_SPHINX |
32 | ||
f907ba93 | 33 | # User-friendly check for pdflatex |
1171a28b | 34 | HAVE_PDFLATEX := $(shell if which $(PDFLATEX) >/dev/null 2>&1; then echo 1; else echo 0; fi) |
22cba31b JN |
35 | |
36 | # Internal variables. | |
37 | PAPEROPT_a4 = -D latex_paper_size=a4 | |
38 | PAPEROPT_letter = -D latex_paper_size=letter | |
24dcdeb2 JN |
39 | KERNELDOC = $(srctree)/scripts/kernel-doc |
40 | KERNELDOC_CONF = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC) | |
606b9ac8 | 41 | ALLSPHINXOPTS = $(KERNELDOC_CONF) $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) |
22cba31b JN |
42 | # the i18n builder cannot share the environment and doctrees with the others |
43 | I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . | |
44 | ||
606b9ac8 | 45 | # commands; the 'cmd' from scripts/Kbuild.include is not *loopable* |
85bd9020 | 46 | loop_cmd = $(echo-cmd) $(cmd_$(1)) || exit; |
606b9ac8 MH |
47 | |
48 | # $2 sphinx builder e.g. "html" | |
49 | # $3 name of the build subfolder / e.g. "media", used as: | |
50 | # * dest folder relative to $(BUILDDIR) and | |
51 | # * cache folder relative to $(BUILDDIR)/.doctrees | |
52 | # $4 dest subfolder e.g. "man" for man pages at media/man | |
53 | # $5 reST source folder relative to $(srctree)/$(src), | |
54 | # e.g. "media" for the linux-tv book-set at ./Documentation/media | |
55 | ||
c8556966 | 56 | quiet_cmd_sphinx = SPHINX $@ --> file://$(abspath $(BUILDDIR)/$3/$4) |
85bd9020 | 57 | cmd_sphinx = $(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/media $2 && \ |
2a0f4038 | 58 | PYTHONDONTWRITEBYTECODE=1 \ |
606b9ac8 MH |
59 | BUILDDIR=$(abspath $(BUILDDIR)) SPHINX_CONF=$(abspath $(srctree)/$(src)/$5/$(SPHINX_CONF)) \ |
60 | $(SPHINXBUILD) \ | |
61 | -b $2 \ | |
62 | -c $(abspath $(srctree)/$(src)) \ | |
63 | -d $(abspath $(BUILDDIR)/.doctrees/$3) \ | |
64 | -D version=$(KERNELVERSION) -D release=$(KERNELRELEASE) \ | |
65 | $(ALLSPHINXOPTS) \ | |
66 | $(abspath $(srctree)/$(src)/$5) \ | |
85bd9020 | 67 | $(abspath $(BUILDDIR)/$3/$4) |
22cba31b JN |
68 | |
69 | htmldocs: | |
4b0b0d9d | 70 | @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,html,$(var),,$(var))) |
22cba31b | 71 | |
62924fd7 RL |
72 | linkcheckdocs: |
73 | @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,linkcheck,$(var),,$(var))) | |
74 | ||
d565127d | 75 | latexdocs: |
4b0b0d9d | 76 | @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,latex,$(var),latex,$(var))) |
207fc55b | 77 | |
f907ba93 | 78 | ifeq ($(HAVE_PDFLATEX),0) |
207fc55b JN |
79 | |
80 | pdfdocs: | |
1171a28b | 81 | $(warning The '$(PDFLATEX)' command was not found. Make sure you have it installed and in PATH to produce PDF output.) |
22cba31b | 82 | @echo " SKIP Sphinx $@ target." |
207fc55b | 83 | |
f907ba93 | 84 | else # HAVE_PDFLATEX |
d565127d MCC |
85 | |
86 | pdfdocs: latexdocs | |
85bd9020 | 87 | $(foreach var,$(SPHINXDIRS), $(MAKE) PDFLATEX=$(PDFLATEX) LATEXOPTS="$(LATEXOPTS)" -C $(BUILDDIR)/$(var)/latex || exit;) |
1171a28b | 88 | |
f907ba93 | 89 | endif # HAVE_PDFLATEX |
22cba31b JN |
90 | |
91 | epubdocs: | |
4b0b0d9d | 92 | @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,epub,$(var),epub,$(var))) |
22cba31b JN |
93 | |
94 | xmldocs: | |
4b0b0d9d | 95 | @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,xml,$(var),xml,$(var))) |
22cba31b | 96 | |
c8929258 JN |
97 | endif # HAVE_SPHINX |
98 | ||
99 | # The following targets are independent of HAVE_SPHINX, and the rules should | |
100 | # work or silently pass without Sphinx. | |
101 | ||
22cba31b JN |
102 | # no-ops for the Sphinx toolchain |
103 | sgmldocs: | |
c33dea1e | 104 | @: |
22cba31b | 105 | psdocs: |
c33dea1e | 106 | @: |
22cba31b | 107 | mandocs: |
c33dea1e | 108 | @: |
22cba31b | 109 | installmandocs: |
c33dea1e | 110 | @: |
22cba31b JN |
111 | |
112 | cleandocs: | |
113 | $(Q)rm -rf $(BUILDDIR) | |
7cabd5ac | 114 | $(Q)$(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/media clean |
22cba31b | 115 | |
ebc88ef0 JN |
116 | dochelp: |
117 | @echo ' Linux kernel internal documentation in different formats (Sphinx):' | |
118 | @echo ' htmldocs - HTML' | |
d565127d | 119 | @echo ' latexdocs - LaTeX' |
ebc88ef0 JN |
120 | @echo ' pdfdocs - PDF' |
121 | @echo ' epubdocs - EPUB' | |
122 | @echo ' xmldocs - XML' | |
62924fd7 | 123 | @echo ' linkcheckdocs - check for broken external links (will connect to external hosts)' |
ebc88ef0 | 124 | @echo ' cleandocs - clean all generated files' |
606b9ac8 MH |
125 | @echo |
126 | @echo ' make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2' | |
127 | @echo ' valid values for SPHINXDIRS are: $(_SPHINXDIRS)' | |
128 | @echo | |
129 | @echo ' make SPHINX_CONF={conf-file} [target] use *additional* sphinx-build' | |
130 | @echo ' configuration. This is e.g. useful to build with nit-picking config.' |