Got the new structure working with MSVC 4.2.
main_nt.c is gone -- we can use Modules/python.c now.
Added Mark Hammond's module msvcrt.c (untested).
Added several new symbols.
diff --git a/PC/config.c b/PC/config.c
index 97f9de4..39011bc 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -60,6 +60,9 @@
 extern void initthread();
 extern void initcStringIO();
 extern void initcPickle();
+#ifdef WIN32
+extern void initmsvcrt();
+#endif
 
 /* -- ADDMODULE MARKER 1 -- */
 
@@ -98,6 +101,9 @@
 #endif
         {"cStringIO", initcStringIO},
         {"cPickle", initcPickle},
+#ifdef WIN32
+	{"msvcrt", initmsvcrt},
+#endif
 
 /* -- ADDMODULE MARKER 2 -- */
 
diff --git a/PC/main_nt.c b/PC/main_nt.c
deleted file mode 100644
index e174811..0000000
--- a/PC/main_nt.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- C -*- ***********************************************
-Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
-The Netherlands.
-
-                        All Rights Reserved
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
-provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
-supporting documentation, and that the names of Stichting Mathematisch
-Centrum or CWI or Corporation for National Research Initiatives or
-CNRI not be used in advertising or publicity pertaining to
-distribution of the software without specific, written prior
-permission.
-
-While CWI is the initial source for this software, a modified version
-is made available by the Corporation for National Research Initiatives
-(CNRI) at the Internet address ftp://ftp.python.org.
-
-STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
-CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
-DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
-PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-
-******************************************************************/
-
-/* Python interpreter main program */
-
-extern int Py_Main(int, char **);
-
-int
-main(argc, argv)
-	int argc;
-	char **argv;
-{
-	return Py_Main(argc, argv);
-}
diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c
new file mode 100755
index 0000000..dec6285
--- /dev/null
+++ b/PC/msvcrtmodule.c
@@ -0,0 +1,95 @@
+/*********************************************************
+
+	msvcrtmodule.c
+
+	A Python interface to the Microsoft Visual C Runtime
+	Library, providing access to those non-portable, but
+	still useful routines.
+
+	Only ever compiled with an MS compiler, so no attempt
+	has been made to avoid MS language extensions, etc...
+
+***********************************************************/
+#include "Python.h"
+#include "malloc.h"
+// Perform locking operations on a file.
+static PyObject *msvcrt_locking(PyObject *self, PyObject *args)
+{
+	int mode;
+	long nBytes;
+	PyObject *obFile;
+	FILE *pFile;
+	if (!PyArg_ParseTuple(args,"O!il:locking", &obFile, PyFile_Type, &mode, &nBytes))
+		return NULL;
+	if (NULL==(pFile = PyFile_AsFile(obFile)))
+		return NULL;
+	if (0 != _locking(_fileno(pFile), mode, nBytes))
+		return PyErr_SetFromErrno(PyExc_IOError);
+	Py_INCREF(Py_None);
+	return Py_None;
+}
+
+// Forces the malloc heap to clean itself up, and free unused blocks
+// back to the OS.
+static PyObject *msvcrt_heapmin(PyObject *self, PyObject *args)
+{
+	if (!PyArg_ParseTuple(args,":heapmin"))
+		return NULL;
+	if (_heapmin()!=0)
+		return PyErr_SetFromErrno(PyExc_MemoryError); // Is this the correct error???
+	Py_INCREF(Py_None);
+	return Py_None;
+}
+
+/*******
+Left this out for now...
+
+// Convert an OS file handle to a Python file object (yay!).
+// This may only work on NT
+static PyObject *msvcrt_open_osfhandle(PyObject *self, PyObject *args)
+{
+	// Note that we get the underlying handle using the long
+	// "abstract" interface.  This will allow either a native integer
+	// or else a Win32 extension PyHANDLE object, which implements an 
+	// int() converter.
+	PyObject *obHandle;
+	PyObject *obInt;
+	int flags;
+	long handle;
+	if (!PyArg_ParseTuple(args,"Oi:open_osfhandle", &obHandle, &flags))
+		return NULL;
+
+	if (NULL==(obInt = PyNumber_Int(obHandle))) {
+		PyErr_Clear();
+		PyErr_SetString(PyExc_TypeError, "The handle param must be an integer, =
+or an object able to be converted to an integer");
+		return NULL;
+	}
+	handle = PyInt_AsLong(obInt);
+	Py_DECREF(obInt);
+	rtHandle = _open_osfhandle(handle, flags);
+	if (rtHandle==-1)
+		return PyErr_SetFromErrno(PyExc_IOError);
+
+  what mode?  Should I just return here, and expose _fdopen 
+  and setvbuf?
+
+	f1=_fdopen(fd1, "w");
+	setvbuf(f1, NULL, _IONBF, 0);
+	f=PyFile_FromFile(f1, cmdstring, "w", fclose);
+
+}
+*****/
+
+/* List of functions exported by this module */
+static struct PyMethodDef msvcrt_functions[] = {
+	{"locking",             msvcrt_locking, 1},
+	{"heapmin",				msvcrt_heapmin, 1},
+	{NULL,			NULL}
+};
+
+__declspec(dllexport) void
+initmsvcrt(void)
+{
+	Py_InitModule("msvcrt", msvcrt_functions);
+}
diff --git a/PC/python_nt.def b/PC/python_nt.def
index 9a6ad9e..038d3d0 100644
--- a/PC/python_nt.def
+++ b/PC/python_nt.def
@@ -54,6 +54,8 @@
 	PySlice_Type DATA
 	Py_InteractiveFlag DATA
 	PyCObject_Type DATA
