]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/DocBook/Makefile
V4L/DVB (13678): Add support for yet another DvbWorld, TeVii and Prof USB devices
[net-next-2.6.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
f7f84f38 9DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
ac9296f9 10 kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
bc2cda1e 11 procfs-guide.xml writing_usb_driver.xml networking.xml \
e3e2aaf7 12 kernel-api.xml filesystems.xml lsm.xml usb.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 \
e776ec19 15 mac80211.xml debugobjects.xml sh.xml regulator.xml \
a76f8c6d 16 alsa-driver-api.xml writing-an-alsa-driver.xml \
8e080c2e 17 tracepoint.xml media.xml
1da177e4
LT
18
19###
20# The build process is as follows (targets):
2ac534bc
RD
21# (xmldocs) [by docproc]
22# file.tmpl --> file.xml +--> file.ps (psdocs) [by db2ps or xmlto]
23# +--> file.pdf (pdfdocs) [by db2pdf or xmlto]
24# +--> DIR=file (htmldocs) [by xmlto]
25# +--> man/ (mandocs) [by xmlto]
1da177e4 26
71f95cfb
MW
27
28# for PDF and PS output you can choose between xmlto and docbook-utils tools
29PDF_METHOD = $(prefer-db2x)
30PS_METHOD = $(prefer-db2x)
31
32
1da177e4
LT
33###
34# The targets that may be used.
7ac94055 35PHONY += xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs cleandocs media
1da177e4
LT
36
37BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
38xmldocs: $(BOOKS)
39sgmldocs: xmldocs
40
41PS := $(patsubst %.xml, %.ps, $(BOOKS))
42psdocs: $(PS)
43
44PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
45pdfdocs: $(PDF)
46
f15a3ccd 47HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS)))
7ac94055 48htmldocs: media $(HTML)
eb81d930 49 $(call build_main_index)
1da177e4
LT
50
51MAN := $(patsubst %.xml, %.9, $(BOOKS))
52mandocs: $(MAN)
53
7ac94055
MCC
54media:
55 mkdir -p $(srctree)/Documentation/DocBook/media/
56 cp $(srctree)/Documentation/DocBook/dvb/*.png $(srctree)/Documentation/DocBook/v4l/*.gif $(srctree)/Documentation/DocBook/media/
57
1da177e4 58installmandocs: mandocs
8b0c2d98
MW
59 mkdir -p /usr/local/man/man9/
60 install Documentation/DocBook/man/*.9.gz /usr/local/man/man9/
1da177e4
LT
61
62###
63#External programs used
829ad751
MF
64KERNELDOC = $(srctree)/scripts/kernel-doc
65DOCPROC = $(objtree)/scripts/basic/docproc
8b0c2d98 66
597f6eea 67XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl
2948e57d 68#XMLTOFLAGS += --skip-validation
1da177e4
LT
69
70###
71# DOCPROC is used for two purposes:
72# 1) To generate a dependency list for a .tmpl file
73# 2) To preprocess a .tmpl file and call kernel-doc with
74# appropriate parameters.
75# The following rules are used to generate the .xml documentation
76# required to generate the final targets. (ps, pdf, html).
77quiet_cmd_docproc = DOCPROC $@
78 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
79define rule_docproc
80 set -e; \
81 $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \
82 $(cmd_$(1)); \
83 ( \
84 echo 'cmd_$@ := $(cmd_$(1))'; \
85 echo $@: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
86 ) > $(dir $@).$(notdir $@).cmd
87endef
88
89%.xml: %.tmpl FORCE
90 $(call if_changed_rule,docproc)
91
92###
93#Read in all saved dependency files
94cmd_files := $(wildcard $(foreach f,$(BOOKS),$(dir $(f)).$(notdir $(f)).cmd))
95
96ifneq ($(cmd_files),)
97 include $(cmd_files)
98endif
99
100###
101# Changes in kernel-doc force a rebuild of all documentation
102$(BOOKS): $(KERNELDOC)
103
104###
105# procfs guide uses a .c file as example code.
106# This requires an explicit dependency
107C-procfs-example = procfs_example.xml
108C-procfs-example2 = $(addprefix $(obj)/,$(C-procfs-example))
109$(obj)/procfs-guide.xml: $(C-procfs-example2)
110
3794f3e8
RD
111# List of programs to build
112##oops, this is a kernel module::hostprogs-y := procfs_example
113obj-m += procfs_example.o
114
115# Tell kbuild to always build the programs
116always := $(hostprogs-y)
117
71f95cfb
MW
118notfoundtemplate = echo "*** You have to install docbook-utils or xmlto ***"; \
119 exit 1
120db2xtemplate = db2TYPE -o $(dir $@) $<
121xmltotemplate = xmlto TYPE $(XMLTOFLAGS) -o $(dir $@) $<
122
123# determine which methods are available
124ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
125 use-db2x = db2x
126 prefer-db2x = db2x
127else
128 use-db2x = notfound
129 prefer-db2x = $(use-xmlto)
130endif
131ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
132 use-xmlto = xmlto
133 prefer-xmlto = xmlto
134else
135 use-xmlto = notfound
136 prefer-xmlto = $(use-db2x)
137endif
1da177e4 138
71f95cfb
MW
139# the commands, generated from the chosen template
140quiet_cmd_db2ps = PS $@
141 cmd_db2ps = $(subst TYPE,ps, $($(PS_METHOD)template))
1da177e4 142%.ps : %.xml
1da177e4
LT
143 $(call cmd,db2ps)
144
a34645f5 145quiet_cmd_db2pdf = PDF $@
71f95cfb 146 cmd_db2pdf = $(subst TYPE,pdf, $($(PDF_METHOD)template))
1da177e4 147%.pdf : %.xml
1da177e4
LT
148 $(call cmd,db2pdf)
149
eb81d930 150
64e3da10
RD
151index = index.html
152main_idx = Documentation/DocBook/$(index)
eb81d930
BP
153build_main_index = rm -rf $(main_idx) && \
154 echo '<h1>Linux Kernel HTML Documentation</h1>' >> $(main_idx) && \
155 echo '<h2>Kernel Version: $(KERNELVERSION)</h2>' >> $(main_idx) && \
156 cat $(HTML) >> $(main_idx)
157
a34645f5 158quiet_cmd_db2html = HTML $@
8b0c2d98 159 cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
4fa35166 160 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
eb81d930 161 $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
1da177e4
LT
162
163%.html: %.xml
8b0c2d98 164 @(which xmlto > /dev/null 2>&1) || \
fd4a3244 165 (echo "*** You need to install xmlto ***"; \
1da177e4
LT
166 exit 1)
167 @rm -rf $@ $(patsubst %.html,%,$@)
168 $(call cmd,db2html)
169 @if [ ! -z "$(PNG-$(basename $(notdir $@)))" ]; then \
170 cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
171
71f95cfb 172quiet_cmd_db2man = MAN $@
8b0c2d98
MW
173 cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi
174%.9 : %.xml
175 @(which xmlto > /dev/null 2>&1) || \
fd4a3244 176 (echo "*** You need to install xmlto ***"; \
8b0c2d98 177 exit 1)
e711db3e 178 $(Q)mkdir -p $(obj)/man
8b0c2d98
MW
179 $(call cmd,db2man)
180 @touch $@
1da177e4
LT
181
182###
0f035b8e 183# Rules to generate postscripts and PNG images from .fig format files
1da177e4
LT
184quiet_cmd_fig2eps = FIG2EPS $@
185 cmd_fig2eps = fig2dev -Leps $< $@
186
187%.eps: %.fig
188 @(which fig2dev > /dev/null 2>&1) || \
189 (echo "*** You need to install transfig ***"; \
190 exit 1)
191 $(call cmd,fig2eps)
192
193quiet_cmd_fig2png = FIG2PNG $@
194 cmd_fig2png = fig2dev -Lpng $< $@
195
196%.png: %.fig
197 @(which fig2dev > /dev/null 2>&1) || \
198 (echo "*** You need to install transfig ***"; \
199 exit 1)
200 $(call cmd,fig2png)
201
202###
203# Rule to convert a .c file to inline XML documentation
759cd603
MF
204 gen_xml = :
205 quiet_gen_xml = echo ' GEN $@'
206silent_gen_xml = :
1da177e4 207%.xml: %.c
759cd603 208 @$($(quiet)gen_xml)
1da177e4
LT
209 @( \
210 echo "<programlisting>"; \
211 expand --tabs=8 < $< | \
212 sed -e "s/&/\\&amp;/g" \
213 -e "s/</\\&lt;/g" \
214 -e "s/>/\\&gt;/g"; \
215 echo "</programlisting>") > $@
216
217###
218# Help targets as used by the top-level makefile
219dochelp:
6fc52f81
JJ
220 @echo ' Linux kernel internal documentation in different formats:'
221 @echo ' htmldocs - HTML'
6fc52f81
JJ
222 @echo ' pdfdocs - PDF'
223 @echo ' psdocs - Postscript'
224 @echo ' xmldocs - XML DocBook'
2810ae8c
RD
225 @echo ' mandocs - man pages'
226 @echo ' installmandocs - install man pages generated by mandocs'
227 @echo ' cleandocs - clean all generated DocBook files'
1da177e4
LT
228
229###
230# Temporary files left by various tools
231clean-files := $(DOCBOOKS) \
232 $(patsubst %.xml, %.dvi, $(DOCBOOKS)) \
233 $(patsubst %.xml, %.aux, $(DOCBOOKS)) \
234 $(patsubst %.xml, %.tex, $(DOCBOOKS)) \
235 $(patsubst %.xml, %.log, $(DOCBOOKS)) \
236 $(patsubst %.xml, %.out, $(DOCBOOKS)) \
237 $(patsubst %.xml, %.ps, $(DOCBOOKS)) \
238 $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \
239 $(patsubst %.xml, %.html, $(DOCBOOKS)) \
240 $(patsubst %.xml, %.9, $(DOCBOOKS)) \
64e3da10 241 $(C-procfs-example) $(index)
1da177e4 242
e711db3e 243clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man
4f193362 244
2810ae8c
RD
245cleandocs:
246 $(Q)rm -f $(call objectify, $(clean-files))
247 $(Q)rm -rf $(call objectify, $(clean-dirs))
248
4f193362
PS
249# Declare the contents of the .PHONY variable as phony. We keep that
250# information in a variable se we can use it in if_changed and friends.
251
252.PHONY: $(PHONY)