diff options
author | das <das> | 2003-07-23 15:40:39 (GMT) |
---|---|---|
committer | das <das> | 2003-07-23 15:40:39 (GMT) |
commit | 5cc61e2eb64eeec7fe4d7da197a6044781805915 (patch) | |
tree | 469185036179df4549632e51cfafbd98d0400d47 /unix | |
parent | 8ec43e75e59a28d15ca560fc3cae5fd50d93d334 (diff) | |
download | tcl-5cc61e2eb64eeec7fe4d7da197a6044781805915.zip tcl-5cc61e2eb64eeec7fe4d7da197a6044781805915.tar.gz tcl-5cc61e2eb64eeec7fe4d7da197a6044781805915.tar.bz2 |
* unix/Makefile.in: changes to html-tcl & html-tk
targets for compatibility with non-gnu makes.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index bbcf604..1da4b77 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.121.2.3 2003/07/23 05:53:58 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.121.2.4 2003/07/23 15:40:39 das Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1344,12 +1344,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 |