diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-05-26 15:26:09 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-05-26 15:26:09 +0100 |
commit | d630317b6b297ba6567cc2e3914706dda0690245 (patch) | |
tree | ee62c56cb1be893bdf7802ac7a39aff85b8de10c /handbook/Makefile | |
parent | a49e605a52a3bd6b688a16104fa9b5d17e06bcd5 (diff) | |
download | openembedded-core-d630317b6b297ba6567cc2e3914706dda0690245.tar.gz openembedded-core-d630317b6b297ba6567cc2e3914706dda0690245.tar.bz2 openembedded-core-d630317b6b297ba6567cc2e3914706dda0690245.zip |
handbook: Add alpha verison of a BSP specification
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'handbook/Makefile')
-rw-r--r-- | handbook/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/handbook/Makefile b/handbook/Makefile index 4a4dd7e83f..01353b11af 100644 --- a/handbook/Makefile +++ b/handbook/Makefile @@ -3,18 +3,20 @@ all: html pdf tarball pdf: ./poky-doc-tools/poky-docbook-to-pdf poky-handbook.xml + ./poky-doc-tools/poky-docbook-to-pdf bsp-guide.xml # -- old way -- # dblatex poky-handbook.xml +XSLTOPTS = --stringparam html.stylesheet style.css \ + --stringparam chapter.autolabel 1 \ + --stringparam appendix.autolabel 1 \ + --stringparam section.autolabel 1 +XSLTOPTS2 = --xinclude /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl + html: # See http://www.sagehill.net/docbookxsl/HtmlOutput.html - xsltproc --stringparam html.stylesheet style.css \ - --stringparam chapter.autolabel 1 \ - --stringparam appendix.autolabel 1 \ - --stringparam section.autolabel 1 \ - -o poky-handbook.html \ - --xinclude /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl \ - poky-handbook.xml + xsltproc $(XSLTOPTS) -o poky-handbook.html $(XSLTOPTS2) poky-handbook.xml + xsltproc $(XSLTOPTS) -o bsp-guide.html $(XSLTOPTS2) bsp-guide.xml # -- old way -- # xmlto xhtml-nochunks poky-handbook.xml @@ -24,7 +26,7 @@ tarball: html validate: xmllint --postvalid --xinclude --noout poky-handbook.xml -OUTPUTS = poky-handbook.tgz poky-handbook.html poky-handbook.pdf +OUTPUTS = poky-handbook.tgz poky-handbook.html poky-handbook.pdf bsp-guide.pdf SOURCES = *.png *.xml *.css *.svg publish: |