]> granicus.if.org Git - docbook-dsssl/commitdiff
echo information about each file as it is getting built (to
authorMichael Smith <xmldoc@users.sourceforge.net>
Thu, 27 Mar 2008 01:06:26 +0000 (01:06 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Thu, 27 Mar 2008 01:06:26 +0000 (01:06 +0000)
prevent it from looking like the build is just hanging)

xsl/xhtml/Makefile

index 3c5124486ea19c8a4f0de1d4ac4b1f261c5ba07f..7de7a4c288a837e4abb2d6f1aa681369a5ede8cb 100644 (file)
@@ -7,14 +7,19 @@ remove-old:
 
 add-new:
        for f in ../html/*.xsl; do if [ ! -f `basename $$f` ]; then \
-          echo $$f; \
+          echo "copying $$f"; \
           cp $$f .; \
           touch -t 197001010000 `basename $$f`; fi; done
 
 # Oh, come on! It must be possible to do this in Make, but I can't figure out how (ndw)
 
 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
+       for f in *.xsl; do \
+         if [ ../html/$$f -nt $$f ]; then \
+           echo "transforming $$f"; \
+           $(XSLT) ../html/$$f html2xhtml.xsl $$f; \
+        fi; \
+       done
 
 profile-docbook.xsl: docbook.xsl ../profiling/xsl2profile.xsl
        $(XSLT) $< ../profiling/xsl2profile.xsl $@