diff options
author | das <das> | 2003-07-23 15:40:24 (GMT) |
---|---|---|
committer | das <das> | 2003-07-23 15:40:24 (GMT) |
commit | a188372659089a30b01c57ababf756df8d86c83c (patch) | |
tree | 080251e11fb86c7db94fff42907bb4a111e9782b | |
parent | 0252cfc65484d150549ddca434a96ec77d1da8bc (diff) | |
download | tcl-a188372659089a30b01c57ababf756df8d86c83c.zip tcl-a188372659089a30b01c57ababf756df8d86c83c.tar.gz tcl-a188372659089a30b01c57ababf756df8d86c83c.tar.bz2 |
* unix/Makefile.in: changes to html-tcl & html-tk
targets for compatibility with non-gnu makes.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | unix/Makefile.in | 14 |
2 files changed, 12 insertions, 5 deletions
@@ -1,5 +1,8 @@ 2003-07-23 Daniel Steffen <das@users.sourceforge.net> + * unix/Makefile.in: changes to html-tcl & html-tk + targets for compatibility with non-gnu makes. + * unix/Makefile.in: added macosx/README to dist target. 2003-07-23 Pat Thoyts <patthoyts@users.sourceforge.net> diff --git a/unix/Makefile.in b/unix/Makefile.in index 5e69d40..2d871c5 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.131 2003/07/23 05:53:43 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.132 2003/07/23 15:40:26 das Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1392,12 +1392,16 @@ allpatch: dist # TOOL_DIR. # -html-tcl: EXTRA_HTML_ARGS=--tcl -html-tk: EXTRA_HTML_ARGS=--tk +html: + $(BUILD_HTML) +html-tcl: + $(BUILD_HTML) --tcl +html-tk: + $(BUILD_HTML) --tk -html html-tcl html-tk: +BUILD_HTML = \ $(TCL_EXE) $(TOOL_DIR)/tcltk-man2html.tcl --htmldir=$(DISTDIR)/html \ - --srcdir=$(TOP_DIR)/.. $(EXTRA_HTML_ARGS) + --srcdir=$(TOP_DIR)/.. # # Target to create a Macintosh version of the distribution. This will |