diff options
author | wart <wart> | 1999-07-09 21:18:10 (GMT) |
---|---|---|
committer | wart <wart> | 1999-07-09 21:18:10 (GMT) |
commit | d2f2e730e74e90583511791f6ed709a12bd6c1c9 (patch) | |
tree | 3c4c0ad4720c8b254cfe10553a0b790ee9304e7a /unix/Makefile.in | |
parent | c7086983c96b8f24b086ade07965f4a82c0a16a1 (diff) | |
download | tcl-d2f2e730e74e90583511791f6ed709a12bd6c1c9.zip tcl-d2f2e730e74e90583511791f6ed709a12bd6c1c9.tar.gz tcl-d2f2e730e74e90583511791f6ed709a12bd6c1c9.tar.bz2 |
install-man target renamed to "install-doc" to be consistent with TEA spec.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 2f75fac..1e4fd9f 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.37 1999/06/30 05:51:51 hershey Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.38 1999/07/09 21:18:10 wart Exp $ VERSION = @TCL_VERSION@ @@ -484,7 +484,7 @@ 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-man +install: all 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 @@ -562,7 +562,7 @@ install-libraries: $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/encoding; \ done; -install-man: +install-doc: @chmod +x $(UNIX_DIR)/mkLinks @for i in $(MAN_INSTALL_DIR) $(MAN1_INSTALL_DIR) $(MAN3_INSTALL_DIR) $(MANN_INSTALL_DIR) ; \ do \ |