+	Py_input_hook DATA
+	PyOS_ReadlineFunctionPointer DATA
 
 	_PyObject_New
 	_PyObject_NewVar
@@ -196,21 +198,19 @@
 	PyEval_ReleaseThread
 	PyEval_RestoreThread
 	PyEval_SaveThread
+	PyEval_AcquireLock
+	PyEval_ReleaseLock
 	PyTraceBack_Here
 	PyTraceBack_Print
 	PyImport_AddModule
-	PyImport_Cleanup
 	PyImport_GetModuleDict
 	PyImport_GetMagicNumber
 	PyImport_ImportModule
 	PyImport_ImportFrozenModule
-	PyImport_Init
 	PyImport_ReloadModule
 	PyNumber_Coerce
-	PyBuiltin_Init
 	PyMarshal_Init
 	Py_InitModule4
-	PySys_Init
 	PySys_SetArgv
 	PySys_SetPath
 	PySys_GetObject
@@ -219,7 +219,6 @@
 	Py_CompileString
 	Py_FatalError
 	Py_Exit
-	Py_Cleanup
 	Py_Initialize
 	PyErr_Print
 	PyParser_SimpleParseFile
@@ -350,9 +349,17 @@
 	PyThread_free_sema
 	PyThread_down_sema
 	PyThread_up_sema
-	PyThread_exit_prog
-	PyThread__exit_prog
-	PyThread_create_key
-	PyThread_delete_key
-	PyThread_get_key_value
-	PyThread_set_key_value
+	Py_NewInterpreter
+	Py_EndInterpreter
+	Py_Malloc
+	Py_Realloc
+	Py_Free
+	PyMem_Malloc
+	PyMem_Realloc
+	PyMem_Free
+	PyThreadState_New
+	PyThreadState_Clear
+	PyThreadState_Delete
+	PyInterpreterState_New
+	PyInterpreterState_Clear
+	PyInterpreterState_Delete
diff --git a/PC/vc40.mak b/PC/vc40.mak
index 1428e07..8d07039 100644
--- a/PC/vc40.mak
+++ b/PC/vc40.mak
@@ -37,7 +37,7 @@
 !ENDIF 

 ################################################################################

 # Begin Project

-# PROP Target_Last_Scanned "_tkinter - Win32 Release"

+# PROP Target_Last_Scanned "python15 - Win32 Debug"

 

 !IF  "$(CFG)" == "python15 - Win32 Release"

 

@@ -107,6 +107,7 @@
 	-@erase "$(INTDIR)\methodobject.obj"

 	-@erase "$(INTDIR)\modsupport.obj"

 	-@erase "$(INTDIR)\moduleobject.obj"

+	-@erase "$(INTDIR)\msvcrtmodule.obj"

 	-@erase "$(INTDIR)\myreadline.obj"

 	-@erase "$(INTDIR)\mystrtoul.obj"

 	-@erase "$(INTDIR)\newmodule.obj"

@@ -255,6 +256,7 @@
 	"$(INTDIR)\methodobject.obj" \

 	"$(INTDIR)\modsupport.obj" \

 	"$(INTDIR)\moduleobject.obj" \

