[PATCH] DocBook: Use xmlto to process the DocBook files.
[deliverable/linux.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
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
7# list of DOCBOOKS.
8
9DOCBOOKS := wanbook.xml z8530book.xml mcabook.xml videobook.xml \
ac9296f9
JG
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 \
1da177e4
LT
13 gadget.xml libata.xml mtdnand.xml librs.xml
14
15###
16# The build process is as follows (targets):
17# (xmldocs)
18# file.tmpl --> file.xml +--> file.ps (psdocs)
19# +--> file.pdf (pdfdocs)
20# +--> DIR=file (htmldocs)
21# +--> man/ (mandocs)
22
23###
24# The targets that may be used.
25.PHONY: xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs
26
27BOOKS := $(addprefix $(obj)/,$(DOCBOOKS))
28xmldocs: $(BOOKS)
29sgmldocs: xmldocs
30
31PS := $(patsubst %.xml, %.ps, $(BOOKS))
32psdocs: $(PS)
33
34PDF := $(patsubst %.xml, %.pdf, $(BOOKS))
35pdfdocs: $(PDF)
36
37HTML := $(patsubst %.xml, %.html, $(BOOKS))
38htmldocs: $(HTML)
39
40MAN := $(patsubst %.xml, %.9, $(BOOKS))
41mandocs: $(MAN)
42
43installmandocs: mandocs
8b0c2d98
MW
44 mkdir -p /usr/local/man/man9/
45 install Documentation/DocBook/man/*.9.gz /usr/local/man/man9/
1da177e4
LT
46
47###
48#External programs used
49KERNELDOC = scripts/kernel-doc
50DOCPROC = scripts/basic/docproc
8b0c2d98
MW
51
52#XMLTOFLAGS = --skip-validation
1da177e4
LT
53
54###
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).
61quiet_cmd_docproc = DOCPROC $@
62 cmd_docproc = SRCTREE=$(srctree)/ $(DOCPROC) doc $< >$@
63define rule_docproc
64 set -e; \
65 $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \
66 $(cmd_$(1)); \
67 ( \
68 echo 'cmd_$@ := $(cmd_$(1))'; \
69 echo $@: `SRCTREE=$(srctree) $(DOCPROC) depend $<`; \
70 ) > $(dir $@).$(notdir $@).cmd
71endef
72
73%.xml: %.tmpl FORCE
74 $(call if_changed_rule,docproc)
75
76###
77#Read in all saved dependency files
78cmd_files := $(wildcard $(foreach f,$(BOOKS),$(dir $(f)).$(notdir $(f)).cmd))
79
80ifneq ($(cmd_files),)
81 include $(cmd_files)
82endif
83
84###
85# Changes in kernel-doc force a rebuild of all documentation
86$(BOOKS): $(KERNELDOC)
87
88###
89# procfs guide uses a .c file as example code.
90# This requires an explicit dependency
91C-procfs-example = procfs_example.xml
92C-procfs-example2 = $(addprefix $(obj)/,$(C-procfs-example))
93$(obj)/procfs-guide.xml: $(C-procfs-example2)
94
95###
96# Rules to generate postscript, PDF and HTML
97# db2html creates a directory. Generate a html file used for timestamp
98
8b0c2d98
MW
99quiet_cmd_db2ps = XMLTO $@
100 cmd_db2ps = xmlto ps $(XMLTOFLAGS) -o $(dir $@) $<
1da177e4 101%.ps : %.xml
8b0c2d98 102 @(which xmlto > /dev/null 2>&1) || \
1da177e4
LT
103 (echo "*** You need to install DocBook stylesheets ***"; \
104 exit 1)
105 $(call cmd,db2ps)
106
8b0c2d98
MW
107quiet_cmd_db2pdf = XMLTO $@
108 cmd_db2pdf = xmlto pdf $(XMLTOFLAGS) -o $(dir $@) $<
1da177e4 109%.pdf : %.xml
8b0c2d98 110 @(which xmlto > /dev/null 2>&1) || \
1da177e4
LT
111 (echo "*** You need to install DocBook stylesheets ***"; \
112 exit 1)
113 $(call cmd,db2pdf)
114
8b0c2d98
MW
115quiet_cmd_db2html = XMLTO $@
116 cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
1da177e4
LT
117 echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/book1.html"> \
118 Goto $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
119
120%.html: %.xml
8b0c2d98 121 @(which xmlto > /dev/null 2>&1) || \
1da177e4
LT
122 (echo "*** You need to install DocBook stylesheets ***"; \
123 exit 1)
124 @rm -rf $@ $(patsubst %.html,%,$@)
125 $(call cmd,db2html)
126 @if [ ! -z "$(PNG-$(basename $(notdir $@)))" ]; then \
127 cp $(PNG-$(basename $(notdir $@))) $(patsubst %.html,%,$@); fi
128
8b0c2d98
MW
129quiet_cmd_db2man = XMLTO $@
130 cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; gzip -f $(obj)/man/*.9; fi
131%.9 : %.xml
132 @(which xmlto > /dev/null 2>&1) || \
133 (echo "*** You need to install DocBook stylesheets ***"; \
134 exit 1)
135 $(call cmd,db2man)
136 @touch $@
1da177e4
LT
137
138###
139# Rules to generate postscripts and PNG imgages from .fig format files
140quiet_cmd_fig2eps = FIG2EPS $@
141 cmd_fig2eps = fig2dev -Leps $< $@
142
143%.eps: %.fig
144 @(which fig2dev > /dev/null 2>&1) || \
145 (echo "*** You need to install transfig ***"; \
146 exit 1)
147 $(call cmd,fig2eps)
148
149quiet_cmd_fig2png = FIG2PNG $@
150 cmd_fig2png = fig2dev -Lpng $< $@
151
152%.png: %.fig
153 @(which fig2dev > /dev/null 2>&1) || \
154 (echo "*** You need to install transfig ***"; \
155 exit 1)
156 $(call cmd,fig2png)
157
158###
159# Rule to convert a .c file to inline XML documentation
160%.xml: %.c
161 @echo ' GEN $@'
162 @( \
163 echo "<programlisting>"; \
164 expand --tabs=8 < $< | \
165 sed -e "s/&/\\&amp;/g" \
166 -e "s/</\\&lt;/g" \
167 -e "s/>/\\&gt;/g"; \
168 echo "</programlisting>") > $@
169
170###
171# Help targets as used by the top-level makefile
172dochelp:
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)'
176
177###
178# Temporary files left by various tools
179clean-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)) \
189 $(C-procfs-example)
190
191clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS))
192
193#man put files in man subdir - traverse down
194subdir- := man/
This page took 0.040775 seconds and 5 git commands to generate.