parameterized MAKE for webhelp
authorKasun Gajasinghe <kasunbg@gmail.com>
Sat, 1 Oct 2011 08:57:47 +0000 (08:57 +0000)
committerKasun Gajasinghe <kasunbg@gmail.com>
Sat, 1 Oct 2011 08:57:47 +0000 (08:57 +0000)
xsl/webhelp/Makefile

index 6088b73a0cf0437ea9641b20de4a8bccf0810ce0..2afbaee10ebd35335cbf2cea4fadc375c6b7a60b 100644 (file)
@@ -2,12 +2,21 @@ include $(DOCBOOK_SVN)/buildtools/Makefile.incl
 
 ANT = ant
 ANT_OPTS = 
+XSLTPROC_OPTS="--stringparam webhelp.include.search.tab true --stringparam webhelp.indexer.language en --stringparam branding docbook  --stringparam  brandname DocBook"
+XSLTSAXON_OPTS=webhelp.include.search.tab="true" webhelp.indexer.language="en" branding="docbook" brandname="DocBook"
+XSLTXALAN_OPTS="-param webhelp.include.search.tab true -param webhelp.indexer.language en -param branding docbook  -param  brandname DocBook"
 
 all: webhelp
 
 webhelp: docsrc/readme.xml
        $(MAKE) -C ../xhtml
-       $(XSLT) $< xsl/webhelp.xsl 
+ifeq ($(XSLTENGINE),saxon)
+       $(XSLT) $< xsl/webhelp.xsl ${XSLTSAXON_OPTS}
+else ifeq ($(XSLTENGINE),xalan)
+       $(XSLT) $< xsl/webhelp.xsl ${XSLTXALAN_OPTS}
+else
+       $(XSLT) ${XSLTPROC_OPTS} $< xsl/webhelp.xsl     
+endif 
        $(ANT) index
 
 # TODO: Still need to set things up for single pass profiling support.