diff options
author | hobbs <hobbs> | 2000-02-01 11:49:39 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-02-01 11:49:39 (GMT) |
commit | 7f8849b418b11dd785395a3b44af825f7bdcd5ba (patch) | |
tree | b830881bac3979267f035dc7dc3f909d48583555 /win | |
parent | 1b26df6269c0299c3074575d0d8b978dc7e3c96a (diff) | |
download | tcl-7f8849b418b11dd785395a3b44af825f7bdcd5ba.zip tcl-7f8849b418b11dd785395a3b44af825f7bdcd5ba.tar.gz tcl-7f8849b418b11dd785395a3b44af825f7bdcd5ba.tar.bz2 |
* win/Makefile.in (install-*): reduced verbosity of install
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index cb625e6..686c2d1 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.24 1999/12/07 00:40:55 wart Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.25 2000/02/01 11:49:39 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -446,21 +446,21 @@ install-libraries: else true; \ fi; \ done; + @echo "Installing header files"; @for i in "$(GENERIC_DIR)/tcl.h" "$(GENERIC_DIR)/tclDecls.h" ; \ do \ - echo "Installing $$i"; \ $(COPY) "$$i" "$(INCLUDE_INSTALL_DIR)"; \ done; + @echo "Installing library files to $(SCRIPT_INSTALL_DIR)"; @for i in $(ROOT_DIR)/library/*.tcl $(ROOT_DIR)/library/tclIndex; \ do \ - echo "Installing $$i"; \ $(COPY) "$$i" "$(SCRIPT_INSTALL_DIR)"; \ done; @for i in http2.1 http1.0 opt0.4 msgcat1.0 tcltest1.0; \ do \ + echo "Installing library $$i directory"; \ for j in $(ROOT_DIR)/library/$$i/*.tcl; \ do \ - echo "Installing $$j"; \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/$$i"; \ done; \ done; |