doc: prefer fop to generate pdf from docbook
[openafs.git] / doc / xml / QuickStartUnix / Makefile.in
1 # Makefile to build the AFS QuickStart 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 specific to Debian and will need to be modified on other
14 # systems until we have a better mechanism for finding the correct path.
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     = auqbg000
23 SRCS     = $(BOOK).xml auqbg003.xml auqbg004.xml auqbg005.xml auqbg006.xml \
24            auqbg007.xml auqbg008.xml appendix.xml appendix_dafs.xml
25 HTML_XSL = @HTML_XSL@
26 DOCBOOK_STYLESHEETS = @DOCBOOK_STYLESHEETS@
27 XSLTPROC = @XSLTPROC@
28 DOCBOOK2PDF = @DOCBOOK2PDF@
29
30 html: $(SRCS) $(VERSFILE).xml
31         $(XSLTPROC) --param navig.graphics 1 \
32             --stringparam navig.graphics.path ../ $(DOCBOOK_STYLESHEETS)/$(HTML_XSL) $(BOOK).xml
33
34 pdf: $(SRCS) $(VERSFILE).xml
35         if test "x$(DOCBOOK2PDF)" = "xfop"; then \
36                 $(XSLTPROC) $(DOCBOOK_STYLESHEETS)/fo/docbook.xsl $(BOOK).xml > $(BOOK).fo; \
37                 $(DOCBOOK2PDF) $(BOOK).fo $(BOOK).pdf; \
38         else \
39                 $(DOCBOOK2PDF) $(BOOK).xml; \
40         fi
41
42 check:
43         xmllint --noout --valid $(BOOK).xml
44
45 clean:
46         rm -f *.html *.pdf