diff options
author | wart <wart> | 1999-12-07 00:40:55 (GMT) |
---|---|---|
committer | wart <wart> | 1999-12-07 00:40:55 (GMT) |
commit | 49a5e65eb681d3fe39cde8823ad8092c7df4ac3e (patch) | |
tree | 81a0c571c180c376cb2b307f6514be1685798848 /win/Makefile.in | |
parent | 8fdf50b3c1b63aecd77ae7dee8513ae6a8b3fdb1 (diff) | |
download | tcl-49a5e65eb681d3fe39cde8823ad8092c7df4ac3e.zip tcl-49a5e65eb681d3fe39cde8823ad8092c7df4ac3e.tar.gz tcl-49a5e65eb681d3fe39cde8823ad8092c7df4ac3e.tar.bz2 |
Winhelp should build more cleanly now.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 6c64812..cb625e6 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.23 1999/12/07 00:18:32 wart Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.24 1999/12/07 00:40:55 wart Exp $ VERSION = @TCL_VERSION@ @@ -282,7 +282,7 @@ TCLSH_OBJS = tclAppInit.$(OBJEXT) TCL_OBJS = ${GENERIC_OBJS} ${WIN_OBJS} ${COMPAT_OBJS} -TCL_DOCS = $(ROOT_DIR)/doc/*.[13n] +TCL_DOCS = "$(ROOT_DIR_NATIVE)"/doc/*.[13n] all: binaries libraries doc @@ -294,13 +294,13 @@ libraries: doc: -winhelp: $(ROOT_DIR)/tools/man2help.tcl $(MAN2TCL) $(TCL_DOCS) +winhelp: $(ROOT_DIR)/tools/man2help.tcl $(MAN2TCL) TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \ ./$(TCLSH) "$(ROOT_DIR_NATIVE)"/tools/man2help.tcl tcl "$(VER)" $(TCL_DOCS) hcw /c /e tcl.hpj $(MAN2TCL): $(ROOT_DIR)/tools/man2tcl.c - $(CC) $(CFLAGS) $(MAN2TCLFLAGS) -o $(MAN2TCL) "$(ROOT_DIR_NATIVE)"/tools/man2tcl.c + $(CC) $(CFLAGS_OPTIMIZE) $(MAN2TCLFLAGS) -o $(MAN2TCL) "$(ROOT_DIR_NATIVE)"/tools/man2tcl.c $(TCLSH): $(TCL_LIB_FILE) $(TCLSH_OBJS) $(CC) $(CFLAGS) $(TCLSH_OBJS) $(TCL_LIB_FILE) $(LIBS) $(CC_EXENAME) |