diff options
author | redman <redman> | 2000-04-18 23:26:44 (GMT) |
---|---|---|
committer | redman <redman> | 2000-04-18 23:26:44 (GMT) |
commit | d7e6ff2189631591abad9b2325b88d9d926a0c9b (patch) | |
tree | 6cd2f22cc765f4d815fc25669bf0627af0bcfca1 /win/Makefile.in | |
parent | 9db70a7fa25b5bfa023e5339eeeb45e7779bd98d (diff) | |
download | tcl-d7e6ff2189631591abad9b2325b88d9d926a0c9b.zip tcl-d7e6ff2189631591abad9b2325b88d9d926a0c9b.tar.gz tcl-d7e6ff2189631591abad9b2325b88d9d926a0c9b.tar.bz2 |
* win/Makefile.in:
* win/tcl.rc:
* win/tclsh.rc:
* win/tclsh.ico: Modified copyright dates in Windows resource
files. Added an icon for tclsh.exe.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index ef9c8b4..9ef0363 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.30 2000/04/05 00:42:42 welch Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.31 2000/04/18 23:26:45 redman Exp $ VERSION = @TCL_VERSION@ @@ -156,6 +156,7 @@ VPATH = $(GENERIC_DIR)@VPSEP@$(WIN_DIR)@VPSEP@$(COMPAT_DIR) # : AR = @AR@ CC = @CC@ +RC = @RC@ AC_FLAGS = @EXTRA_CFLAGS@ @DEFS@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ @@ -310,11 +311,13 @@ winhelp: $(ROOT_DIR)/tools/man2help.tcl $(MAN2TCL) $(MAN2TCL): $(ROOT_DIR)/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) +$(TCLSH): $(TCL_LIB_FILE) $(TCLSH_OBJS) tclsh.res + $(CC) $(CFLAGS) $(TCLSH_OBJS) $(TCL_LIB_FILE) $(LIBS) \ + tclsh.res $(CC_EXENAME) -$(TCLTEST): $(TCL_LIB_FILE) $(TCLTEST_OBJS) $(CAT32) - $(CC) $(CFLAGS) $(TCLTEST_OBJS) $(TCL_LIB_FILE) $(LIBS) $(CC_EXENAME) +$(TCLTEST): $(TCL_LIB_FILE) $(TCLTEST_OBJS) $(CAT32) tclsh.res + $(CC) $(CFLAGS) $(TCLTEST_OBJS) $(TCL_LIB_FILE) $(LIBS) \ + tclsh.res $(CC_EXENAME) cat32.${OBJEXT}: cat.c $(CC) -c $(CC_SWITCHES) $(DEPARG) $(CC_OBJNAME) @@ -329,9 +332,9 @@ ${TCL_STUB_LIB_FILE}: ${STUB_OBJS} @$(RM) ${TCL_STUB_LIB_FILE} @MAKE_LIB@ ${STUB_OBJS} -${TCL_DLL_FILE}: ${TCL_OBJS} +${TCL_DLL_FILE}: ${TCL_OBJS} tcl.res @$(RM) ${TCL_DLL_FILE} - @MAKE_DLL@ ${TCL_OBJS} + @MAKE_DLL@ ${TCL_OBJS} tcl.res ${TCL_LIB_FILE}: ${TCL_OBJS} @$(RM) ${TCL_LIB_FILE} @@ -356,6 +359,8 @@ ${PIPE_DLL_FILE}: ${PIPE_OBJS} # automatically added. .SUFFIXES: .${OBJEXT} +.SUFFIXES: .res +.SUFFIXES: .rc # Special case object targets @@ -397,6 +402,10 @@ tclStubLib.${OBJEXT}: tclStubLib.c .c.${OBJEXT}: $(CC) -c $(CC_SWITCHES) -DBUILD_tcl ${DEPARG} $(CC_OBJNAME) +.rc.res: + $(RC) -fo $@ -r -i "$(GENERIC_DIR_NATIVE)" $(DEPARG) + + install: all install-binaries install-libraries install-doc install-binaries: |