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