blob: 8918a32c6b3a567903d02d87aad5577f2c13a12c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001###
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
Adrian Bunk58ef2c42006-04-01 01:04:59 +02005# to document the SRC - and how to read it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006# To add a new book the only step required is to add the book to the
7# list of DOCBOOKS.
8
Randy Dunlapf7f84f32009-02-22 12:15:45 -08009DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
Jeff Garzikac9296f2005-05-01 08:59:27 -070010 kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
Randy Dunlapbc2cda12008-02-13 15:03:25 -080011 procfs-guide.xml writing_usb_driver.xml networking.xml \
Jason Wessele3e2aaf2008-03-20 13:43:45 -050012 kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \
Thomas Gleixner11c869e2006-06-29 02:24:47 -070013 gadget.xml libata.xml mtdnand.xml librs.xml rapidio.xml \
Johannes Bergdbbea672008-02-26 14:34:06 +010014 genericirq.xml s390-drivers.xml uio-howto.xml scsi.xml \
Randy Dunlape776ec12009-02-28 17:40:18 +010015 mac80211.xml debugobjects.xml sh.xml regulator.xml \
16 alsa-driver-api.xml writing-an-alsa-driver.xml
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18###
19# The build process is as follows (targets):
Randy Dunlap2ac534b2007-07-19 01:48:23 -070020# (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]
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Martin Waitz71f95cf2005-11-13 16:08:15 -080026
27# for PDF and PS output you can choose between xmlto and docbook-utils tools
28PDF_METHOD = $(prefer-db2x)
29PS_METHOD = $(prefer-db2x)
30
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032###
33# The targets that may be used.
Randy Dunlap2810ae8c2009-04-10 14:20:54 -070034PHONY += xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs cleandocs
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
37xmldocs: $(BOOKS)
38sgmldocs: xmldocs
39
40PS := $(patsubst %.xml, %.ps, $(BOOKS))
41psdocs: $(PS)
42
43PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
44pdfdocs: $(PDF)
45
Randy Dunlapf15a3cc2007-04-11 08:44:12 -070046HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047htmldocs: $(HTML)
Borislav Petkoveb81d932007-05-08 00:29:36 -070048 $(call build_main_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50MAN := $(patsubst %.xml, %.9, $(BOOKS))
51mandocs: $(MAN)
52
53installmandocs: mandocs
Martin Waitz8b0c2d92005-05-01 08:59:27 -070054 mkdir -p /usr/local/man/man9/
55 install Documentation/DocBook/man/*.9.gz /usr/local/man/man9/
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57###
58#External programs used
Mike Frysinger829ad752006-12-29 16:49:07 -080059KERNELDOC = $(srctree)/scripts/kernel-doc
60DOCPROC = $(objtree)/scripts/basic/docproc
Martin Waitz8b0c2d92005-05-01 08:59:27 -070061
Jiri Slaby597f6ee2005-06-23 22:05:18 -070062XMLTOFLAGS = -m $(srctree)/Documentation/DocBook/stylesheet.xsl
Martin Waitz2948e572005-05-01 08:59:27 -070063#XMLTOFLAGS += --skip-validation
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
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).
72quiet_cmd_docproc = DOCPROC $@
73 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
74define 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
82endef
83
84%.xml: %.tmpl FORCE
85 $(call if_changed_rule,docproc)
86
87###
88#Read in all saved dependency files
89cmd_files := $(wildcard $(foreach f,$(BOOKS),$(dir $(f)).$(notdir $(f)).cmd))
90
91ifneq ($(cmd_files),)
92 include $(cmd_files)
93endif
94
95###
96# Changes in kernel-doc force a rebuild of all documentation
97$(BOOKS): $(KERNELDOC)
98
99###
100# procfs guide uses a .c file as example code.
101# This requires an explicit dependency
102C-procfs-example = procfs_example.xml
103C-procfs-example2 = $(addprefix $(obj)/,$(C-procfs-example))
104$(obj)/procfs-guide.xml: $(C-procfs-example2)
105
Randy Dunlap3794f3e2008-08-12 15:09:06 -0700106# List of programs to build
107##oops, this is a kernel module::hostprogs-y := procfs_example
108obj-m += procfs_example.o
109
110# Tell kbuild to always build the programs
111always := $(hostprogs-y)
112
Martin Waitz71f95cf2005-11-13 16:08:15 -0800113notfoundtemplate = echo "*** You have to install docbook-utils or xmlto ***"; \
114 exit 1
115db2xtemplate = db2TYPE -o $(dir $@) $<
116xmltotemplate = xmlto TYPE $(XMLTOFLAGS) -o $(dir $@) $<
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Martin Waitz71f95cf2005-11-13 16:08:15 -0800118# determine which methods are available
119ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
120 use-db2x = db2x
121 prefer-db2x = db2x
122else
123 use-db2x = notfound
124 prefer-db2x = $(use-xmlto)
125endif
126ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
127 use-xmlto = xmlto
128 prefer-xmlto = xmlto
129else
130 use-xmlto = notfound
131 prefer-xmlto = $(use-db2x)
132endif
133
134# the commands, generated from the chosen template
135quiet_cmd_db2ps = PS $@
136 cmd_db2ps = $(subst TYPE,ps, $($(PS_METHOD)template))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137%.ps : %.xml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 $(call cmd,db2ps)
139
Hans Ulrich Niedermanna34645f2008-10-29 14:00:57 -0700140quiet_cmd_db2pdf = PDF $@
Martin Waitz71f95cf2005-11-13 16:08:15 -0800141 cmd_db2pdf = $(subst TYPE,pdf, $($(PDF_METHOD)template))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142%.pdf : %.xml
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 $(call cmd,db2pdf)
144
Borislav Petkoveb81d932007-05-08 00:29:36 -0700145
146main_idx = Documentation/DocBook/index.html
147build_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)
151
Hans Ulrich Niedermanna34645f2008-10-29 14:00:57 -0700152quiet_cmd_db2html = HTML $@
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700153 cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
Martin Waitz4fa35162005-05-01 08:59:28 -0700154 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
Borislav Petkoveb81d932007-05-08 00:29:36 -0700155 $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157%.html: %.xml
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700158 @(which xmlto > /dev/null 2>&1) || \
Sam Ravnborgfd4a3242005-05-01 08:59:28 -0700159 (echo "*** You need to install xmlto ***"; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 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
165
Martin Waitz71f95cf2005-11-13 16:08:15 -0800166quiet_cmd_db2man = MAN $@
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700167 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) || \
Sam Ravnborgfd4a3242005-05-01 08:59:28 -0700170 (echo "*** You need to install xmlto ***"; \
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700171 exit 1)
Sam Ravnborge711db32007-04-13 23:07:00 +0200172 $(Q)mkdir -p $(obj)/man
Martin Waitz8b0c2d92005-05-01 08:59:27 -0700173 $(call cmd,db2man)
174 @touch $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176###
Simon Arlott0f035b82007-10-20 01:30:25 +0200177# Rules to generate postscripts and PNG images from .fig format files
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178quiet_cmd_fig2eps = FIG2EPS $@
179 cmd_fig2eps = fig2dev -Leps $< $@
180
181%.eps: %.fig
182 @(which fig2dev > /dev/null 2>&1) || \
183 (echo "*** You need to install transfig ***"; \
184 exit 1)
185 $(call cmd,fig2eps)
186
187quiet_cmd_fig2png = FIG2PNG $@
188 cmd_fig2png = fig2dev -Lpng $< $@
189
190%.png: %.fig
191 @(which fig2dev > /dev/null 2>&1) || \
192 (echo "*** You need to install transfig ***"; \
193 exit 1)
194 $(call cmd,fig2png)
195
196###
197# Rule to convert a .c file to inline XML documentation
Mike Frysinger759cd602008-03-28 14:30:58 -0700198 gen_xml = :
199 quiet_gen_xml = echo ' GEN $@'
200silent_gen_xml = :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201%.xml: %.c
Mike Frysinger759cd602008-03-28 14:30:58 -0700202 @$($(quiet)gen_xml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 @( \
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>") > $@
210
211###
212# Help targets as used by the top-level makefile
213dochelp:
Jesper Juhl6fc52f82006-12-07 00:16:26 +0100214 @echo ' Linux kernel internal documentation in different formats:'
215 @echo ' htmldocs - HTML'
Jesper Juhl6fc52f82006-12-07 00:16:26 +0100216 @echo ' pdfdocs - PDF'
217 @echo ' psdocs - Postscript'
218 @echo ' xmldocs - XML DocBook'
Randy Dunlap2810ae8c2009-04-10 14:20:54 -0700219 @echo ' mandocs - man pages'
220 @echo ' installmandocs - install man pages generated by mandocs'
221 @echo ' cleandocs - clean all generated DocBook files'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223###
224# Temporary files left by various tools
225clean-files := $(DOCBOOKS) \
226 $(patsubst %.xml, %.dvi, $(DOCBOOKS)) \
227 $(patsubst %.xml, %.aux, $(DOCBOOKS)) \
228 $(patsubst %.xml, %.tex, $(DOCBOOKS)) \
229 $(patsubst %.xml, %.log, $(DOCBOOKS)) \
230 $(patsubst %.xml, %.out, $(DOCBOOKS)) \
231 $(patsubst %.xml, %.ps, $(DOCBOOKS)) \
232 $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \
233 $(patsubst %.xml, %.html, $(DOCBOOKS)) \
234 $(patsubst %.xml, %.9, $(DOCBOOKS)) \
235 $(C-procfs-example)
236
Sam Ravnborge711db32007-04-13 23:07:00 +0200237clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man
Paul Smith4f193362006-03-05 17:14:10 -0500238
Randy Dunlap2810ae8c2009-04-10 14:20:54 -0700239cleandocs:
240 $(Q)rm -f $(call objectify, $(clean-files))
241 $(Q)rm -rf $(call objectify, $(clean-dirs))
242
Paul Smith4f193362006-03-05 17:14:10 -0500243# Declare the contents of the .PHONY variable as phony. We keep that
244# information in a variable se we can use it in if_changed and friends.
245
246.PHONY: $(PHONY)