diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-26 14:38:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-26 14:38:35 (GMT) |
commit | 42d4d24dbd5e820e6f3e0d50b3a619ee6dc0f8d7 (patch) | |
tree | a8d7630b12ddf60ab8264a7f04d71dd92b8b7874 /win | |
parent | 43489532dea0636fb88a85b2b5fa8097b27166da (diff) | |
download | tcl-42d4d24dbd5e820e6f3e0d50b3a619ee6dc0f8d7.zip tcl-42d4d24dbd5e820e6f3e0d50b3a619ee6dc0f8d7.tar.gz tcl-42d4d24dbd5e820e6f3e0d50b3a619ee6dc0f8d7.tar.bz2 |
Split tclCompCmds.c into two pieces to improve developer sanity.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 3 | ||||
-rw-r--r-- | win/makefile.bc | 1 | ||||
-rw-r--r-- | win/makefile.vc | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index d7e1041..2a5e97e 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.171 2010/02/13 18:11:06 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.172 2010/02/26 14:38:36 dkf Exp $ VERSION = @TCL_VERSION@ @@ -225,6 +225,7 @@ GENERIC_OBJS = \ tclCmdIL.$(OBJEXT) \ tclCmdMZ.$(OBJEXT) \ tclCompCmds.$(OBJEXT) \ + tclCompCmdsSZ.$(OBJEXT) \ tclCompExpr.$(OBJEXT) \ tclCompile.$(OBJEXT) \ tclConfig.$(OBJEXT) \ diff --git a/win/makefile.bc b/win/makefile.bc index c66acfd..968805a 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -202,6 +202,7 @@ TCLOBJS = \ $(TMPDIR)\tclCmdIL.obj \ $(TMPDIR)\tclCmdMZ.obj \ $(TMPDIR)\tclCompCmds.obj \ + $(TMPDIR)\tclCompCmdsSZ.obj \ $(TMPDIR)\tclCompExpr.obj \ $(TMPDIR)\tclCompile.obj \ $(TMPDIR)\tclConfig.obj \ diff --git a/win/makefile.vc b/win/makefile.vc index 99718f2..b72bb4a 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -13,7 +13,7 @@ # Copyright (c) 2003-2008 Pat Thoyts. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.206 2010/02/13 18:11:06 dkf Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.207 2010/02/26 14:38:37 dkf Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -262,6 +262,7 @@ COREOBJS = \ $(TMP_DIR)\tclCmdIL.obj \ $(TMP_DIR)\tclCmdMZ.obj \ $(TMP_DIR)\tclCompCmds.obj \ + $(TMP_DIR)\tclCompCmdsSZ.obj \ $(TMP_DIR)\tclCompExpr.obj \ $(TMP_DIR)\tclCompile.obj \ $(TMP_DIR)\tclConfig.obj \ |