ALSA: Move ALSA docbooks to be with the rest of the kernel docbooks
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / Documentation / DocBook / Makefile
bloba3a83d38f96fa44a1d17d917e297959cce5036fc
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
5 # to document the SRC - and how to read it.
6 # To add a new book the only step required is to add the book to the
7 # list of DOCBOOKS.
9 DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
10 kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
11 procfs-guide.xml writing_usb_driver.xml networking.xml \
12 kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \
13 gadget.xml libata.xml mtdnand.xml librs.xml rapidio.xml \
14 genericirq.xml s390-drivers.xml uio-howto.xml scsi.xml \
15 mac80211.xml debugobjects.xml sh.xml regulator.xml \
16 alsa-driver-api.xml writing-an-alsa-driver.xml
18 ###
19 # The build process is as follows (targets):
20 # (xmldocs) [by docproc]
21 # file.tmpl --> file.xml +--> file.ps (psdocs) [by db2ps or xmlto]
22 # +--> file.pdf (pdfdocs) [by db2pdf or xmlto]
23 # +--> DIR=file (htmldocs) [by xmlto]
24 # +--> man/ (mandocs) [by xmlto]
27 # for PDF and PS output you can choose between xmlto and docbook-utils tools
28 PDF_METHOD = $(prefer-db2x)
29 PS_METHOD = $(prefer-db2x)
32 ###
33 # The targets that may be used.
34 PHONY += xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs
36 BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
37 xmldocs: $(BOOKS)
38 sgmldocs: xmldocs
40 PS := $(patsubst %.xml, %.ps, $(BOOKS))
41 psdocs: $(PS)
43 PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
44 pdfdocs: $(PDF)
46 HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS)))
47 htmldocs: $(HTML)
48 $(call build_main_index)
50 MAN := $(patsubst %.xml, %.9, $(BOOKS))
51 mandocs: $(MAN)
53 installmandocs: mandocs
54 mkdir -p /usr/local/man/man9/
55 install Documentation/DocBook/man/*.9.gz /usr/local/man/man9/
57 ###
58 #External programs used
59 KERNELDOC = $(srctree)/scripts/kernel-doc
60 DOCPROC = $(objtree)/scripts/basic/docproc
62 XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl
63 #XMLTOFLAGS += --skip-validation
65 ###
66 # DOCPROC is used for two purposes:
67 # 1) To generate a dependency list for a .tmpl file
68 # 2) To preprocess a .tmpl file and call kernel-doc with
69 # appropriate parameters.
70 # The following rules are used to generate the .xml documentation
71 # required to generate the final targets. (ps, pdf, html).
72 quiet_cmd_docproc = DOCPROC $@
73 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
74 define rule_docproc
75 set -e; \
76 $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \
77 $(cmd_$(1)); \
78 ( \
79 echo 'cmd_$@ := $(cmd_$(1))'; \
80 echo $@: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
81 ) > $(dir $@).$(notdir $@).cmd
82 endef
84 %.xml: %.tmpl FORCE
85 $(call if_changed_rule,docproc)
87 ###
88 #Read in all saved dependency files
89 cmd_files := $(wildcard $(foreach f,$(BOOKS),$(dir $(f)).$(notdir $(f)).cmd))
91 ifneq ($(cmd_files),)
92 include $(cmd_files)
93 endif
95 ###
96 # Changes in kernel-doc force a rebuild of all documentation
97 $(BOOKS): $(KERNELDOC)
99 ###
100 # procfs guide uses a .c file as example code.
101 # This requires an explicit dependency
102 C-procfs-example = procfs_example.xml
103 C-procfs-example2 = $(addprefix $(obj)/,$(C-procfs-example))
104 $(obj)/procfs-guide.xml: $(C-procfs-example2)
106 # List of programs to build
107 ##oops, this is a kernel module::hostprogs-y := procfs_example
108 obj-m += procfs_example.o
110 # Tell kbuild to always build the programs
111 always := $(hostprogs-y)
113 notfoundtemplate = echo "*** You have to install docbook-utils or xmlto ***"; \
114 exit 1
115 db2xtemplate = db2TYPE -o $(dir $@) $<
116 xmltotemplate = xmlto TYPE $(XMLTOFLAGS) -o $(dir $@) $<
118 # determine which methods are available
119 ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
120 use-db2x = db2x
121 prefer-db2x = db2x
122 else
123 use-db2x = notfound
124 prefer-db2x = $(use-xmlto)
125 endif
126 ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
127 use-xmlto = xmlto
128 prefer-xmlto = xmlto
129 else
130 use-xmlto = notfound
131 prefer-xmlto = $(use-db2x)
132 endif
134 # the commands, generated from the chosen template
135 quiet_cmd_db2ps = PS $@
136 cmd_db2ps = $(subst TYPE,ps, $($(PS_METHOD)template))
137 %.ps : %.xml
138 $(call cmd,db2ps)
140 quiet_cmd_db2pdf = PDF $@
141 cmd_db2pdf = $(subst TYPE,pdf, $($(PDF_METHOD)template))
142 %.pdf : %.xml
143 $(call cmd,db2pdf)
146 main_idx = Documentation/DocBook/index.html
147 build_main_index = rm -rf $(main_idx) && \
148 echo '<h1>Linux Kernel HTML Documentation</h1>' >> $(main_idx) && \
149 echo '<h2>Kernel Version: $(KERNELVERSION)</h2>' >> $(main_idx) && \
150 cat $(HTML) >> $(main_idx)
152 quiet_cmd_db2html = HTML $@
153 cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
154 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
155 $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
157 %.html: %.xml
158 @(which xmlto > /dev/null 2>&1) || \
159 (echo "*** You need to install xmlto ***"; \
160 exit 1)
161 @rm -rf $@ $(patsubst %.html,%,$@)
162 $(call cmd,db2html)
163 @if [ ! -z "$(PNG-$(basename $(notdir $@)))" ]; then \
164 cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
166 quiet_cmd_db2man = MAN $@
167 cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi
168 %.9 : %.xml
169 @(which xmlto > /dev/null 2>&1) || \
170 (echo "*** You need to install xmlto ***"; \
171 exit 1)
172 $(Q)mkdir -p $(obj)/man
173 $(call cmd,db2man)
174 @touch $@
177 # Rules to generate postscripts and PNG images from .fig format files
178 quiet_cmd_fig2eps = FIG2EPS $@
179 cmd_fig2eps = fig2dev -Leps $< $@
181 %.eps: %.fig
182 @(which fig2dev > /dev/null 2>&1) || \
183 (echo "*** You need to install transfig ***"; \
184 exit 1)
185 $(call cmd,fig2eps)
187 quiet_cmd_fig2png = FIG2PNG $@
188 cmd_fig2png = fig2dev -Lpng $< $@
190 %.png: %.fig
191 @(which fig2dev > /dev/null 2>&1) || \
192 (echo "*** You need to install transfig ***"; \
193 exit 1)
194 $(call cmd,fig2png)
197 # Rule to convert a .c file to inline XML documentation
198 gen_xml = :
199 quiet_gen_xml = echo ' GEN $@'
200 silent_gen_xml = :
201 %.xml: %.c
202 @$($(quiet)gen_xml)
203 @( \
204 echo "<programlisting>"; \
205 expand --tabs=8 < $< | \
206 sed -e "s/&/\\&amp;/g" \
207 -e "s/</\\&lt;/g" \
208 -e "s/>/\\&gt;/g"; \
209 echo "</programlisting>") > $@
212 # Help targets as used by the top-level makefile
213 dochelp:
214 @echo ' Linux kernel internal documentation in different formats:'
215 @echo ' htmldocs - HTML'
216 @echo ' installmandocs - install man pages generated by mandocs'
217 @echo ' mandocs - man pages'
218 @echo ' pdfdocs - PDF'
219 @echo ' psdocs - Postscript'
220 @echo ' xmldocs - XML DocBook'
223 # Temporary files left by various tools
224 clean-files := $(DOCBOOKS) \
225 $(patsubst %.xml, %.dvi, $(DOCBOOKS)) \
226 $(patsubst %.xml, %.aux, $(DOCBOOKS)) \
227 $(patsubst %.xml, %.tex, $(DOCBOOKS)) \
228 $(patsubst %.xml, %.log, $(DOCBOOKS)) \
229 $(patsubst %.xml, %.out, $(DOCBOOKS)) \
230 $(patsubst %.xml, %.ps, $(DOCBOOKS)) \
231 $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \
232 $(patsubst %.xml, %.html, $(DOCBOOKS)) \
233 $(patsubst %.xml, %.9, $(DOCBOOKS)) \
234 $(C-procfs-example)
236 clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man
238 # Declare the contents of the .PHONY variable as phony. We keep that
239 # information in a variable se we can use it in if_changed and friends.
241 .PHONY: $(PHONY)