diff options
author | hobbs <hobbs> | 2000-11-03 21:23:25 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-11-03 21:23:25 (GMT) |
commit | 6d53093ff7010ba43b5064e0967efca26bbfdaf7 (patch) | |
tree | ead378226f5954612bd50b235e09cb8d6c866be8 /unix | |
parent | 6ad77ab1b4cf1373427365beb9b285cc2e336dbd (diff) | |
download | tcl-6d53093ff7010ba43b5064e0967efca26bbfdaf7.zip tcl-6d53093ff7010ba43b5064e0967efca26bbfdaf7.tar.gz tcl-6d53093ff7010ba43b5064e0967efca26bbfdaf7.tar.bz2 |
* tools/tcl.wse.in: updated for unversioning of library dirs
* unix/Makefile.in (install-libraries, dist):
* win/makefile.vc (install-libraries):
* win/Makefile.in (install-libraries): updated to install
unversioned library directories into versioned directories.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 52 |
1 files changed, 39 insertions, 13 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 381a233..29e0349 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.69 2000/09/29 21:43:32 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.70 2000/11/03 21:23:26 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -554,7 +554,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http2.3 http1.0 opt0.4 encoding msgcat1.0 tcltest1.0; \ + @for i in http2.3 http1.0 opt0.4 encoding msgcat1.2 tcltest2.0; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -577,13 +577,30 @@ install-libraries: libraries do \ $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR); \ done; - @for i in http2.3 http1.0 opt0.4 msgcat1.0 tcltest1.0; \ + @echo "Installing library http1.0 directory"; + @for j in $(TOP_DIR)/library/http1.0/*.tcl ; \ do \ - echo "Installing library $$i directory"; \ - for j in $(TOP_DIR)/library/$$i/*.tcl ; \ - do \ - $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/$$i; \ - done; \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/http1.0; \ + done; + @echo "Installing library http2.3 directory"; + @for j in $(TOP_DIR)/library/http/*.tcl ; \ + do \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/http2.3; \ + done; + @echo "Installing library opt0.4 directory"; + @for j in $(TOP_DIR)/library/opt/*.tcl ; \ + do \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/opt0.4; \ + done; + @echo "Installing library msgcat1.2 directory"; + @for j in $(TOP_DIR)/library/msgcat/*.tcl ; \ + do \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.2; \ + done; + @echo "Installing library tcltest2.0 directory"; + @for j in $(TOP_DIR)/library/tcltest/*.tcl ; \ + do \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.0; \ done; @echo "Installing library encoding directory"; @for i in $(TOP_DIR)/library/encoding/*.enc ; do \ @@ -1126,11 +1143,20 @@ dist: $(UNIX_DIR)/configure mkdir $(DISTDIR)/library cp -p $(TOP_DIR)/license.terms $(TOP_DIR)/library/*.tcl \ $(TOP_DIR)/library/tclIndex $(DISTDIR)/library - for i in http2.3 http1.0 opt0.4 msgcat1.0 reg1.0 dde1.1 tcltest1.0; \ - do \ - mkdir $(DISTDIR)/library/$$i ;\ - cp -p $(TOP_DIR)/library/$$i/*.tcl $(DISTDIR)/library/$$i; \ - done; + mkdir $(DISTDIR)/library/http1.0 + cp -p $(TOP_DIR)/library/http1.0/*.tcl $(DISTDIR)/library/http1.0 + mkdir $(DISTDIR)/library/http2.3 + cp -p $(TOP_DIR)/library/http/*.tcl $(DISTDIR)/library/http2.3 + mkdir $(DISTDIR)/library/opt0.4 + cp -p $(TOP_DIR)/library/opt/*.tcl $(DISTDIR)/library/opt0.4 + mkdir $(DISTDIR)/library/msgcat1.2 + cp -p $(TOP_DIR)/library/msgcat/*.tcl $(DISTDIR)/library/msgcat1.2 + mkdir $(DISTDIR)/library/reg1.0 + cp -p $(TOP_DIR)/library/reg/*.tcl $(DISTDIR)/library/reg1.0 + mkdir $(DISTDIR)/library/dde1.1 + cp -p $(TOP_DIR)/library/dde/*.tcl $(DISTDIR)/library/dde1.1 + mkdir $(DISTDIR)/library/tcltest2.0 + cp -p $(TOP_DIR)/library/tcltest/*.tcl $(DISTDIR)/library/tcltest2.0 mkdir $(DISTDIR)/library/encoding cp -p $(TOP_DIR)/library/encoding/*.enc $(DISTDIR)/library/encoding mkdir $(DISTDIR)/doc |