From: Norman Walsh Date: Wed, 26 Sep 2001 23:03:08 +0000 (+0000) Subject: Convert to xsltproc by default; change the name of the dependency files X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f8cff88289378e4b4ffc73a028c3c32e66df708;p=docbook-dsssl Convert to xsltproc by default; change the name of the dependency files --- diff --git a/website/example/Makefile b/website/example/Makefile index 4b08b9824..a1c937c90 100644 --- a/website/example/Makefile +++ b/website/example/Makefile @@ -1,4 +1,4 @@ -PROC=saxon +PROC=xsltproc PROCOPT=-q TABSTYLE=../xsl/tabular.xsl WEBSTYLE=../xsl/website.xsl @@ -18,12 +18,12 @@ ifeq ($(TEXTONLY),0) STYLESHEET=$(TABSTYLE) STYLECHUNK=$(TABCHUNK) STYLEOPT= -include depends.tabular +include .tabular else STYLESHEET=$(WEBSTYLE) STYLECHUNK=$(WEBCHUNK) STYLEOPT=filename-prefix=txt -include depends.textonly +include .textonly endif autolayout.xml: layout.xml @@ -43,5 +43,5 @@ endif depends: autolayout.xml xjparse $< - $(PROC) $(PROCOPT) $< ../xsl/makefile-dep.xsl depends.tabular - $(PROC) $(PROCOPT) $< ../xsl/makefile-dep.xsl depends.textonly prefix=txt + $(PROC) $(PROCOPT) $< ../xsl/makefile-dep.xsl .tabular + $(PROC) $(PROCOPT) $< ../xsl/makefile-dep.xsl .textonly prefix=txt