]> granicus.if.org Git - docbook-dsssl/commitdiff
Makefile and .cvsignore
authorNorman Walsh <ndw@nwalsh.com>
Sun, 13 Oct 2002 15:09:42 +0000 (15:09 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Sun, 13 Oct 2002 15:09:42 +0000 (15:09 +0000)
slides/xsl/html/.cvsignore [new file with mode: 0644]
slides/xsl/html/Makefile [new file with mode: 0644]

diff --git a/slides/xsl/html/.cvsignore b/slides/xsl/html/.cvsignore
new file mode 100644 (file)
index 0000000..a225659
--- /dev/null
@@ -0,0 +1,3 @@
+param.xsl
+param.xml
+param.html
diff --git a/slides/xsl/html/Makefile b/slides/xsl/html/Makefile
new file mode 100644 (file)
index 0000000..a185ee6
--- /dev/null
@@ -0,0 +1,29 @@
+include ../../../cvstools/Makefile.incl
+
+PARAMPROF=.param.profiled
+PARAMSTRIP=.param.stripped
+
+all: param.xsl
+
+%.xsl: %.xml
+       $(XSLT) $< $(TTLTEMPLATEXSL) $@
+
+xml: param.xml
+
+html: param.html
+
+param.html: param.xml
+       $(XSLT) $< ../../../xsl/docsrc/lrefentry.xsl $@
+
+param.xml: param.xweb
+       $(XSLT) $< ../../../xsl/profiling/profile.xsl $(PARAMPROF) profile.condition=html
+       $(XSLT) $(PARAMPROF) ../../../xsl/profiling/strip-attributes.xsl $(PARAMSTRIP) attributes=condition
+       $(XSLT) $(PARAMSTRIP) ../../../litprog/wdocbook.xsl $@
+       $(RM) $(PARAMPROF) $(PARAMSTRIP)
+
+param.xsl: param.xweb
+       $(XSLT) $< ../../../xsl/profiling/profile.xsl $(PARAMPROF) profile.condition=html
+       $(XSLT) $(PARAMPROF) ../../../xsl/profiling/strip-attributes.xsl $(PARAMSTRIP) attributes=condition
+       $(XSLT) $(PARAMSTRIP) ../../../litprog/xtangle.xsl $@
+       $(RM) $(PARAMPROF) $(PARAMSTRIP)
+