]> granicus.if.org Git - docbook-dsssl/commitdiff
Added dependencies for profiling stylesheets
authorJirka Kosek <jirka@kosek.cz>
Mon, 3 Jun 2002 22:04:00 +0000 (22:04 +0000)
committerJirka Kosek <jirka@kosek.cz>
Mon, 3 Jun 2002 22:04:00 +0000 (22:04 +0000)
xsl/fo/Makefile
xsl/html/Makefile
xsl/htmlhelp/Makefile
xsl/javahelp/Makefile
xsl/xhtml/Makefile

index ed0b684186a298bbaf4e58998f4711b0022ca681..02da0f1c9a9add3d5017af3c283e69eda220eb22 100644 (file)
@@ -31,8 +31,8 @@ titlepage.templates.xsl: titlepage.templates.xml ../template/titlepage.xsl
 Makefile.param:
        ../../cvstools/paramchk -m $@ param.xweb
 
-profile-docbook.xsl:
-       $(XSLT) docbook.xsl ../profiling/xsl2profile.xsl $@
+profile-docbook.xsl: docbook.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
 
 clean:
        $(RM) param.xml param.html param.xsl \
index cb7d7310f44760b5594a21d353576d5d9539e5fb..ec39950340431ca289a79aa8c9ee8fa4eed35f34 100644 (file)
@@ -37,14 +37,14 @@ Makefile.param:
        ../../cvstools/paramchk -m $@ param.xweb
        make
 
-profile-docbook.xsl:
-       $(XSLT) docbook.xsl ../profiling/xsl2profile.xsl $@
+profile-docbook.xsl: docbook.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
 
-profile-chunk.xsl:
-       $(XSLT) chunk.xsl ../profiling/xsl2profile.xsl $@
+profile-chunk.xsl: chunk.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
 
-profile-onechunk.xsl:
-       $(XSLT) onechunk.xsl ../profiling/xsl2profile.xsl $@
+profile-onechunk.xsl: onechunk.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
 
 clean:
        $(RM) param.xml param.html param.xsl \
index 049904e8d4c922d6e3def8caadfcf784409f6a81..944d131c289465a1f59f75dc5ce9f47999cbab1e 100644 (file)
@@ -3,5 +3,5 @@ XJPARSE=../../cvstools/xjparse
 
 all: profile-htmlhelp.xsl
 
-profile-htmlhelp.xsl:
-       $(XSLT) htmlhelp.xsl ../profiling/xsl2profile.xsl $@
+profile-htmlhelp.xsl: htmlhelp.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
index 83788ee4ba968135e881102e3950d0273d53c169..7cfa7a91e76eee1a13c10db003e05348c263dc56 100644 (file)
@@ -3,5 +3,5 @@ XJPARSE=../../cvstools/xjparse
 
 all: profile-javahelp.xsl
 
-profile-javahelp.xsl:
-       $(XSLT) javahelp.xsl ../profiling/xsl2profile.xsl $@
+profile-javahelp.xsl: javahelp.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
index 09b0a97f045918a8d6c0740eac459404329ac6ea..00e4e2d8b0d6fbf8d86c03798116f24dd582586e 100644 (file)
@@ -1,6 +1,6 @@
 include ../../cvstools/Makefile.incl
 
-all: xsl-files profile-docbook.xsl profile-chunk.xsl
+all: xsl-files profile-docbook.xsl profile-chunk.xsl profile-onechunk.xsl
 
 remove-old:
        for f in *.xsl; do if [ ! -f ../html/$$f -a "$$f" != "html2xhtml.xsl" ]; then rm $$f; fi; done
@@ -13,8 +13,12 @@ add-new:
 xsl-files: remove-old add-new
        for f in *.xsl; do if [ ../html/$$f -nt $$f ]; then $(XSLT) ../html/$$f html2xhtml.xsl $$f; fi; done
 
-profile-docbook.xsl:
-       $(XSLT) docbook.xsl ../profiling/xsl2profile.xsl $@
+profile-docbook.xsl: docbook.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
+
+profile-chunk.xsl: chunk.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
+
+profile-onechunk.xsl: onechunk.xsl ../profiling/xsl2profile.xsl
+       $(XSLT) $< ../profiling/xsl2profile.xsl $@
 
-profile-chunk.xsl:
-       $(XSLT) chunk.xsl ../profiling/xsl2profile.xsl $@