3b899ce661a9f13a456ce540abc6aa18955f6f33
[openafs.git] / doc / xml / UserGuide / Makefile.in
1 # Makefile to build the AFS Admin Guide for Unix.
2 #
3 # This makefile assumes that various utilities are available on the system.
4 # On Debian lenny, installing the packages:
5 #
6 #     dblatex
7 #     docbook-xsl
8 #     libxml2-utils
9 #     xsltproc
10 #
11 # gave me all the utilities needed.
12 #
13 # HTML_XSL is possibly specific to Debian and may need to be modified on other
14 # systems.
15
16 all: pdf html
17
18 include @TOP_OBJDIR@/src/config/Makefile.config
19 VERSFILE=version
20 include @TOP_OBJDIR@/src/config/Makefile.version
21
22 BOOK     = auusg000
23 SRCS     = $(BOOK).xml auusg003.xml auusg004.xml auusg005.xml auusg006.xml \
24            auusg007.xml auusg008.xml auusg009.xml auusg010.xml auusg011.xml \
25            auusg012.xml
26 HTML_XSL = @HTML_XSL@
27 DOCBOOK_STYLESHEETS = @DOCBOOK_STYLESHEETS@
28 XSLTPROC = @XSLTPROC@
29 DOCBOOK2PDF = @DOCBOOK2PDF@
30
31 html: $(SRCS) $(VERSFILE).xml
32         $(XSLTPROC) --param navig.graphics 1 \
33             --stringparam navig.graphics.path ../ $(DOCBOOK_STYLESHEETS)/$(HTML_XSL) $(BOOK).xml
34
35 pdf: $(SRCS) $(VERSFILE).xml
36         if test "x$(DOCBOOK2PDF)" = "xfop"; then \
37                 $(XSLTPROC) $(DOCBOOK_STYLESHEETS)/fo/docbook.xsl $(BOOK).xml > $(BOOK).fo; \
38                 $(DOCBOOK2PDF) $(BOOK).fo $(BOOK).pdf; \
39         else \
40                 $(DOCBOOK2PDF) $(BOOK).xml; \
41         fi
42
43 check:
44         xmllint --noout --valid $(BOOK).xml
45
46 clean:
47         rm -f *.html *.pdf