From d89a775e45af9f4852fadf4e1347468e43bc55ff Mon Sep 17 00:00:00 2001 From: Norman Walsh Date: Sun, 9 Sep 2001 16:25:30 +0000 Subject: [PATCH] Add titlepage templates --- xsl/doc/Makefile | 2 +- xsl/doc/template/.cvsignore | 1 + xsl/doc/template/Makefile | 15 +++++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 xsl/doc/template/.cvsignore create mode 100644 xsl/doc/template/Makefile 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) -- 2.50.1