diff options
author | hobbs <hobbs> | 1999-08-19 03:00:26 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-08-19 03:00:26 (GMT) |
commit | 3623d06f54ae85532a4f9853ef274227b3540fae (patch) | |
tree | 2c79add9bad401541b8bdbee1746c46e187b21ed /unix | |
parent | e2a4ee1ac299755cdde4fa7f96283b7fe91987d8 (diff) | |
download | tcl-3623d06f54ae85532a4f9853ef274227b3540fae.zip tcl-3623d06f54ae85532a4f9853ef274227b3540fae.tar.gz tcl-3623d06f54ae85532a4f9853ef274227b3540fae.tar.bz2 |
1999-08-18 Jeff Hobbs <hobbs@scriptics.com>
* unix/Makefile.in: changed the dependency structure so that
install-* is dependent on * (ie - install-binaries is dependent
on binaries).
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index df0cc5e..ed7422f 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.44 1999/08/11 20:51:54 redman Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.45 1999/08/19 03:00:26 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -485,13 +485,13 @@ dltest/Makefile: $(DLTEST_DIR)/configure $(DLTEST_DIR)/Makefile.in tclConfig.sh cd dltest; if test -f configure; then ./configure; else \ $(DLTEST_DIR)/configure; fi -install: all install-binaries install-libraries install-doc +install: install-binaries install-libraries install-doc # Note: before running ranlib below, must cd to target directory because # some ranlibs write to current directory, and this might not always be # possible (e.g. if installing as root). -install-binaries: +install-binaries: binaries @for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \ do \ if [ ! -d $$i ] ; then \ @@ -521,7 +521,7 @@ install-binaries: $(LIB_INSTALL_DIR)/$(TCL_STUB_LIB_FILE); \ fi -install-libraries: +install-libraries: libraries @for i in $(INSTALL_ROOT)$(prefix)/lib $(INCLUDE_INSTALL_DIR) \ $(SCRIPT_INSTALL_DIR); \ do \ @@ -565,7 +565,7 @@ install-libraries: $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/encoding; \ done; -install-doc: +install-doc: doc @chmod +x $(UNIX_DIR)/mkLinks @for i in $(MAN_INSTALL_DIR) $(MAN1_INSTALL_DIR) $(MAN3_INSTALL_DIR) $(MANN_INSTALL_DIR) ; \ do \ |