diff options
author | redman <redman> | 1999-07-13 22:23:44 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-13 22:23:44 (GMT) |
commit | 20317564b93519a34429e3c276553da52f042dae (patch) | |
tree | c64b8824603df005185359b27a4e0e17d467e69d /win/Makefile.in | |
parent | dff386f7a7bd202aa409d20e4512b65af07ac24f (diff) | |
download | tcl-20317564b93519a34429e3c276553da52f042dae.zip tcl-20317564b93519a34429e3c276553da52f042dae.tar.gz tcl-20317564b93519a34429e3c276553da52f042dae.tar.bz2 |
Makefile.in: fixed cat32.exe build
makefile.vc: fixed calling tcltest.exe
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index d45c7ea..8610d34 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.14 1999/07/08 23:17:56 stanton Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.15 1999/07/13 22:23:44 redman Exp $ VERSION = @TCL_VERSION@ @@ -283,8 +283,10 @@ $(TCLSH): $(TCL_LIB_FILE) $(TCLSH_OBJS) $(TCLTEST): $(TCL_LIB_FILE) $(TCLTEST_OBJS) $(CAT32) $(CC) $(CFLAGS) $(TCLTEST_OBJS) $(TCL_LIB_FILE) $(LIBS) $(CC_EXENAME) -$(CAT32): cat.c +cat32.obj: cat.c $(CC) -c $(CC_SWITCHES) $(DEPARG) $(CC_OBJNAME) + +$(CAT32): cat32.obj $(CC) $(CFLAGS) cat32.obj $(CC_EXENAME) -link $(LDFLAGS_CONSOLE) # The following targets are configured by autoconf to generate either |