diff options
author | dgp <dgp@users.sourceforge.net> | 2010-09-22 13:35:26 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2010-09-22 13:35:26 (GMT) |
commit | e87822d9a4f5e4cbfa1cb0afe3a0535a069969b2 (patch) | |
tree | 324374ca6e6144edc139a197d2406ac4a4e5f858 /unix | |
parent | c97721f6ea445153b3b9bd1d6dc3f4f9ad551fdd (diff) | |
download | tcl-e87822d9a4f5e4cbfa1cb0afe3a0535a069969b2.zip tcl-e87822d9a4f5e4cbfa1cb0afe3a0535a069969b2.tar.gz tcl-e87822d9a4f5e4cbfa1cb0afe3a0535a069969b2.tar.bz2 |
Improved readability of tcl+pkgs builds and tests
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4006bf0..8128521 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.306 2010/09/16 17:49:41 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.307 2010/09/22 13:35:26 dgp Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1661,7 +1661,7 @@ packages: configure-packages ${STUB_LIB_FILE} pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ echo "Building package '$$pkg'"; \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE); ) || exit $$?; \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory; ) || exit $$?; \ fi; \ fi; \ done @@ -1672,7 +1672,7 @@ install-packages: packages pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ echo "Installing package '$$pkg'"; \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) install \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory install \ "DESTDIR=$(INSTALL_ROOT)"; ) || exit $$?; \ fi; \ fi; \ @@ -1683,8 +1683,10 @@ test-packages: tcltest packages if [ -d $$i ]; then \ pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ + echo ""; \ + echo ""; \ echo "Testing package '$$pkg'"; \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory \ "@LD_LIBRARY_PATH_VAR@=../..:$${@LD_LIBRARY_PATH_VAR@}" \ "TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" \ "TCLLIBPATH=../../pkgs" test \ @@ -1698,7 +1700,7 @@ clean-packages: if [ -d $$i ]; then \ pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) clean; ) \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory clean; ) \ fi; \ fi; \ done @@ -1708,7 +1710,7 @@ distclean-packages: if [ -d $$i ]; then \ pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) distclean; ) \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory distclean; ) \ fi; \ rm -rf $(PKG_DIR)/$$pkg; \ fi; \ @@ -1722,7 +1724,7 @@ dist-packages: configure-packages if [ -d $$i ]; then \ pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) dist \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) --no-print-directory dist \ "DIST_ROOT=$(DISTROOT)/pkgs"; ) || exit $$?; \ fi; \ fi; \ |