+	"$(INTDIR)\msvcrtmodule.obj" \

 	"$(INTDIR)\myreadline.obj" \

 	"$(INTDIR)\mystrtoul.obj" \

 	"$(INTDIR)\newmodule.obj" \

@@ -314,7 +316,7 @@
 ALL : "$(OUTDIR)\python.exe"

 

 CLEAN : 

-	-@erase "$(INTDIR)\main_nt.obj"

+	-@erase "$(INTDIR)\python.obj"

 	-@erase "$(OUTDIR)\python.exe"

 

 "$(OUTDIR)" :

@@ -366,7 +368,7 @@
  odbccp32.lib /nologo /subsystem:console /incremental:no\

  /pdb:"$(OUTDIR)/python.pdb" /machine:I386 /out:"$(OUTDIR)/python.exe" 

 LINK32_OBJS= \

-	"$(INTDIR)\main_nt.obj" \

+	"$(INTDIR)\python.obj" \

 	"$(OUTDIR)\python15.lib"

 

 "$(OUTDIR)\python.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)

@@ -405,9 +407,9 @@
 

 CPP=cl.exe

 # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c

-# ADD CPP /nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL80A2\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c

-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL80A2\include"\

- /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\

+# ADD CPP /nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c

+CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL\include" /D\

+ "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\

  /Fp"$(INTDIR)/_tkinter.pch" /YX /Fo"$(INTDIR)/" /c 

 CPP_OBJS=.\vc40\tmp/

 CPP_SBRS=.\.

@@ -532,6 +534,7 @@
 	-@erase "$(INTDIR)\methodobject.obj"

 	-@erase "$(INTDIR)\modsupport.obj"

 	-@erase "$(INTDIR)\moduleobject.obj"

+	-@erase "$(INTDIR)\msvcrtmodule.obj"

 	-@erase "$(INTDIR)\myreadline.obj"

 	-@erase "$(INTDIR)\mystrtoul.obj"

 	-@erase "$(INTDIR)\newmodule.obj"

@@ -679,6 +682,7 @@
 	"$(INTDIR)\methodobject.obj" \

 	"$(INTDIR)\modsupport.obj" \

 	"$(INTDIR)\moduleobject.obj" \

+	"$(INTDIR)\msvcrtmodule.obj" \

 	"$(INTDIR)\myreadline.obj" \

 	"$(INTDIR)\mystrtoul.obj" \

 	"$(INTDIR)\newmodule.obj" \

@@ -738,12 +742,8 @@
 # Begin Source File

 

 SOURCE=.\Objects\longobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_LONGO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -785,65 +785,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_LONGO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longintrepr.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\listobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_LISTO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -884,64 +832,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_LISTO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-

-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\intobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_INTOB=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -981,63 +878,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_INTOB=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\importdl.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_IMPOR=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1086,72 +933,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_IMPOR=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	".\Python\importdl.h"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-NODEP_CPP_IMPOR=\

-	".\Python\dl.h"\

-	".\Python\macdefs.h"\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\imageop.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_IMAGE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1191,52 +979,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_IMAGE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -1281,12 +1023,8 @@
 # Begin Source File

 

 SOURCE=.\Python\getversion.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETVE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1327,64 +1065,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETVE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\patchlevel.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getplatform.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETPL=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1424,52 +1111,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETPL=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -1490,12 +1131,8 @@
 # Begin Source File

 

 SOURCE=.\Python\getcopyright.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETCO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1535,63 +1172,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETCO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getcompiler.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETCOM=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1631,63 +1218,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETCOM=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\getargs.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETAR=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1727,52 +1264,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETAR=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -1783,7 +1274,6 @@
 

 DEP_CPP_FUNCO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1829,7 +1319,6 @@
 

 DEP_CPP_FUNCO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1878,12 +1367,8 @@
 # Begin Source File

 

 SOURCE=.\Python\frozen.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_FROZE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -1923,63 +1408,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_FROZE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\frameobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_FRAME=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2023,56 +1458,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_FRAME=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\frameobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\opcode.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\structmember.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -2080,7 +1465,6 @@
 SOURCE=.\Objects\floatobject.c

 DEP_CPP_FLOAT=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2131,7 +1515,6 @@
 

 DEP_CPP_FILEO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2178,7 +1561,6 @@
 

 DEP_CPP_FILEO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2228,12 +1610,8 @@
 # Begin Source File

 

 SOURCE=.\Python\errors.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_ERROR=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2273,63 +1651,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_ERROR=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\PC\config.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_CONFI=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2369,63 +1697,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_CONFI=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\complexobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_COMPL=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2466,64 +1744,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_COMPL=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\compile.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_COMPI=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2569,69 +1796,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_COMPI=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\graminit.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\node.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\opcode.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\structmember.h"\

