diff options
author | wart <wart> | 1999-08-26 18:24:18 (GMT) |
---|---|---|
committer | wart <wart> | 1999-08-26 18:24:18 (GMT) |
commit | 14dc0af1b37956d5a1000f41d5acc0b04752b7e7 (patch) | |
tree | 6b190a839d8c6be317e88ed40e8903d562bc3ce9 /win | |
parent | 424252fcf0ca63e8ac6d98d1f99ebe494d43a991 (diff) | |
download | tk-14dc0af1b37956d5a1000f41d5acc0b04752b7e7.zip tk-14dc0af1b37956d5a1000f41d5acc0b04752b7e7.tar.gz tk-14dc0af1b37956d5a1000f41d5acc0b04752b7e7.tar.bz2 |
Added "make doc" target that copies the man.macros file from Tcl.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index e9c9a97..ee28707 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.8 1999/07/29 23:01:43 redman Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.9 1999/08/26 18:24:18 wart Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -335,7 +335,10 @@ binaries: @LIBRARIES@ $(WISH) libraries: -doc: +$(ROOT_DIR)/doc/man.macros: + $(INSTALL_DATA) @TCL_SRC_DIR@/../doc/man.macros $(ROOT_DIR)/doc/man.macros + +doc: $(ROOT_DIR)/doc/man.macros test: binaries $(TKTEST) @TCL_LIBRARY="$(TCL_SRC_DIR_NATIVE)/../library"; export TCL_LIBRARY; \ |