diff options
Diffstat (limited to 'handbook/Makefile')
-rw-r--r-- | handbook/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/handbook/Makefile b/handbook/Makefile index 01353b11af..5dff1a8742 100644 --- a/handbook/Makefile +++ b/handbook/Makefile | |||
@@ -1,7 +1,6 @@ | |||
1 | all: html pdf tarball | 1 | all: html pdf tarball |
2 | 2 | ||
3 | pdf: | 3 | pdf: |
4 | |||
5 | ./poky-doc-tools/poky-docbook-to-pdf poky-handbook.xml | 4 | ./poky-doc-tools/poky-docbook-to-pdf poky-handbook.xml |
6 | ./poky-doc-tools/poky-docbook-to-pdf bsp-guide.xml | 5 | ./poky-doc-tools/poky-docbook-to-pdf bsp-guide.xml |
7 | # -- old way -- | 6 | # -- old way -- |
@@ -11,12 +10,17 @@ XSLTOPTS = --stringparam html.stylesheet style.css \ | |||
11 | --stringparam chapter.autolabel 1 \ | 10 | --stringparam chapter.autolabel 1 \ |
12 | --stringparam appendix.autolabel 1 \ | 11 | --stringparam appendix.autolabel 1 \ |
13 | --stringparam section.autolabel 1 | 12 | --stringparam section.autolabel 1 |
14 | XSLTOPTS2 = --xinclude /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl | 13 | |
14 | ## | ||
15 | # These URI should be rewritten by your distribution's xml catalog to | ||
16 | # match your localy installed XSL stylesheets. | ||
17 | XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current | ||
18 | XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl | ||
15 | 19 | ||
16 | html: | 20 | html: |
17 | # See http://www.sagehill.net/docbookxsl/HtmlOutput.html | 21 | # See http://www.sagehill.net/docbookxsl/HtmlOutput.html |
18 | xsltproc $(XSLTOPTS) -o poky-handbook.html $(XSLTOPTS2) poky-handbook.xml | 22 | xsltproc $(XSLTOPTS) -o poky-handbook.html $(XSL_XHTML_URI) poky-handbook.xml |
19 | xsltproc $(XSLTOPTS) -o bsp-guide.html $(XSLTOPTS2) bsp-guide.xml | 23 | xsltproc $(XSLTOPTS) -o bsp-guide.html $(XSL_XHTML_URI) bsp-guide.xml |
20 | # -- old way -- | 24 | # -- old way -- |
21 | # xmlto xhtml-nochunks poky-handbook.xml | 25 | # xmlto xhtml-nochunks poky-handbook.xml |
22 | 26 | ||