-	".\Include\sysmodule.h"\

-	".\Include\token.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\cobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_COBJE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2671,63 +1842,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_COBJE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\cmathmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_CMATH=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2768,53 +1889,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_CMATH=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -2825,7 +1899,6 @@
 

 DEP_CPP_CLASS=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2870,7 +1943,6 @@
 

 DEP_CPP_CLASS=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2918,12 +1990,8 @@
 # Begin Source File

 

 SOURCE=.\Python\ceval.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_CEVAL=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -2968,68 +2036,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_CEVAL=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\eval.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\frameobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\opcode.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\thread.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\bltinmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_BLTIN=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3073,67 +2086,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_BLTIN=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\eval.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\node.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\binascii.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_BINAS=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3173,63 +2132,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_BINAS=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\audioop.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_AUDIO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3270,64 +2179,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_AUDIO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\arraymodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_ARRAY=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3368,53 +2226,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_ARRAY=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-

-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -3442,12 +2253,8 @@
 # Begin Source File

 

 SOURCE=.\Objects\abstract.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_ABSTR=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3487,52 +2294,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_ABSTR=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -3551,12 +2312,8 @@
 # Begin Source File

 

 SOURCE=.\Objects\typeobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_TYPEO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3596,63 +2353,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_TYPEO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\tupleobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_TUPLE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3692,63 +2399,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_TUPLE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\traceback.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_TRACE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3792,56 +2449,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_TRACE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\frameobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\structmember.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -3867,12 +2474,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\timemodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_TIMEM=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -3917,57 +2520,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_TIMEM=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\myselect.h"\

-	".\Include\mytime.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\TIMEB.H"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-

-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -3977,6 +2529,7 @@
 	".\Include\thread.h"\

 	".\PC\config.h"\

 	".\Python\thread_cthread.h"\

+	".\Python\thread_foobar.h"\

 	".\Python\thread_lwp.h"\

 	".\Python\thread_nt.h"\

 	".\Python\thread_pthread.h"\

@@ -3984,6 +2537,9 @@
 	".\Python\thread_solaris.h"\

 	{$(INCLUDE)}"\sys\TYPES.H"\

 	

+NODEP_CPP_THREA=\

+	"\usr\include\thread.h"\

+	

 

 "$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

@@ -3994,12 +2550,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\structmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_STRUC=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4040,64 +2592,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_STRUC=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\structmember.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_STRUCT=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4138,64 +2639,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_STRUCT=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\structmember.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\stropmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_STROP=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4235,63 +2685,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_STROP=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\stringobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_STRIN=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4332,64 +2732,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_STRIN=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\soundex.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SOUND=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4429,63 +2778,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SOUND=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\signalmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SIGNA=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4520,70 +2819,20 @@
 	".\Include\traceback.h"\

 	".\Include\tupleobject.h"\

 	".\PC\config.h"\

+	{$(INCLUDE)}"\sys\TYPES.H"\

 	

 

 "$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SIGNA=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\thread.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rotormodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_ROTOR=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4624,64 +2873,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_ROTOR=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\rgbimgmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_RGBIM=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4721,52 +2919,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_RGBIM=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -4787,12 +2939,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\regexmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_REGEXM=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4833,64 +2981,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_REGEXM=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\Modules\regexpr.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\rangeobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_RANGE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -4930,64 +3027,14 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_RANGE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\pythonrun.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_PYTHO=\

 	".\Include\abstract.h"\

 	".\Include\bitset.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5035,61 +3082,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_PYTHO=\

-	".\Include\abstract.h"\

-	".\Include\bitset.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\errcode.h"\

