Use gcj-compiled saxon9

This commit is contained in:
David Bartley 2007-11-09 22:31:15 -05:00
parent de19547904
commit 9d2622ba28
1 changed files with 3 additions and 3 deletions

View File

@ -25,13 +25,13 @@ endif
XSLTARGS=g_date=`date -I` g_time=`date +%H:%M:%S` g_outdir="$(OUTDIR)" \
g_datetime="`date --rfc-3339=seconds`" g_pwd="$$(pwd)" g_root="$(ROOT)"
CLASSPATH = /users/www/saxon8/saxon8.jar
SAXON = /users/www/saxon9/saxon9.bin
$(OUTDIR)%.html: %.xml $(ROOT)/csc.dtd $(ROOT)/xsl/*.xsl directory.xml $(ROOT)/menu.xml
java -classpath $(CLASSPATH) net.sf.saxon.Transform -o $@ $< $(ROOT)/xsl/html.xsl $(XSLTARGS)
$(SAXON) -o $@ $< $(ROOT)/xsl/html.xsl $(XSLTARGS)
$(OUTDIR)%.atom: %.xml xsl/atom.xsl
java -classpath $(CLASSPATH) net.sf.saxon.Transform -o $@ $< $(ROOT)/xsl/atom.xsl $(XSLTARGS)
$(SAXON) -o $@ $< $(ROOT)/xsl/atom.xsl $(XSLTARGS)
$(OUTDIR)%.ics: %.xml
perl scripts/xml2ics.pl $< > $@