Merge tag 'pci-v6.16-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
[linux-block.git] / Documentation / Makefile
CommitLineData
cb43fb57
MCC
1# -*- makefile -*-
2# Makefile for Sphinx documentation
3#
4
a1af8d71
MY
5# for cleaning
6subdir- := devicetree/bindings
cb43fb57 7
b1663d7e
MCC
8# Check for broken documentation file references
9ifeq ($(CONFIG_WARN_MISSING_DOCUMENTS),y)
10$(shell $(srctree)/scripts/documentation-file-ref-check --warn)
11endif
12
75442fb0
MCC
13# Check for broken ABI files
14ifeq ($(CONFIG_WARN_ABI_ERRORS),y)
df60e529 15$(shell $(srctree)/scripts/get_abi.py --dir $(srctree)/Documentation/ABI validate)
75442fb0
MCC
16endif
17
cb43fb57
MCC
18# You can set these variables from the command line.
19SPHINXBUILD = sphinx-build
20SPHINXOPTS =
21SPHINXDIRS = .
fca7216b 22DOCS_THEME =
135707d3 23DOCS_CSS =
965fc39f 24_SPHINXDIRS = $(sort $(patsubst $(srctree)/Documentation/%/index.rst,%,$(wildcard $(srctree)/Documentation/*/index.rst)))
cb43fb57
MCC
25SPHINX_CONF = conf.py
26PAPER =
27BUILDDIR = $(obj)/output
28PDFLATEX = xelatex
6b22ce00 29LATEXOPTS = -interaction=batchmode -no-shell-escape
cb43fb57 30
1e596d5e
AY
31# For denylisting "variable font" files
32# Can be overridden by setting as an env variable
33FONTS_CONF_DENY_VF ?= $(HOME)/deny-vf
34
c0d3b831 35ifeq ($(findstring 1, $(KBUILD_VERBOSE)),)
d94df02c
MCC
36SPHINXOPTS += "-q"
37endif
38
cb43fb57
MCC
39# User-friendly check for sphinx-build
40HAVE_SPHINX := $(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi)
41
42ifeq ($(HAVE_SPHINX),0)
43
44.DEFAULT:
45 $(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.)
92a037f0 46 @echo
6c01edd3 47 @$(srctree)/scripts/sphinx-pre-install
cb43fb57
MCC
48 @echo " SKIP Sphinx $@ target."
49
50else # HAVE_SPHINX
51
28f7c994 52# User-friendly check for pdflatex and latexmk
cb43fb57 53HAVE_PDFLATEX := $(shell if which $(PDFLATEX) >/dev/null 2>&1; then echo 1; else echo 0; fi)
28f7c994
MCC
54HAVE_LATEXMK := $(shell if which latexmk >/dev/null 2>&1; then echo 1; else echo 0; fi)
55
56ifeq ($(HAVE_LATEXMK),1)
57 PDFLATEX := latexmk -$(PDFLATEX)
58endif #HAVE_LATEXMK
cb43fb57
MCC
59
60# Internal variables.
61PAPEROPT_a4 = -D latex_paper_size=a4
62PAPEROPT_letter = -D latex_paper_size=letter
76a9b592
MCC
63ALLSPHINXOPTS = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC)
64ALLSPHINXOPTS += $(PAPEROPT_$(PAPER)) $(SPHINXOPTS)
c3521105
CB
65ifneq ($(wildcard $(srctree)/.config),)
66ifeq ($(CONFIG_RUST),y)
67 # Let Sphinx know we will include rustdoc
68 ALLSPHINXOPTS += -t rustdoc
69endif
70endif
cb43fb57
MCC
71# the i18n builder cannot share the environment and doctrees with the others
72I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
73
74# commands; the 'cmd' from scripts/Kbuild.include is not *loopable*
75loop_cmd = $(echo-cmd) $(cmd_$(1)) || exit;
76
77# $2 sphinx builder e.g. "html"
54f38fca 78# $3 name of the build subfolder / e.g. "userspace-api/media", used as:
cb43fb57
MCC
79# * dest folder relative to $(BUILDDIR) and
80# * cache folder relative to $(BUILDDIR)/.doctrees
54f38fca 81# $4 dest subfolder e.g. "man" for man pages at userspace-api/media/man
b1992c37 82# $5 reST source folder relative to $(src),
54f38fca 83# e.g. "userspace-api/media" for the linux-tv book-set at ./Documentation/userspace-api/media
cb43fb57 84
a5b57bd9
AY
85PYTHONPYCACHEPREFIX ?= $(abspath $(BUILDDIR)/__pycache__)
86
cb43fb57 87quiet_cmd_sphinx = SPHINX $@ --> file://$(abspath $(BUILDDIR)/$3/$4)
54f38fca 88 cmd_sphinx = $(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/userspace-api/media $2 && \
a5b57bd9 89 PYTHONPYCACHEPREFIX="$(PYTHONPYCACHEPREFIX)" \
b1992c37 90 BUILDDIR=$(abspath $(BUILDDIR)) SPHINX_CONF=$(abspath $(src)/$5/$(SPHINX_CONF)) \
d8d2d382 91 $(PYTHON3) $(srctree)/scripts/jobserver-exec \
222a28ed 92 $(CONFIG_SHELL) $(srctree)/Documentation/sphinx/parallel-wrapper.sh \
cb43fb57
MCC
93 $(SPHINXBUILD) \
94 -b $2 \
b1992c37 95 -c $(abspath $(src)) \
cb43fb57
MCC
96 -d $(abspath $(BUILDDIR)/.doctrees/$3) \
97 -D version=$(KERNELVERSION) -D release=$(KERNELRELEASE) \
98 $(ALLSPHINXOPTS) \
b1992c37 99 $(abspath $(src)/$5) \
135707d3
MCC
100 $(abspath $(BUILDDIR)/$3/$4) && \
101 if [ "x$(DOCS_CSS)" != "x" ]; then \
98d614bd 102 cp $(if $(patsubst /%,,$(DOCS_CSS)),$(abspath $(srctree)/$(DOCS_CSS)),$(DOCS_CSS)) $(BUILDDIR)/$3/_static/; \
135707d3 103 fi
cb43fb57 104
f061c9f7
BL
105YNL_INDEX:=$(srctree)/Documentation/networking/netlink_spec/index.rst
106YNL_RST_DIR:=$(srctree)/Documentation/networking/netlink_spec
107YNL_YAML_DIR:=$(srctree)/Documentation/netlink/specs
ab88c2b3 108YNL_TOOL:=$(srctree)/tools/net/ynl/pyynl/ynl_gen_rst.py
f061c9f7
BL
109
110YNL_RST_FILES_TMP := $(patsubst %.yaml,%.rst,$(wildcard $(YNL_YAML_DIR)/*.yaml))
111YNL_RST_FILES := $(patsubst $(YNL_YAML_DIR)%,$(YNL_RST_DIR)%, $(YNL_RST_FILES_TMP))
112
113$(YNL_INDEX): $(YNL_RST_FILES)
646158f2 114 $(Q)$(YNL_TOOL) -o $@ -x
f061c9f7 115
646158f2
DH
116$(YNL_RST_DIR)/%.rst: $(YNL_YAML_DIR)/%.yaml $(YNL_TOOL)
117 $(Q)$(YNL_TOOL) -i $< -o $@
f061c9f7 118
a304fa1d
AY
119htmldocs texinfodocs latexdocs epubdocs xmldocs: $(YNL_INDEX)
120
121htmldocs:
18e15724 122 @$(srctree)/scripts/sphinx-pre-install --version-check
cb43fb57
MCC
123 @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,html,$(var),,$(var)))
124
c3521105
CB
125# If Rust support is available and .config exists, add rustdoc generated contents.
126# If there are any, the errors from this make rustdoc will be displayed but
127# won't stop the execution of htmldocs
128
129ifneq ($(wildcard $(srctree)/.config),)
130ifeq ($(CONFIG_RUST),y)
131 $(Q)$(MAKE) rustdoc || true
132endif
133endif
134
1f050e90
MC
135texinfodocs:
136 @$(srctree)/scripts/sphinx-pre-install --version-check
137 @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,texinfo,$(var),texinfo,$(var)))
138
139# Note: the 'info' Make target is generated by sphinx itself when
140# running the texinfodocs target define above.
141infodocs: texinfodocs
142 $(MAKE) -C $(BUILDDIR)/texinfo info
143
cb43fb57
MCC
144linkcheckdocs:
145 @$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,linkcheck,$(var),,$(var)))
146
147latexdocs:
18e15724 148 @$(srctree)/scripts/sphinx-pre-install --version-check
cb43fb57
MCC
149 @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,latex,$(var),latex,$(var)))
150
151ifeq ($(HAVE_PDFLATEX),0)
152
153pdfdocs:
154 $(warning The '$(PDFLATEX)' command was not found. Make sure you have it installed and in PATH to produce PDF output.)
155 @echo " SKIP Sphinx $@ target."
156
157else # HAVE_PDFLATEX
158
1e596d5e 159pdfdocs: DENY_VF = XDG_CONFIG_HOME=$(FONTS_CONF_DENY_VF)
cb43fb57 160pdfdocs: latexdocs
18e15724 161 @$(srctree)/scripts/sphinx-pre-install --version-check
baeb2d5c 162 $(foreach var,$(SPHINXDIRS), \
1e596d5e 163 $(MAKE) PDFLATEX="$(PDFLATEX)" LATEXOPTS="$(LATEXOPTS)" $(DENY_VF) -C $(BUILDDIR)/$(var)/latex || sh $(srctree)/scripts/check-variable-fonts.sh || exit; \
baeb2d5c
MCC
164 mkdir -p $(BUILDDIR)/$(var)/pdf; \
165 mv $(subst .tex,.pdf,$(wildcard $(BUILDDIR)/$(var)/latex/*.tex)) $(BUILDDIR)/$(var)/pdf/; \
166 )
cb43fb57
MCC
167
168endif # HAVE_PDFLATEX
169
170epubdocs:
18e15724 171 @$(srctree)/scripts/sphinx-pre-install --version-check
cb43fb57
MCC
172 @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,epub,$(var),epub,$(var)))
173
174xmldocs:
18e15724 175 @$(srctree)/scripts/sphinx-pre-install --version-check
cb43fb57
MCC
176 @+$(foreach var,$(SPHINXDIRS),$(call loop_cmd,sphinx,xml,$(var),xml,$(var)))
177
178endif # HAVE_SPHINX
179
180# The following targets are independent of HAVE_SPHINX, and the rules should
181# work or silently pass without Sphinx.
182
e8939222
JN
183refcheckdocs:
184 $(Q)cd $(srctree);scripts/documentation-file-ref-check
185
cb43fb57 186cleandocs:
7da8bdbf 187 $(Q)rm -f $(YNL_INDEX) $(YNL_RST_FILES)
cb43fb57 188 $(Q)rm -rf $(BUILDDIR)
54f38fca 189 $(Q)$(MAKE) BUILDDIR=$(abspath $(BUILDDIR)) $(build)=Documentation/userspace-api/media clean
cb43fb57
MCC
190
191dochelp:
192 @echo ' Linux kernel internal documentation in different formats from ReST:'
193 @echo ' htmldocs - HTML'
1f050e90
MC
194 @echo ' texinfodocs - Texinfo'
195 @echo ' infodocs - Info'
cb43fb57
MCC
196 @echo ' latexdocs - LaTeX'
197 @echo ' pdfdocs - PDF'
198 @echo ' epubdocs - EPUB'
199 @echo ' xmldocs - XML'
a64c0440
GU
200 @echo ' linkcheckdocs - check for broken external links'
201 @echo ' (will connect to external hosts)'
202 @echo ' refcheckdocs - check for references to non-existing files under'
203 @echo ' Documentation'
cb43fb57
MCC
204 @echo ' cleandocs - clean all generated files'
205 @echo
206 @echo ' make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2'
207 @echo ' valid values for SPHINXDIRS are: $(_SPHINXDIRS)'
208 @echo
209 @echo ' make SPHINX_CONF={conf-file} [target] use *additional* sphinx-build'
210 @echo ' configuration. This is e.g. useful to build with nit-picking config.'
9effc8f7 211 @echo
0e805b11 212 @echo ' make DOCS_THEME={sphinx-theme} selects a different Sphinx theme.'
fca7216b 213 @echo
0e805b11 214 @echo ' make DOCS_CSS={a .css file} adds a DOCS_CSS override file for html/epub output.'
135707d3 215 @echo
9effc8f7 216 @echo ' Default location for the generated documents is Documentation/output'