From: Norman Walsh Date: Sun, 9 Sep 2001 16:25:30 +0000 (+0000) Subject: Add titlepage templates X-Git-Tag: release/1.79.1~6^2~6284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d89a775e45af9f4852fadf4e1347468e43bc55ff;p=docbook-dsssl Add titlepage templates --- diff --git a/xsl/doc/Makefile b/xsl/doc/Makefile index 071dea78e..0552837a4 100644 --- a/xsl/doc/Makefile +++ b/xsl/doc/Makefile @@ -9,7 +9,7 @@ RSTYLE=reference.xsl BSTYLE=book.xsl VPATH=../docsrc -DIRS=common lib html fo tools +DIRS=common lib html fo tools template all: copyright.html warranty.html reference.html index.html for i in $(DIRS) __bogus__; do \ diff --git a/xsl/doc/template/.cvsignore b/xsl/doc/template/.cvsignore new file mode 100644 index 000000000..2d19fc766 --- /dev/null +++ b/xsl/doc/template/.cvsignore @@ -0,0 +1 @@ +*.html diff --git a/xsl/doc/template/Makefile b/xsl/doc/template/Makefile new file mode 100644 index 000000000..a8cf46c94 --- /dev/null +++ b/xsl/doc/template/Makefile @@ -0,0 +1,15 @@ +include ../../../cvstools/Makefile.incl +XSLT=saxon + +STYLE=../jrefhtml.xsl +VPATH=../../docsrc/template + +HTMLFILES = titlepage.html + +all: $(HTMLFILES) + +%.html : %.xml $(STYLE) + $(XSLT) $< $(STYLE) $@ + +clean: + rm -f $(HTMLFILES)