1 #################################################################
2 # Makefile for Samba Documentation
4 # James Moore <jmoore@php.net>
5 # Gerald Carter <jerry@samba.org>
6 # Jelmer Vernooij <jelmer@samba.org>
7 include Makefile.settings
10 MAIN_DOCS
= $(patsubst %/index.xml
,%,$(wildcard */index.xml
))
11 MANPAGES3
= $(wildcard $(MANPAGEDIR3
)/*.?.xml
)
12 export TEXINPUTS
=xslt
/latex
:.
:
14 # Lists of files to process
15 LATEX_FIGURES
= xslt
/figures
/caution.pdf xslt
/figures
/important.pdf xslt
/figures
/note.pdf xslt
/figures
/tip.pdf xslt
/figures
/warning.pdf
16 MANPAGES_PLUCKER
= $(patsubst $(MANPAGEDIR3
)/%.xml
,$(PLUCKERDIR
)/%.pdb
,$(MANPAGES3
))
18 DATETIME
:= $(shell date
+%Y
%m
%d
%H
%M
%S
)
21 Makefile.settings
: configure
22 @echo Makefile.settings not present
, trying to run configure...
25 configure
: configure.in
26 @echo configure not present
, trying to generate
31 @echo
"Supported make targets:"
32 @echo
" release - Build the docs needed for a Samba release"
33 @echo
" all - Build all docs that can be build using the utilities found by configure"
34 @echo
" everything - Build all of the above"
35 @echo
" pdf,tex,dvi,ps,manpages3,txt,pearson,fo,htmlhelp - Build specific output format"
36 @echo
" html - Build multi-file HTML versions"
37 @echo
" html-single - Build single-file HTML versions"
38 @echo
" htmlman3 - Build HTML version of manpages"
39 @echo
" undocumented - Output list of undocumented smb.conf options"
40 @echo
" samples - Extract examples"
42 $(DOCBOOKDIR
)/Samba3-ByExample.xml
: $(filter-out Samba3-ByExample
/index.xml
,$(wildcard Samba3-ByExample
/*.xml
))
43 $(DOCBOOKDIR
)/Samba3-HOWTO.xml
: $(filter-out Samba3-HOWTO
/index.xml
,$(wildcard Samba3-HOWTO
/*.xml
)) Samba3-HOWTO-attributions.xml
44 Samba3-HOWTO
/manpages.xml
: $(MANPAGEDIR3
)/smb.conf
.5.xml
45 $(DOCBOOKDIR
)/Samba3-Developers-Guide.xml
: $(filter-out Samba3-Developers-Guide
/index.xml
,$(wildcard Samba3-Developers-Guide
/*.xml
)) Samba3-Developers-Guide-attributions.xml
46 $(DOCBOOKDIR
)/Samba4-HOWTO.xml
: $(filter-out Samba4-HOWTO
/index.xml
,$(wildcard Samba4-HOWTO
/*.xml
)) Samba4-HOWTO-attributions.xml
50 everything
: manpages3 pdf html-single html htmlman3 txt ps fo htmlhelp pearson
51 release
: manpages3 htmlman3 html pdf
53 # Output format targets
54 pdf
: $(patsubst %,$(PDFDIR
)/%.pdf
,$(MAIN_DOCS
))
55 dvi: $(patsubst %,$(DVIDIR
)/%.
dvi,$(MAIN_DOCS
))
56 ps
: $(patsubst %,$(PSDIR
)/%.ps
,$(MAIN_DOCS
))
57 txt
: $(patsubst %,$(TXTDIR
)/%.txt
,$(MAIN_DOCS
))
58 txt-chunks
: $(addsuffix -txt-chunks
,$(MAIN_DOCS
))
59 fo
: $(patsubst %,$(FODIR
)/%.fo
,$(MAIN_DOCS
))
60 fo-pdf
: $(patsubst %,$(FOPDFDIR
)/%.pdf
,$(MAIN_DOCS
))
61 tex: $(addsuffix .
tex,$(MAIN_DOCS
))
62 texi
: $(patsubst %,$(TEXINFODIR
)/%.texi
,$(MAIN_DOCS
))
63 texiinfo
: $(patsubst %,$(TEXINFODIR
)/%.
info,$(MAIN_DOCS
))
64 manpages3
: $(patsubst $(MANPAGEDIR3
)/%.xml
,$(OUTPUTDIR
)/manpages-3
/%,$(MANPAGES3
))
65 pearson
: $(PEARSONDIR
)/Samba3-HOWTO.xml
66 pearson-verify
: $(PEARSONDIR
)/Samba3-HOWTO.report.html
67 plucker
: $(patsubst %,$(PLUCKERDIR
)/%.pdb
,$(MAIN_DOCS
))
68 htmlman3
: $(patsubst $(MANPAGEDIR3
)/%.xml
,$(HTMLDIR
)/manpages-3
/%.html
,$(MANPAGES3
)) $(HTMLDIR
)/manpages-3
/index.html
69 html-single
: $(patsubst %,$(HTMLDIR
)/%.html
,$(MAIN_DOCS
))
70 html
: $(patsubst %,$(HTMLDIR
)/%/index.html
,$(MAIN_DOCS
)) $(HTMLDIR
)/index.html
71 htmlhelp
: $(addprefix $(HTMLHELPDIR
)/,$(MAIN_DOCS
))
72 validate
: $(addsuffix -validate
,$(MAIN_DOCS
))
74 # Intermediate docbook docs
76 $(DOCBOOKDIR
)/%.xml
: %/index.xml xslt
/expand-sambadoc.xsl
77 @echo
"Converting Samba-specific tags..."
79 @
$(XSLTPROC
) --stringparam latex.imagebasedir
"$*/" --stringparam noreference
1 --xinclude
--output
$@ xslt
/expand-sambadoc.xsl
$<
81 $(DOCBOOKDIR
)/manpages-3
/%.xml
: $(MANPAGEDIR3
)/%.xml xslt
/expand-sambadoc.xsl
83 $(XSLTPROC
) --xinclude
--stringparam noreference
1 --output
$@ xslt
/expand-sambadoc.xsl
$<
85 $(DOCBOOKDIR
)/manpages-3
/index.xml
: $(MANPAGES3
) xslt
/manpage-summary.xsl
87 echo
"<article><variablelist>" > $@
88 $(XSLTPROC
) xslt
/manpage-summary.xsl
$(MANPAGES3
) >> $@
89 echo
"</variablelist></article>" >> $@
93 $(HTMLDIR
)/index.html
: htmldocs.html
97 $(HTMLDIR
)/%/index.html
: $(DOCBOOKDIR
)/%.xml
$(HTMLDIR
)/%/samba.css xslt
/html-chunk.xsl
%-images-html-chunks
99 $(XSLTPROC
) --stringparam base.
dir "$(HTMLDIR)/$*/" xslt
/html-chunk.xsl
$<
101 # Single large HTML files
102 $(OUTPUTDIR
)/%/samba.css
: xslt
/html
/samba.css
106 $(patsubst %,$(HTMLDIR
)/%.html
,$(MAIN_DOCS
)): $(HTMLDIR
)/%.html
: %-images-html-single
108 $(HTMLDIR
)/%.html
: $(DOCBOOKDIR
)/%.xml
$(HTMLDIR
)/samba.css xslt
/html.xsl
109 $(XSLTPROC
) --output
$@ xslt
/html.xsl
$<
113 @echo
"Generating attributions file $@ from $*/"
114 @
$(XSLTPROC
) --xinclude
-o
$@ xslt
/generate-attributions.xsl
$*/index.xml
117 $(TXTDIR
)/%.txt
: $(HTMLDIR
)/%.html
119 $(HTML2TEXT
) -nobs
-style pretty
-o
$@
$<
122 %.
tex: %/index.xml xslt
/latex.xsl
123 @echo
"Generating $@..."
125 @
$(XSLTPROC
) $(DB2LATEX_ARGS
) --stringparam latex.imagebasedir
"$*/" --xinclude
--output
$@ xslt
/latex.xsl
$<
127 latexfigures
: $(LATEX_FIGURES
)
129 $(PDFDIR
)/%.pdf
: %.pdf
133 %.idx
: %.
tex latexfigures
140 %.d
: $(DOCBOOKDIR
)/%.xml xslt
/generate-dependencies.xsl
141 @echo
"Generating dependency file for $*"
144 --stringparam txtbasedir
"$(TXTDIR)/$*/" \
145 --stringparam target
"$*" \
146 -o
$@ xslt
/generate-dependencies.xsl
$<
147 @echo
"$*-images-latex-dia = \$$(wildcard \$$(addsuffix .dia, \$$($*-images-latex)))" >> $@
148 @echo
"$*-images-latex-eps: \$$(addsuffix .eps, \$$($*-images-latex))" >> $@
149 @echo
"$*-images-latex-pdf: \$$(patsubst %.dia, %.pdf, \$$($*-images-latex-dia))" >> $@
150 @echo
"$*-images-latex-png: \$$(filter-out \$$(patsubst %.dia,%.png,\$$($*-images-latex-dia)), \$$(addsuffix .png, \$$($*-images-latex)))" >> $@
153 @echo
"\$$(HTMLDIR)/%: $*/%" >> $@
154 @echo
" @mkdir -p \$$(@D)" >> $@
155 @echo
" @cp \$$< \$$@" >> $@
157 @echo
"\$$(HTMLDIR)/$*/%: $*/%" >> $@
158 @echo
" @mkdir -p \$$(@D)" >> $@
159 @echo
" @cp \$$< \$$@" >> $@
161 @echo
"\$$(HTMLHELPDIR)/$*/%: $*/%" >> $@
162 @echo
" @mkdir -p \$$(@D)" >> $@
163 @echo
" @cp \$$< \$$@" >> $@
165 @echo
"$*-images-html-single: \$$(addprefix \$$(HTMLDIR)/, \$$($*-images-html))" >> $@
166 @echo
"$*-images-html-chunks: \$$(addprefix \$$(HTMLDIR)/$*/, \$$($*-images-html))" >> $@
167 @echo
"$*-images-htmlhelp: \$$(addprefix \$$(HTMLHELPDIR)/$*/, \$$($*-images-html))" >> $@
170 ifneq ($(MAKECMDGOALS
),clobber)
171 include $(addsuffix .d
,$(MAIN_DOCS
))
176 %.pdf
: %.
tex %.ind latexfigures
%-images-latex-png
%-images-latex-pdf
178 $(THUMBPDF
) --quiet
$*.pdf
182 $(DVIDIR
)/%.
dvi: %.
dvi
186 %.
dvi: %.
tex %.idx
%-images-latex-eps
190 @
$(DIA
) -t eps-builtin
-e
$@
$<
199 $(PNGTOPNM
) $< |
$(PNMTOPS
) > $@
202 $(PSDIR
)/%.ps
: $(DVIDIR
)/%.
dvi
207 $(FODIR
)/%.fo
: $(DOCBOOKDIR
)/%.xml
209 $(XSLTPROC
) --output
$@ xslt
/fo.xsl
$<
212 $(FOPDFDIR
)/%.pdf
: $(FODIR
)/%.fo
214 JAVA_OPTS
=-Xmx250m
$(FOP
) -q
-d
$< -pdf
$@
216 $(HTMLHELPDIR
)/%: $(DOCBOOKDIR
)/%.xml
%-images-htmlhelp
217 $(XSLTPROC
) --stringparam htmlhelp.chm
$*.chm \
218 --stringparam manifest.in.base.
dir "$@/" \
219 --stringparam base.
dir "$@/" \
220 http
://docbook.sourceforge.net
/release
/xsl
/current
/htmlhelp
/htmlhelp.xsl
$<
223 $(PLUCKERDIR
)/%.pdb
: $(HTMLDIR
)/%.html
225 $(PLUCKERBUILD
) -v
-V
2 --stayonhost
--zlib-compression
-f
$* -p
$(PLUCKERDIR
) file
:$<
228 $(TEXINFODIR
)/%.texi
: $(DOCBOOKDIR
)/%.xml
230 cd
$(@D
) && $(DB2TEXI
) $(shell pwd
)/$<
232 $(TEXINFODIR
)/%.
info: $(TEXINFODIR
)/%.texi
233 $(MAKEINFO
) --no-validate
--force -o
$@
"$<"
236 $(MANPAGEDIR3
)/smb.conf
.5.xml
: $(SMBDOTCONFDOC
)/parameters.
all.xml
$(SMBDOTCONFDOC
)/parameters.service.xml
$(SMBDOTCONFDOC
)/parameters.global.xml
238 $(SMBDOTCONFDOC
)/parameters.
all.xml
: $(wildcard $(SMBDOTCONFDOC
)/*/*.xml
) $(SMBDOTCONFDOC
)/generate-file-list.sh
239 $(SMBDOTCONFDOC
)/generate-file-list.sh
$(SMBDOTCONFDOC
) > $@
241 $(SMBDOTCONFDOC
)/parameters.global.xml
: $(SMBDOTCONFDOC
)/parameters.
all.xml
$(SMBDOTCONFDOC
)/generate-context.xsl
242 @echo
"Generating list of global smb.conf options"
243 @
$(XSLTPROC
) --xinclude
--param smb.context
"'G'" --output
$(SMBDOTCONFDOC
)/parameters.global.xml
$(SMBDOTCONFDOC
)/generate-context.xsl
$<
245 $(SMBDOTCONFDOC
)/parameters.service.xml
: $(SMBDOTCONFDOC
)/parameters.
all.xml
$(SMBDOTCONFDOC
)/generate-context.xsl
246 @echo
"Generating list of share-mode smb.conf options"
247 @
$(XSLTPROC
) --xinclude
--param smb.context
"'S'" --output
$(SMBDOTCONFDOC
)/parameters.service.xml
$(SMBDOTCONFDOC
)/generate-context.xsl
$<
249 $(OUTPUTDIR
)/%: $(DOCBOOKDIR
)/%.xml xslt
/man.xsl
251 $(XSLTPROC
) --output
$@ xslt
/man.xsl
$<
253 # Individual smb.conf parameters
254 smb.conf-chunks
: $(patsubst $(SMBDOTCONFDOC
)/%.xml
,$(HTMLDIR
)/smb.conf
/%.html
,$(wildcard $(SMBDOTCONFDOC
)/*/*.xml
))
256 $(HTMLDIR
)/smb.conf
/%.html
: $(SMBDOTCONFDOC
)/%.xml
258 $(XSLTPROC
) --output
$@ xslt
/smb.conf-html.xsl
$<
260 # Pearson compatible XML
261 $(PEARSONDIR
)/%.xml
: %/index.xml xslt
/pearson.xsl
263 $(XSLTPROC
) --xinclude
--output
$@ xslt
/sambadoc2pearson.xsl
$<
265 $(PEARSONDIR
)/%.report.html
: $(PEARSONDIR
)/%.xml
267 -$(XMLLINT
) --valid
--noout
$< 2> $@
269 # Validation verification
270 %-validate
: %/index.xml
271 cd
$(<D
) && $(XMLLINT
) --xinclude
--noent
--postvalid
--noout
$(<F
)
273 # Find undocumented parameters
274 undocumented
: $(SMBDOTCONFDOC
)/parameters.
all.xml scripts
/find_missing_doc.pl scripts
/find_missing_manpages.pl
275 @
$(PERL
) scripts
/find_missing_doc.pl
$(SRCDIR
)
276 @
$(PERL
) scripts
/find_missing_manpages.pl
$(SRCDIR
)
278 samples
: $(DOCBOOKDIR
)/Samba3-HOWTO.xml xslt
/extract-examples.xsl scripts
/indent-smb.conf.pl
279 @mkdir
-p
$(EXAMPLESDIR
)
280 $(XSLTPROC
) --xinclude xslt
/extract-examples.xsl
$< > /dev
/null
2> examples
/README
281 for I in examples
/*.conf
; do
{ .
/scripts
/indent-smb.conf.pl
< $$I > $$I.tmp
; mv
$$I.tmp
$$I; } done
285 @mkdir
-p
$(ARCHIVEDIR
)
286 cp
$(PDFDIR
)/Samba3-HOWTO.pdf
$(ARCHIVEDIR
)/TOSHARG-
$(DATETIME
).pdf
287 cp
$(PDFDIR
)/Samba3-ByExample.pdf
$(ARCHIVEDIR
)/S3bE-
$(DATETIME
).pdf
290 xslt
/html.xsl
: xslt
/html-common.xsl
291 xslt
/html-chunk.xsl
: xslt
/html-common.xsl
293 xslt
/expand-sambadoc.xsl
:
294 xslt
/generate-attributions.xsl
:
299 @
rm Makefile.settings config.status config.log configure
302 @echo
"Cleaning up..."
303 @
rm -rf
$(OUTPUTDIR
)/* $(DOCBOOKDIR
)
304 @
rm -f
$(patsubst %.dia
,%.png
,$(foreach DOC
,$(MAIN_DOCS
),$($(DOC
)-images-latex-dia
))) \
305 $(patsubst %.dia
,%.pdf
,$(foreach DOC
,$(MAIN_DOCS
),$($(DOC
)-images-latex-dia
))) \
306 $(patsubst %.dia
,%.eps
,$(foreach DOC
,$(MAIN_DOCS
),$($(DOC
)-images-latex-dia
)))
307 @
rm -f
*.xml
*.d
*.tpt
*.
tex *.loc
*.toc
*.lof
*.glo
*.idx
*.aux
308 @
rm -f
*-images-html
*
309 @
rm -f
*-images-latex-
* latexfigures
310 @
rm -f xslt
/figures
/*pdf
311 @
rm -f
$(SMBDOTCONFDOC
)/parameters.
*.xml
312 @
rm -f
$(addsuffix .
*,$(MAIN_DOCS
))
314 # Always keep intermediate files if we can
316 .PHONY
: clean clobber archive release everything
all $(TARGETS
) latexfigures