GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
1
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
XML
Browse code
- Generalised Chris's functions so that you can call the XSLT processor without extra parameters.
master
OLD_GRAPHICS_HANDLING
1 parent
1aa5e10
commit
1a5a552981beb7b67ed8222bf9f8c95079f2f91d
nstanger
authored
on 23 Feb 2004
Patch
Showing
1 changed file
Makefile
Ignore Space
Show notes
View
Makefile
# $Id$ # XSLT processor specific calling templates/functions: xalanc = Xalan $(4) -o $(3) $(1) $(2) xalanj = xalan $(4) $(1) $(2) > $(3) saxon = saxon $(1) $(2) $(4) > $(3) format = $(if $(findstring $(XSLT), 'xalan-c'), -p format "'$(1)'", $(if $(findstring $(XSLT), 'xalan-j'), -param format "'$(1)'", $(if $(findstring $(XSLT), 'saxon'), format=$(1)))) # Generic function for runnning the local preferred XSLT processor: xslt = $(if $(findstring $(XSLT), 'xalan-c'), $(call xalanc,$(1),$(2),$(3),$(4)), $(if $(findstring $(XSLT), 'xalan-j'), $(call xalanj,$(1),$(2),$(3),$(4)), $(if $(findstring $(XSLT), 'saxon'), $(call saxon,$(1),$(2),$(3),$(4))))) .PHONY: clean all: xml2html.xsl xml2latex.xsl oracle-docs.xsl clean: rm -f xml2html.xsl xml2latex.xsl oracle-docs.xsl xml2html.xsl: format-master.xml xml2xslt.xsl oracle-docs.xsl Makefile $(call xslt,$<,xml2xslt.xsl,$@,$(call format,html)) xml2latex.xsl: format-master.xml xml2xslt.xsl oracle-docs.xsl Makefile $(call xslt,$<,xml2xslt.xsl,$@,$(call format,latex)) oracle-docs.xsl: oracle-docs.perl perl $< '.*' xslt > $@
# $Id$ # XSLT processor specific calling templates/functions: xalanc = Xalan -p format "'$(4)'" -o $(3) $(1) $(2) xalanj = xalan -param format "'$(4)'" $(1) $(2) > $(3) saxon = saxon $(1) $(2) format=$(4) > $(3) # Generic function for runnning the local preferred XSLT processor: xslt = $(if $(findstring $(XSLT), 'xalan-c'), $(call xalanc,$(1),$(2),$(3),$(4)), $(if $(findstring $(XSLT), 'xalan-j'), $(call xalanj,$(1),$(2),$(3),$(4)), $(if $(findstring $(XSLT), 'saxon'), $(call saxon,$(1),$(2),$(3),$(4))))) .PHONY: clean all: xml2html.xsl xml2latex.xsl oracle-docs.xsl clean: rm -f xml2html.xsl xml2latex.xsl oracle-docs.xsl xml2html.xsl: format-master.xml xml2xslt.xsl oracle-docs.xsl Makefile $(call xslt,$<,xml2xslt.xsl,$@,html) xml2latex.xsl: format-master.xml xml2xslt.xsl oracle-docs.xsl Makefile $(call xslt,$<,xml2xslt.xsl,$@,latex) oracle-docs.xsl: oracle-docs.perl perl $< '.*' xslt > $@
Show line notes below