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 via-audio.xml \
11 deviceiobook.xml procfs-guide.xml tulip-user.xml \
12 writing_usb_driver.xml scsidrivers.xml sis900.xml \
13 kernel-api.xml journal-api.xml lsm.xml usb.xml \
14 gadget.xml libata.xml mtdnand.xml librs.xml
17 # The build process is as follows (targets):
19 # file.tmpl --> file.xml +--> file.ps (psdocs)
20 # +--> file.pdf (pdfdocs)
21 # +--> DIR=file (htmldocs)
25 # The targets that may be used.
26 .PHONY
: xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs
28 BOOKS
:= $(addprefix $(obj
)/,$(DOCBOOKS
))
32 PS
:= $(patsubst %.xml
, %.ps
, $(BOOKS
))
35 PDF
:= $(patsubst %.xml
, %.pdf
, $(BOOKS
))
38 HTML
:= $(patsubst %.xml
, %.html
, $(BOOKS
))
41 MAN
:= $(patsubst %.xml
, %.9, $(BOOKS
))
44 installmandocs
: mandocs
45 $(MAKEMAN
) install Documentation
/DocBook
/man
48 #External programs used
49 KERNELDOC
= scripts
/kernel-doc
50 DOCPROC
= scripts
/basic
/docproc
51 SPLITMAN
= $(PERL
) $(srctree
)/scripts
/split-man
52 MAKEMAN
= $(PERL
) $(srctree
)/scripts
/makeman
55 # DOCPROC is used for two purposes:
56 # 1) To generate a dependency list for a .tmpl file
57 # 2) To preprocess a .tmpl file and call kernel-doc with
58 # appropriate parameters.
59 # The following rules are used to generate the .xml documentation
60 # required to generate the final targets. (ps, pdf, html).
61 quiet_cmd_docproc
= DOCPROC
$@
62 cmd_docproc
= SRCTREE
=$(srctree
)/ $(DOCPROC
) doc
$< >$@
65 $(if
$($(quiet
)cmd_
$(1)),echo
' $($(quiet)cmd_$(1))';) \
68 echo
'cmd_$@ := $(cmd_$(1))'; \
69 echo
$@
: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
70 ) > $(dir $@
).
$(notdir $@
).cmd
74 $(call if_changed_rule
,docproc
)
77 #Read in all saved dependency files
78 cmd_files
:= $(wildcard $(foreach f
,$(BOOKS
),$(dir $(f
)).
$(notdir $(f
)).cmd
))
85 # Changes in kernel-doc force a rebuild of all documentation
86 $(BOOKS
): $(KERNELDOC
)
89 # procfs guide uses a .c file as example code.
90 # This requires an explicit dependency
91 C-procfs-example
= procfs_example.xml
92 C-procfs-example2
= $(addprefix $(obj
)/,$(C-procfs-example
))
93 $(obj
)/procfs-guide.xml
: $(C-procfs-example2
)
96 # Rules to generate postscript, PDF and HTML
97 # db2html creates a directory. Generate a html file used for timestamp
99 quiet_cmd_db2ps
= DB2PS
$@
100 cmd_db2ps
= db2ps
-o
$(dir $@
) $<
102 @
(which db2ps
> /dev
/null
2>&1) || \
103 (echo
"*** You need to install DocBook stylesheets ***"; \
107 quiet_cmd_db2pdf
= DB2PDF
$@
108 cmd_db2pdf
= db2pdf
-o
$(dir $@
) $<
110 @
(which db2pdf
> /dev
/null
2>&1) || \
111 (echo
"*** You need to install DocBook stylesheets ***"; \
115 quiet_cmd_db2html
= DB2HTML
$@
116 cmd_db2html
= db2html
-o
$(patsubst %.html
,%,$@
) $< && \
117 echo
'<a HREF="$(patsubst %.html,%,$(notdir $@))/book1.html"> \
118 Goto $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
121 @
(which db2html
> /dev
/null
2>&1) || \
122 (echo
"*** You need to install DocBook stylesheets ***"; \
124 @
rm -rf
$@
$(patsubst %.html
,%,$@
)
126 @if
[ ! -z
"$(PNG-$(basename $(notdir $@)))" ]; then \
127 cp
$(PNG-
$(basename $(notdir $@
))) $(patsubst %.html
,%,$@
); fi
130 # Rule to generate man files - output is placed in the man subdirectory
133 ifneq ($(KBUILD_SRC
),)
134 $(Q
)mkdir
-p
$(objtree
)/Documentation
/DocBook
/man
136 $(SPLITMAN
) $< $(objtree
)/Documentation
/DocBook
/man
"$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)"
137 $(MAKEMAN
) convert
$(objtree
)/Documentation
/DocBook
/man
$<
140 # Rules to generate postscripts and PNG imgages from .fig format files
141 quiet_cmd_fig2eps
= FIG2EPS
$@
142 cmd_fig2eps
= fig2dev
-Leps
$< $@
145 @
(which fig2dev
> /dev
/null
2>&1) || \
146 (echo
"*** You need to install transfig ***"; \
150 quiet_cmd_fig2png
= FIG2PNG
$@
151 cmd_fig2png
= fig2dev
-Lpng
$< $@
154 @
(which fig2dev
> /dev
/null
2>&1) || \
155 (echo
"*** You need to install transfig ***"; \
160 # Rule to convert a .c file to inline XML documentation
164 echo
"<programlisting>"; \
165 expand
--tabs
=8 < $< | \
166 sed
-e
"s/&/\\&/g" \
169 echo
"</programlisting>") > $@
172 # Help targets as used by the top-level makefile
174 @echo
' Linux kernel internal documentation in different formats:'
175 @echo
' xmldocs (XML DocBook), psdocs (Postscript), pdfdocs (PDF)'
176 @echo
' htmldocs (HTML), mandocs (man pages, use installmandocs to install)'
179 # Temporary files left by various tools
180 clean-files
:= $(DOCBOOKS
) \
181 $(patsubst %.xml
, %.
dvi, $(DOCBOOKS
)) \
182 $(patsubst %.xml
, %.aux
, $(DOCBOOKS
)) \
183 $(patsubst %.xml
, %.
tex, $(DOCBOOKS
)) \
184 $(patsubst %.xml
, %.log
, $(DOCBOOKS
)) \
185 $(patsubst %.xml
, %.out
, $(DOCBOOKS
)) \
186 $(patsubst %.xml
, %.ps
, $(DOCBOOKS
)) \
187 $(patsubst %.xml
, %.pdf
, $(DOCBOOKS
)) \
188 $(patsubst %.xml
, %.html
, $(DOCBOOKS
)) \
189 $(patsubst %.xml
, %.9, $(DOCBOOKS
)) \
192 clean-dirs
:= $(patsubst %.xml
,%,$(DOCBOOKS
))
194 #man put files in man subdir - traverse down