diff options
author | wart <wart@noemail.net> | 1999-08-26 18:24:18 (GMT) |
---|---|---|
committer | wart <wart@noemail.net> | 1999-08-26 18:24:18 (GMT) |
commit | de76aa5154109a9c3b391379f5ac2d26deaa990f (patch) | |
tree | 6b190a839d8c6be317e88ed40e8903d562bc3ce9 /win | |
parent | f824587e5dfcd6fc8199429d0a62a3768bdd1531 (diff) | |
download | tk-de76aa5154109a9c3b391379f5ac2d26deaa990f.zip tk-de76aa5154109a9c3b391379f5ac2d26deaa990f.tar.gz tk-de76aa5154109a9c3b391379f5ac2d26deaa990f.tar.bz2 |
Added "make doc" target that copies the man.macros file from Tcl.
FossilOrigin-Name: f1364e76b9c4732ee8eadfdf81128f9e7f3b1f48
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; \ |