- Changed to file:/// URLs for all stylesheet references.
1 parent 227cba4 commit 347381b0d3b80b456616d12bd13e16d8c160b0aa
nstanger authored on 20 Apr 2004
Showing 1 changed file
View
8
Makefile
 
# 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)
saxon = saxon -x org.apache.xml.resolver.tools.ResolvingXMLReader \
-y org.apache.xml.resolver.tools.ResolvingXMLReader \
-r org.apache.xml.resolver.tools.CatalogResolver \
-o $(3) $(1) file:///$(2) $(4)
 
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: