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 ducument the SRC - and how to read it.
6 # To add a new book the only step required is to add the book to the
9 DOCBOOKS := wanbook.xml z8530book.xml mcabook.xml videobook.xml \
10 kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
11 procfs-guide.xml writing_usb_driver.xml scsidrivers.xml \
12 sis900.xml kernel-api.xml journal-api.xml lsm.xml usb.xml \
13 gadget.xml libata.xml mtdnand.xml librs.xml
16 # The build process is as follows (targets):
18 # file.tmpl --> file.xml +--> file.ps (psdocs)
19 # +--> file.pdf (pdfdocs)
20 # +--> DIR=file (htmldocs)
24 # The targets that may be used.
25 .PHONY: xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs
27 BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
31 PS := $(patsubst %.xml, %.ps, $(BOOKS))
34 PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
37 HTML := $(patsubst %.xml, %.html, $(BOOKS))
40 MAN := $(patsubst %.xml, %.9, $(BOOKS))
43 installmandocs: mandocs
44 $(MAKEMAN) install Documentation/DocBook/man
47 #External programs used
48 KERNELDOC = scripts/kernel-doc
49 DOCPROC = scripts/basic/docproc
50 SPLITMAN = $(PERL) $(srctree)/scripts/split-man
51 MAKEMAN = $(PERL) $(srctree)/scripts/makeman
54 # DOCPROC is used for two purposes:
55 # 1) To generate a dependency list for a .tmpl file
56 # 2) To preprocess a .tmpl file and call kernel-doc with
57 # appropriate parameters.
58 # The following rules are used to generate the .xml documentation
59 # required to generate the final targets. (ps, pdf, html).
60 quiet_cmd_docproc = DOCPROC $@
61 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
64 $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \
67 echo 'cmd_$@ := $(cmd_$(1))'; \
68 echo $@: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
69 ) > $(dir $@).$(notdir $@).cmd
73 $(call if_changed_rule,docproc)
76 #Read in all saved dependency files
77 cmd_files := $(wildcard $(foreach f,$(BOOKS),$(dir $(f)).$(notdir $(f)).cmd))
84 # Changes in kernel-doc force a rebuild of all documentation
85 $(BOOKS): $(KERNELDOC)
88 # procfs guide uses a .c file as example code.
89 # This requires an explicit dependency
90 C-procfs-example = procfs_example.xml
91 C-procfs-example2 = $(addprefix $(obj)/,$(C-procfs-example))
92 $(obj)/procfs-guide.xml: $(C-procfs-example2)
95 # Rules to generate postscript, PDF and HTML
96 # db2html creates a directory. Generate a html file used for timestamp
98 quiet_cmd_db2ps = DB2PS $@
99 cmd_db2ps = db2ps -o $(dir $@) $<
101 @(which db2ps > /dev/null 2>&1) || \
102 (echo "*** You need to install DocBook stylesheets ***"; \
106 quiet_cmd_db2pdf = DB2PDF $@
107 cmd_db2pdf = db2pdf -o $(dir $@) $<
109 @(which db2pdf > /dev/null 2>&1) || \
110 (echo "*** You need to install DocBook stylesheets ***"; \
114 quiet_cmd_db2html = DB2HTML $@
115 cmd_db2html = db2html -o $(patsubst %.html,%,$@) $< && \
116 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/book1.html"> \
117 Goto $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
120 @(which db2html > /dev/null 2>&1) || \
121 (echo "*** You need to install DocBook stylesheets ***"; \
123 @rm -rf $@ $(patsubst %.html,%,$@)
125 @if [ ! -z "$(PNG-$(basename $(notdir $@)))" ]; then \
126 cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
129 # Rule to generate man files - output is placed in the man subdirectory
132 ifneq ($(KBUILD_SRC),)
133 $(Q)mkdir -p $(objtree)/Documentation/DocBook/man
135 $(SPLITMAN) $< $(objtree)/Documentation/DocBook/man "$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)"
136 $(MAKEMAN) convert $(objtree)/Documentation/DocBook/man $<
139 # Rules to generate postscripts and PNG imgages from .fig format files
140 quiet_cmd_fig2eps = FIG2EPS $@
141 cmd_fig2eps = fig2dev -Leps $< $@
144 @(which fig2dev > /dev/null 2>&1) || \
145 (echo "*** You need to install transfig ***"; \
149 quiet_cmd_fig2png = FIG2PNG $@
150 cmd_fig2png = fig2dev -Lpng $< $@
153 @(which fig2dev > /dev/null 2>&1) || \
154 (echo "*** You need to install transfig ***"; \
159 # Rule to convert a .c file to inline XML documentation
163 echo "<programlisting>"; \
164 expand --tabs=8 < $< | \
165 sed -e "s/&/\\&/g" \
168 echo "</programlisting>") > $@
171 # Help targets as used by the top-level makefile
173 @echo ' Linux kernel internal documentation in different formats:'
174 @echo ' xmldocs (XML DocBook), psdocs (Postscript), pdfdocs (PDF)'
175 @echo ' htmldocs (HTML), mandocs (man pages, use installmandocs to install)'
178 # Temporary files left by various tools
179 clean-files := $(DOCBOOKS) \
180 $(patsubst %.xml, %.dvi, $(DOCBOOKS)) \
181 $(patsubst %.xml, %.aux, $(DOCBOOKS)) \
182 $(patsubst %.xml, %.tex, $(DOCBOOKS)) \
183 $(patsubst %.xml, %.log, $(DOCBOOKS)) \
184 $(patsubst %.xml, %.out, $(DOCBOOKS)) \
185 $(patsubst %.xml, %.ps, $(DOCBOOKS)) \
186 $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \
187 $(patsubst %.xml, %.html, $(DOCBOOKS)) \
188 $(patsubst %.xml, %.9, $(DOCBOOKS)) \
191 clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS))
193 #man put files in man subdir - traverse down