]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - Documentation/DocBook/Makefile
KVM: arm64: vgic-v3: Log which GICv3 system registers are trapped
[mirror_ubuntu-zesty-kernel.git] / Documentation / DocBook / Makefile
CommitLineData
1da177e4
LT
1###
2# This makefile is used to generate the kernel documentation,
3# primarily based on in-line comments in various source files.
4# See Documentation/kernel-doc-nano-HOWTO.txt for instruction in how
58ef2c4c 5# to document the SRC - and how to read it.
1da177e4
LT
6# To add a new book the only step required is to add the book to the
7# list of DOCBOOKS.
8
47cb398d 9DOCBOOKS := z8530book.xml \
ac9296f9 10 kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
82c1e49c 11 writing_usb_driver.xml networking.xml \
dd0b38d8 12 kernel-api.xml filesystems.xml lsm.xml kgdb.xml \
11c869ea 13 gadget.xml libata.xml mtdnand.xml librs.xml rapidio.xml \
dbbea671 14 genericirq.xml s390-drivers.xml uio-howto.xml scsi.xml \
66115335 15 sh.xml regulator.xml w1.xml \
c441a478 16 writing_musb_glue_layer.xml iio.xml
42661299 17
bdf107d8
JN
18ifeq ($(DOCBOOKS),)
19
20# Skip DocBook build if the user explicitly requested no DOCBOOKS.
21.DEFAULT:
22 @echo " SKIP DocBook $@ target (DOCBOOKS=\"\" specified)."
606b9ac8
MH
23else
24ifneq ($(SPHINXDIRS),)
bdf107d8 25
606b9ac8
MH
26# Skip DocBook build if the user explicitly requested a sphinx dir
27.DEFAULT:
28 @echo " SKIP DocBook $@ target (SPHINXDIRS specified)."
bdf107d8
JN
29else
30
606b9ac8 31
1da177e4
LT
32###
33# The build process is as follows (targets):
2ac534bc
RD
34# (xmldocs) [by docproc]
35# file.tmpl --> file.xml +--> file.ps (psdocs) [by db2ps or xmlto]
36# +--> file.pdf (pdfdocs) [by db2pdf or xmlto]
37# +--> DIR=file (htmldocs) [by xmlto]
38# +--> man/ (mandocs) [by xmlto]
1da177e4 39
71f95cfb
MW
40
41# for PDF and PS output you can choose between xmlto and docbook-utils tools
42PDF_METHOD = $(prefer-db2x)
43PS_METHOD = $(prefer-db2x)
44
45
6f89b9c1 46targets += $(DOCBOOKS)
1da177e4 47BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
a435600e 48xmldocs: $(BOOKS)
1da177e4
LT
49sgmldocs: xmldocs
50
51PS := $(patsubst %.xml, %.ps, $(BOOKS))
52psdocs: $(PS)
53
54PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
55pdfdocs: $(PDF)
56
f15a3ccd 57HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS)))
04893043 58htmldocs: $(HTML)
e237b657 59 $(call cmd,build_main_index)
1da177e4
LT
60
61MAN := $(patsubst %.xml, %.9, $(BOOKS))
62mandocs: $(MAN)
32c1735c 63 find $(obj)/man -name '*.9' | xargs gzip -nf
1da177e4
LT
64
65installmandocs: mandocs
8b0c2d98 66 mkdir -p /usr/local/man/man9/
9ed71e7a
BH
67 find $(obj)/man -name '*.9.gz' -printf '%h %f\n' | \
68 sort -k 2 -k 1 | uniq -f 1 | sed -e 's: :/:' | \
69 xargs install -m 644 -t /usr/local/man/man9/
1da177e4 70
22cba31b
JN
71# no-op for the DocBook toolchain
72epubdocs:
d565127d 73latexdocs:
22cba31b 74
1da177e4
LT
75###
76#External programs used
5699f871
DCLP
77KERNELDOCXMLREF = $(srctree)/scripts/kernel-doc-xml-ref
78KERNELDOC = $(srctree)/scripts/kernel-doc
79DOCPROC = $(objtree)/scripts/docproc
b479bfd0
BH
80CHECK_LC_CTYPE = $(objtree)/scripts/check-lc_ctype
81
82# Use a fixed encoding - UTF-8 if the C library has support built-in
83# or ASCII if not
84LC_CTYPE := $(call try-run, LC_CTYPE=C.UTF-8 $(CHECK_LC_CTYPE),C.UTF-8,C)
85export LC_CTYPE
8b0c2d98 86
ec3fadd6 87XMLTOFLAGS = -m $(srctree)/$(src)/stylesheet.xsl
82c1e49c 88XMLTOFLAGS += --skip-validation
1da177e4
LT
89
90###
91# DOCPROC is used for two purposes:
92# 1) To generate a dependency list for a .tmpl file
93# 2) To preprocess a .tmpl file and call kernel-doc with
94# appropriate parameters.
95# The following rules are used to generate the .xml documentation
96# required to generate the final targets. (ps, pdf, html).
97quiet_cmd_docproc = DOCPROC $@
98 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
99define rule_docproc
100 set -e; \
101 $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \
102 $(cmd_$(1)); \
103 ( \
104 echo 'cmd_$@ := $(cmd_$(1))'; \
105 echo $@: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
106 ) > $(dir $@).$(notdir $@).cmd
107endef
108
5699f871 109%.xml: %.tmpl $(KERNELDOC) $(DOCPROC) $(KERNELDOCXMLREF) FORCE
1da177e4
LT
110 $(call if_changed_rule,docproc)
111
3794f3e8
RD
112# Tell kbuild to always build the programs
113always := $(hostprogs-y)
114
71f95cfb
MW
115notfoundtemplate = echo "*** You have to install docbook-utils or xmlto ***"; \
116 exit 1
117db2xtemplate = db2TYPE -o $(dir $@) $<
118xmltotemplate = xmlto TYPE $(XMLTOFLAGS) -o $(dir $@) $<
119
120# determine which methods are available
121ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
122 use-db2x = db2x
123 prefer-db2x = db2x
124else
125 use-db2x = notfound
126 prefer-db2x = $(use-xmlto)
127endif
128ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
129 use-xmlto = xmlto
130 prefer-xmlto = xmlto
131else
132 use-xmlto = notfound
133 prefer-xmlto = $(use-db2x)
134endif
1da177e4 135
71f95cfb
MW
136# the commands, generated from the chosen template
137quiet_cmd_db2ps = PS $@
138 cmd_db2ps = $(subst TYPE,ps, $($(PS_METHOD)template))
1da177e4 139%.ps : %.xml
1da177e4
LT
140 $(call cmd,db2ps)
141
a34645f5 142quiet_cmd_db2pdf = PDF $@
71f95cfb 143 cmd_db2pdf = $(subst TYPE,pdf, $($(PDF_METHOD)template))
1da177e4 144%.pdf : %.xml
1da177e4
LT
145 $(call cmd,db2pdf)
146
eb81d930 147
64e3da10 148index = index.html
ec3fadd6 149main_idx = $(obj)/$(index)
e237b657
MCC
150quiet_cmd_build_main_index = HTML $(main_idx)
151 cmd_build_main_index = rm -rf $(main_idx); \
eb81d930
BP
152 echo '<h1>Linux Kernel HTML Documentation</h1>' >> $(main_idx) && \
153 echo '<h2>Kernel Version: $(KERNELVERSION)</h2>' >> $(main_idx) && \
154 cat $(HTML) >> $(main_idx)
155
a34645f5 156quiet_cmd_db2html = HTML $@
c4d79a47 157 cmd_db2html = xmlto html $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
4fa35166 158 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
ec3fadd6 159 $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
1da177e4 160
5699f871
DCLP
161###
162# Rules to create an aux XML and .db, and use them to re-process the DocBook XML
163# to fill internal hyperlinks
164 gen_aux_xml = :
165 quiet_gen_aux_xml = echo ' XMLREF $@'
166silent_gen_aux_xml = :
167%.aux.xml: %.xml
168 @$($(quiet)gen_aux_xml)
169 @rm -rf $@
170 @(cat $< | egrep "^<refentry id" | egrep -o "\".*\"" | cut -f 2 -d \" > $<.db)
171 @$(KERNELDOCXMLREF) -db $<.db $< > $@
172.PRECIOUS: %.aux.xml
173
174%.html: %.aux.xml
8b0c2d98 175 @(which xmlto > /dev/null 2>&1) || \
fd4a3244 176 (echo "*** You need to install xmlto ***"; \
1da177e4
LT
177 exit 1)
178 @rm -rf $@ $(patsubst %.html,%,$@)
179 $(call cmd,db2html)
180 @if [ ! -z "$(PNG-$(basename $(notdir $@)))" ]; then \
181 cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
182
71f95cfb 183quiet_cmd_db2man = MAN $@
9ed71e7a 184 cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man/$(*F) $< ; fi
8b0c2d98
MW
185%.9 : %.xml
186 @(which xmlto > /dev/null 2>&1) || \
fd4a3244 187 (echo "*** You need to install xmlto ***"; \
8b0c2d98 188 exit 1)
9ed71e7a 189 $(Q)mkdir -p $(obj)/man/$(*F)
8b0c2d98
MW
190 $(call cmd,db2man)
191 @touch $@
1da177e4
LT
192
193###
0f035b8e 194# Rules to generate postscripts and PNG images from .fig format files
1da177e4
LT
195quiet_cmd_fig2eps = FIG2EPS $@
196 cmd_fig2eps = fig2dev -Leps $< $@
197
198%.eps: %.fig
199 @(which fig2dev > /dev/null 2>&1) || \
200 (echo "*** You need to install transfig ***"; \
201 exit 1)
202 $(call cmd,fig2eps)
203
204quiet_cmd_fig2png = FIG2PNG $@
205 cmd_fig2png = fig2dev -Lpng $< $@
206
207%.png: %.fig
208 @(which fig2dev > /dev/null 2>&1) || \
209 (echo "*** You need to install transfig ***"; \
210 exit 1)
211 $(call cmd,fig2png)
212
213###
214# Rule to convert a .c file to inline XML documentation
759cd603
MF
215 gen_xml = :
216 quiet_gen_xml = echo ' GEN $@'
217silent_gen_xml = :
1da177e4 218%.xml: %.c
759cd603 219 @$($(quiet)gen_xml)
1da177e4
LT
220 @( \
221 echo "<programlisting>"; \
222 expand --tabs=8 < $< | \
223 sed -e "s/&/\\&amp;/g" \
224 -e "s/</\\&lt;/g" \
225 -e "s/>/\\&gt;/g"; \
226 echo "</programlisting>") > $@
227
bdf107d8 228endif # DOCBOOKS=""
606b9ac8 229endif # SPHINDIR=...
54721886 230
1da177e4
LT
231###
232# Help targets as used by the top-level makefile
233dochelp:
ebc88ef0 234 @echo ' Linux kernel internal documentation in different formats (DocBook):'
6fc52f81 235 @echo ' htmldocs - HTML'
6fc52f81
JJ
236 @echo ' pdfdocs - PDF'
237 @echo ' psdocs - Postscript'
238 @echo ' xmldocs - XML DocBook'
2810ae8c
RD
239 @echo ' mandocs - man pages'
240 @echo ' installmandocs - install man pages generated by mandocs'
241 @echo ' cleandocs - clean all generated DocBook files'
e57f0796 242 @echo
ebc88ef0 243 @echo ' make DOCBOOKS="s1.xml s2.xml" [target] Generate only docs s1.xml s2.xml'
e57f0796 244 @echo ' valid values for DOCBOOKS are: $(DOCBOOKS)'
54721886 245 @echo
bdf107d8 246 @echo " make DOCBOOKS=\"\" [target] Don't generate docs from Docbook"
54721886 247 @echo ' This is useful to generate only the ReST docs (Sphinx)'
e57f0796 248
1da177e4
LT
249
250###
251# Temporary files left by various tools
252clean-files := $(DOCBOOKS) \
5699f871
DCLP
253 $(patsubst %.xml, %.dvi, $(DOCBOOKS)) \
254 $(patsubst %.xml, %.aux, $(DOCBOOKS)) \
255 $(patsubst %.xml, %.tex, $(DOCBOOKS)) \
256 $(patsubst %.xml, %.log, $(DOCBOOKS)) \
257 $(patsubst %.xml, %.out, $(DOCBOOKS)) \
258 $(patsubst %.xml, %.ps, $(DOCBOOKS)) \
259 $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \
260 $(patsubst %.xml, %.html, $(DOCBOOKS)) \
261 $(patsubst %.xml, %.9, $(DOCBOOKS)) \
262 $(patsubst %.xml, %.aux.xml, $(DOCBOOKS)) \
263 $(patsubst %.xml, %.xml.db, $(DOCBOOKS)) \
264 $(patsubst %.xml, %.xml, $(DOCBOOKS)) \
05d5f95d 265 $(patsubst %.xml, .%.xml.cmd, $(DOCBOOKS)) \
82c1e49c 266 $(index)
1da177e4 267
42661299 268clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man
4f193362 269
43f71d93 270cleandocs:
2810ae8c
RD
271 $(Q)rm -f $(call objectify, $(clean-files))
272 $(Q)rm -rf $(call objectify, $(clean-dirs))
273
4f193362
PS
274# Declare the contents of the .PHONY variable as phony. We keep that
275# information in a variable se we can use it in if_changed and friends.
276
277.PHONY: $(PHONY)