-	".\Include\eval.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\grammar.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\marshal.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\node.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\parsetok.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\thread.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -5143,12 +3135,8 @@
 # Begin Source File

 

 SOURCE=.\Objects\object.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_OBJEC=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5188,52 +3176,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_OBJEC=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -5257,12 +3199,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\newmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_NEWMO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5303,64 +3241,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_NEWMO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\marshal.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MARSH=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5403,55 +3290,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MARSH=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longintrepr.h"\

-	".\Include\longobject.h"\

-	".\Include\marshal.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -5486,12 +3324,8 @@
 # Begin Source File

 

 SOURCE=.\Objects\moduleobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MODUL=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5531,63 +3365,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MODUL=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\modsupport.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MODSU=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5627,63 +3411,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MODSU=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\methodobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_METHO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5724,64 +3458,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_METHO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\token.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\md5module.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MD5MO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5822,53 +3505,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MD5MO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\Modules\md5.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -5888,12 +3524,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\mathmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MATHM=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -5934,64 +3566,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MATHM=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\socketmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SOCKE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6033,65 +3614,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SOCKE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\mytime.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-

-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\selectmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SELEC=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6134,66 +3663,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SELEC=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\myselect.h"\

-	".\Include\mytime.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	

-

-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\sysmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SYSMO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6234,64 +3710,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SYSMO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Python\import.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_IMPORT=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6342,74 +3767,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_IMPORT=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\compile.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\errcode.h"\

-	".\Include\eval.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\marshal.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\node.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\token.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	".\Python\importdl.h"\

-	

-NODEP_CPP_IMPORT=\

-	".\Python\macglue.h"\

-	

-

-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\posixmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_POSIX=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6453,67 +3817,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_POSIX=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\mytime.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	{$(INCLUDE)}"\sys\STAT.H"\

-	{$(INCLUDE)}"\sys\TYPES.H"\

-	{$(INCLUDE)}"\sys\UTIME.H"\

-	

-

-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\operator.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_OPERA=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6553,63 +3863,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_OPERA=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\errnomodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_ERRNO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6649,63 +3909,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_ERRNO=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Objects\sliceobject.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_SLICE=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6745,63 +3955,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_SLICE=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\main.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_MAIN_=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6841,52 +4001,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_MAIN_=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -6902,12 +4016,8 @@
 # Begin Source File

 

 SOURCE=.\PC\import_nt.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_IMPORT_=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -6949,65 +4059,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_IMPORT_=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	".\Python\importdl.h"\

-	

-

-"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\PC\getpath_nt.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_GETPA=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7048,64 +4106,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_GETPA=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\osdefs.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\PC\dl_nt.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_DL_NT=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7145,52 +4152,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_DL_NT=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -7208,12 +4169,8 @@
 # Begin Source File

 

 SOURCE=.\Modules\threadmodule.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_THREAD=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7254,53 +4211,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_THREAD=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\thread.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -7346,12 +4256,8 @@
 # Begin Source File

 

 SOURCE=.\Python\pystate.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_PYSTA=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7391,63 +4297,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_PYSTA=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\cStringIO.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_CSTRI=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7488,64 +4344,13 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_CSTRI=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\cStringIO.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\cStringIO.obj" : $(SOURCE) $(DEP_CPP_CSTRI) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

 

 SOURCE=.\Modules\cPickle.c

-

-!IF  "$(CFG)" == "python15 - Win32 Release"

-

 DEP_CPP_CPICK=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7587,54 +4392,6 @@
    $(CPP) $(CPP_PROJ) $(SOURCE)

 

 

-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"

-

-DEP_CPP_CPICK=\

-	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

-	".\Include\ceval.h"\

-	".\Include\classobject.h"\

-	".\Include\cobject.h"\

-	".\Include\complexobject.h"\

-	".\Include\cStringIO.h"\

-	".\Include\dictobject.h"\

-	".\Include\fileobject.h"\

-	".\Include\floatobject.h"\

-	".\Include\funcobject.h"\

-	".\Include\import.h"\

-	".\Include\intobject.h"\

-	".\Include\intrcheck.h"\

-	".\Include\listobject.h"\

-	".\Include\longobject.h"\

-	".\Include\methodobject.h"\

-	".\Include\modsupport.h"\

-	".\Include\moduleobject.h"\

-	".\Include\mymalloc.h"\

-	".\Include\mymath.h"\

-	".\Include\myproto.h"\

-	".\Include\object.h"\

-	".\Include\objimpl.h"\

-	".\Include\pydebug.h"\

-	".\Include\pyerrors.h"\

