From: Michael Smith Date: Thu, 27 Mar 2008 01:06:26 +0000 (+0000) Subject: echo information about each file as it is getting built (to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=854ed917f9bcc6a6214757a9866f1910117271fb;p=docbook-dsssl echo information about each file as it is getting built (to prevent it from looking like the build is just hanging) --- diff --git a/xsl/xhtml/Makefile b/xsl/xhtml/Makefile index 3c5124486..7de7a4c28 100644 --- a/xsl/xhtml/Makefile +++ b/xsl/xhtml/Makefile @@ -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 $@