-	".\Include\pyfpe.h"\

-	".\Include\pystate.h"\

-	".\Include\Python.h"\

-	".\Include\pythonrun.h"\

-	".\Include\rangeobject.h"\

-	".\Include\sliceobject.h"\

-	".\Include\stringobject.h"\

-	".\Include\sysmodule.h"\

-	".\Include\traceback.h"\

-	".\Include\tupleobject.h"\

-	".\PC\config.h"\

-	

-

-"$(INTDIR)\cPickle.obj" : $(SOURCE) $(DEP_CPP_CPICK) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

-!ENDIF 

-

 # End Source File

 ################################################################################

 # Begin Source File

@@ -7642,7 +4399,6 @@
 SOURCE=.\Objects\dictobject.c

 DEP_CPP_DICTO=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7683,6 +4439,52 @@
 

 

 # End Source File

+################################################################################

+# Begin Source File

+

+SOURCE=.\PC\msvcrtmodule.c

+DEP_CPP_MSVCR=\

+	".\Include\abstract.h"\

+	".\Include\ceval.h"\

+	".\Include\classobject.h"\

+	".\Include\cobject.h"\

+	".\Include\complexobject.h"\

+	".\Include\dictobject.h"\

+	".\Include\fileobject.h"\

+	".\Include\floatobject.h"\

+	".\Include\funcobject.h"\

+	".\Include\import.h"\

+	".\Include\intobject.h"\

+	".\Include\intrcheck.h"\

+	".\Include\listobject.h"\

+	".\Include\longobject.h"\

+	".\Include\methodobject.h"\

+	".\Include\modsupport.h"\

+	".\Include\moduleobject.h"\

+	".\Include\mymalloc.h"\

+	".\Include\myproto.h"\

+	".\Include\object.h"\

+	".\Include\objimpl.h"\

+	".\Include\pydebug.h"\

+	".\Include\pyerrors.h"\

+	".\Include\pyfpe.h"\

+	".\Include\pystate.h"\

+	".\Include\Python.h"\

+	".\Include\pythonrun.h"\

+	".\Include\rangeobject.h"\

+	".\Include\sliceobject.h"\

+	".\Include\stringobject.h"\

+	".\Include\sysmodule.h"\

+	".\Include\traceback.h"\

+	".\Include\tupleobject.h"\

+	".\PC\config.h"\

+	

+

+"$(INTDIR)\msvcrtmodule.obj" : $(SOURCE) $(DEP_CPP_MSVCR) "$(INTDIR)"

+   $(CPP) $(CPP_PROJ) $(SOURCE)

+

+

+# End Source File

 # End Target

 ################################################################################

 # Begin Target

@@ -7691,17 +4493,17 @@
 ################################################################################

 # Begin Source File

 

-SOURCE=.\PC\main_nt.c

-

-"$(INTDIR)\main_nt.obj" : $(SOURCE) "$(INTDIR)"

-   $(CPP) $(CPP_PROJ) $(SOURCE)

-

-

+SOURCE=.\vc40\python15.lib

 # End Source File

 ################################################################################

 # Begin Source File

 

-SOURCE=.\vc40\python15.lib

+SOURCE=.\Modules\python.c

+

+"$(INTDIR)\python.obj" : $(SOURCE) "$(INTDIR)"

+   $(CPP) $(CPP_PROJ) $(SOURCE)

+

+

 # End Source File

 # End Target

 ################################################################################

@@ -7714,7 +4516,6 @@
 SOURCE=.\Modules\_tkinter.c

 DEP_CPP__TKIN=\

 	".\Include\abstract.h"\

-	".\Include\bltinmodule.h"\

 	".\Include\ceval.h"\

 	".\Include\classobject.h"\

 	".\Include\cobject.h"\

@@ -7750,6 +4551,11 @@
 	".\Include\traceback.h"\

 	".\Include\tupleobject.h"\

 	".\PC\config.h"\

+	"C:\TCL\include\tcl.h"\

+	"C:\TCL\include\tk.h"\

+	"C:\TCL\include\X11\X.h"\

+	"C:\TCL\include\X11\Xfuncproto.h"\

+	"C:\TCL\include\X11\Xlib.h"\

 	

 

 "$(INTDIR)\_tkinter.obj" : $(SOURCE) $(DEP_CPP__TKIN) "$(INTDIR)"