]> granicus.if.org Git - python/commitdiff
Got the new structure working with MSVC 4.2.
authorGuido van Rossum <guido@python.org>
Thu, 7 Aug 1997 00:11:34 +0000 (00:11 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 7 Aug 1997 00:11:34 +0000 (00:11 +0000)
main_nt.c is gone -- we can use Modules/python.c now.
Added Mark Hammond's module msvcrt.c (untested).
Added several new symbols.

PC/config.c
PC/main_nt.c [deleted file]
PC/msvcrtmodule.c [new file with mode: 0755]
PC/python_nt.def
PC/vc40.mak

index 97f9de424e08f2d0639901edc01997c756e64b02..39011bc9a449ae69b0903100951be23b7080354c 100644 (file)
@@ -60,6 +60,9 @@ extern void inittime();
 extern void initthread();
 extern void initcStringIO();
 extern void initcPickle();
+#ifdef WIN32
+extern void initmsvcrt();
+#endif
 
 /* -- ADDMODULE MARKER 1 -- */
 
@@ -98,6 +101,9 @@ struct _inittab _PyImport_Inittab[] = {
 #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 (file)
index e174811..0000000
+++ /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 (executable)
index 0000000..dec6285
--- /dev/null
@@ -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);
+}
index 9a6ad9e057ced6901fc37b93fd125ad9c67b2505..038d3d09f5cf574565074dc14a157a8ab6798d0d 100644 (file)
@@ -54,6 +54,8 @@ EXPORTS
        PySlice_Type DATA
        Py_InteractiveFlag DATA
        PyCObject_Type DATA
+       Py_input_hook DATA
+       PyOS_ReadlineFunctionPointer DATA
 
        _PyObject_New
        _PyObject_NewVar
@@ -196,21 +198,19 @@ EXPORTS
        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 @@ EXPORTS
        Py_CompileString
        Py_FatalError
        Py_Exit
-       Py_Cleanup
        Py_Initialize
        PyErr_Print
        PyParser_SimpleParseFile
@@ -350,9 +349,17 @@ EXPORTS
        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
index 1428e07c774568ec7035bc7fb5c58f6a021966df..8d070392703d8f86b421b1f1181fb57169a09f2c 100644 (file)
@@ -37,7 +37,7 @@ NULL=nul
 !ENDIF \r
 ################################################################################\r
 # Begin Project\r
-# PROP Target_Last_Scanned "_tkinter - Win32 Release"\r
+# PROP Target_Last_Scanned "python15 - Win32 Debug"\r
 \r
 !IF  "$(CFG)" == "python15 - Win32 Release"\r
 \r
@@ -107,6 +107,7 @@ CLEAN :
        -@erase "$(INTDIR)\methodobject.obj"\r
        -@erase "$(INTDIR)\modsupport.obj"\r
        -@erase "$(INTDIR)\moduleobject.obj"\r
+       -@erase "$(INTDIR)\msvcrtmodule.obj"\r
        -@erase "$(INTDIR)\myreadline.obj"\r
        -@erase "$(INTDIR)\mystrtoul.obj"\r
        -@erase "$(INTDIR)\newmodule.obj"\r
@@ -255,6 +256,7 @@ LINK32_OBJS= \
        "$(INTDIR)\methodobject.obj" \\r
        "$(INTDIR)\modsupport.obj" \\r
        "$(INTDIR)\moduleobject.obj" \\r
+       "$(INTDIR)\msvcrtmodule.obj" \\r
        "$(INTDIR)\myreadline.obj" \\r
        "$(INTDIR)\mystrtoul.obj" \\r
        "$(INTDIR)\newmodule.obj" \\r
@@ -314,7 +316,7 @@ INTDIR=.\vc40\tmp
 ALL : "$(OUTDIR)\python.exe"\r
 \r
 CLEAN : \r
-       -@erase "$(INTDIR)\main_nt.obj"\r
+       -@erase "$(INTDIR)\python.obj"\r
        -@erase "$(OUTDIR)\python.exe"\r
 \r
 "$(OUTDIR)" :\r
@@ -366,7 +368,7 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
  odbccp32.lib /nologo /subsystem:console /incremental:no\\r
  /pdb:"$(OUTDIR)/python.pdb" /machine:I386 /out:"$(OUTDIR)/python.exe" \r
 LINK32_OBJS= \\r
-       "$(INTDIR)\main_nt.obj" \\r
+       "$(INTDIR)\python.obj" \\r
        "$(OUTDIR)\python15.lib"\r
 \r
 "$(OUTDIR)\python.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
@@ -405,9 +407,9 @@ CLEAN :
 \r
 CPP=cl.exe\r
 # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c\r
-# 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\r
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL80A2\include"\\r
/D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\\r
+# 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\r
+CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL\include" /D\\r
+ "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\\r
  /Fp"$(INTDIR)/_tkinter.pch" /YX /Fo"$(INTDIR)/" /c \r
 CPP_OBJS=.\vc40\tmp/\r
 CPP_SBRS=.\.\r
@@ -532,6 +534,7 @@ CLEAN :
        -@erase "$(INTDIR)\methodobject.obj"\r
        -@erase "$(INTDIR)\modsupport.obj"\r
        -@erase "$(INTDIR)\moduleobject.obj"\r
+       -@erase "$(INTDIR)\msvcrtmodule.obj"\r
        -@erase "$(INTDIR)\myreadline.obj"\r
        -@erase "$(INTDIR)\mystrtoul.obj"\r
        -@erase "$(INTDIR)\newmodule.obj"\r
@@ -679,6 +682,7 @@ LINK32_OBJS= \
        "$(INTDIR)\methodobject.obj" \\r
        "$(INTDIR)\modsupport.obj" \\r
        "$(INTDIR)\moduleobject.obj" \\r
+       "$(INTDIR)\msvcrtmodule.obj" \\r
        "$(INTDIR)\myreadline.obj" \\r
        "$(INTDIR)\mystrtoul.obj" \\r
        "$(INTDIR)\newmodule.obj" \\r
@@ -738,12 +742,8 @@ LINK32_OBJS= \
 # Begin Source File\r
 \r
 SOURCE=.\Objects\longobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
 DEP_CPP_LONGO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -785,11 +785,13 @@ DEP_CPP_LONGO=\
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_LONGO=\\r
+SOURCE=.\Objects\listobject.c\r
+DEP_CPP_LISTO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -802,13 +804,11 @@ DEP_CPP_LONGO=\
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
        ".\Include\listobject.h"\\r
-       ".\Include\longintrepr.h"\\r
        ".\Include\longobject.h"\\r
        ".\Include\methodobject.h"\\r
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -825,25 +825,20 @@ DEP_CPP_LONGO=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\listobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_LISTO=\\r
+SOURCE=.\Objects\intobject.c\r
+DEP_CPP_INTOB=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -877,18 +872,19 @@ DEP_CPP_LISTO=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_LISTO=\\r
+SOURCE=.\Python\importdl.c\r
+DEP_CPP_IMPOR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -909,6 +905,7 @@ DEP_CPP_LISTO=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -922,26 +919,27 @@ DEP_CPP_LISTO=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       ".\Python\importdl.h"\\r
+       {$(INCLUDE)}"\sys\STAT.H"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
+NODEP_CPP_IMPOR=\\r
+       ".\Python\dl.h"\\r
+       ".\Python\macdefs.h"\\r
+       ".\Python\macglue.h"\\r
+       \r
 \r
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\intobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_INTOB=\\r
+SOURCE=.\Modules\imageop.c\r
+DEP_CPP_IMAGE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -977,15 +975,56 @@ DEP_CPP_INTOB=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_INTOB=\\r
+SOURCE=.\Parser\grammar1.c\r
+DEP_CPP_GRAMM=\\r
+       ".\Include\bitset.h"\\r
+       ".\Include\grammar.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\Include\pgenheaders.h"\\r
+       ".\Include\pydebug.h"\\r
+       ".\Include\token.h"\\r
+       ".\PC\config.h"\\r
+       \r
+\r
+"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\graminit.c\r
+DEP_CPP_GRAMI=\\r
+       ".\Include\bitset.h"\\r
+       ".\Include\grammar.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\Include\pgenheaders.h"\\r
+       ".\Include\pydebug.h"\\r
+       ".\PC\config.h"\\r
+       \r
+\r
+"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getversion.c\r
+DEP_CPP_GETVE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1006,6 +1045,7 @@ DEP_CPP_INTOB=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\patchlevel.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1021,23 +1061,17 @@ DEP_CPP_INTOB=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\importdl.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_IMPOR=\\r
+SOURCE=.\Python\getplatform.c\r
+DEP_CPP_GETPL=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1058,7 +1092,6 @@ DEP_CPP_IMPOR=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1072,25 +1105,34 @@ DEP_CPP_IMPOR=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       ".\Python\importdl.h"\\r
+       \r
+\r
+"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getmtime.c\r
+DEP_CPP_GETMT=\\r
+       ".\PC\config.h"\\r
        {$(INCLUDE)}"\sys\STAT.H"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
-NODEP_CPP_IMPOR=\\r
-       ".\Python\dl.h"\\r
-       ".\Python\macdefs.h"\\r
-       ".\Python\macglue.h"\\r
-       \r
 \r
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_IMPOR=\\r
+SOURCE=.\Python\getcopyright.c\r
+DEP_CPP_GETCO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1111,7 +1153,6 @@ DEP_CPP_IMPOR=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1125,33 +1166,19 @@ DEP_CPP_IMPOR=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       ".\Python\importdl.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-NODEP_CPP_IMPOR=\\r
-       ".\Python\dl.h"\\r
-       ".\Python\macdefs.h"\\r
-       ".\Python\macglue.h"\\r
        \r
 \r
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\imageop.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_IMAGE=\\r
+SOURCE=.\Python\getcompiler.c\r
+DEP_CPP_GETCOM=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1187,15 +1214,17 @@ DEP_CPP_IMAGE=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_IMAGE=\\r
+SOURCE=.\Python\getargs.c\r
+DEP_CPP_GETAR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1231,48 +1260,7 @@ DEP_CPP_IMAGE=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\grammar1.c\r
-DEP_CPP_GRAMM=\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\token.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\graminit.c\r
-DEP_CPP_GRAMI=\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
+"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -1280,16 +1268,16 @@ DEP_CPP_GRAMI=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getversion.c\r
+SOURCE=.\Objects\funcobject.c\r
 \r
 !IF  "$(CFG)" == "python15 - Win32 Release"\r
 \r
-DEP_CPP_GETVE=\\r
+DEP_CPP_FUNCO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -1307,7 +1295,6 @@ DEP_CPP_GETVE=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\patchlevel.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1317,24 +1304,25 @@ DEP_CPP_GETVE=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
 !ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
 \r
-DEP_CPP_GETVE=\\r
+DEP_CPP_FUNCO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -1352,7 +1340,6 @@ DEP_CPP_GETVE=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\patchlevel.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1362,13 +1349,14 @@ DEP_CPP_GETVE=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -1378,13 +1366,9 @@ DEP_CPP_GETVE=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getplatform.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_GETPL=\\r
+SOURCE=.\Python\frozen.c\r
+DEP_CPP_FROZE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1420,22 +1404,26 @@ DEP_CPP_GETPL=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"\r
+"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_GETPL=\\r
+SOURCE=.\Objects\frameobject.c\r
+DEP_CPP_FRAME=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
+       ".\Include\frameobject.h"\\r
        ".\Include\funcobject.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
@@ -1449,6 +1437,7 @@ DEP_CPP_GETPL=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1458,30 +1447,61 @@ DEP_CPP_GETPL=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"\r
+"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getmtime.c\r
-DEP_CPP_GETMT=\\r
+SOURCE=.\Objects\floatobject.c\r
+DEP_CPP_FLOAT=\\r
+       ".\Include\abstract.h"\\r
+       ".\Include\ceval.h"\\r
+       ".\Include\classobject.h"\\r
+       ".\Include\cobject.h"\\r
+       ".\Include\complexobject.h"\\r
+       ".\Include\dictobject.h"\\r
+       ".\Include\fileobject.h"\\r
+       ".\Include\floatobject.h"\\r
+       ".\Include\funcobject.h"\\r
+       ".\Include\import.h"\\r
+       ".\Include\intobject.h"\\r
+       ".\Include\intrcheck.h"\\r
+       ".\Include\listobject.h"\\r
+       ".\Include\longobject.h"\\r
+       ".\Include\methodobject.h"\\r
+       ".\Include\modsupport.h"\\r
+       ".\Include\moduleobject.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\Include\object.h"\\r
+       ".\Include\objimpl.h"\\r
+       ".\Include\pydebug.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\Include\pyfpe.h"\\r
+       ".\Include\pystate.h"\\r
+       ".\Include\Python.h"\\r
+       ".\Include\pythonrun.h"\\r
+       ".\Include\rangeobject.h"\\r
+       ".\Include\sliceobject.h"\\r
+       ".\Include\stringobject.h"\\r
+       ".\Include\sysmodule.h"\\r
+       ".\Include\traceback.h"\\r
+       ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)"\r
+"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -1489,13 +1509,12 @@ DEP_CPP_GETMT=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getcopyright.c\r
+SOURCE=.\Objects\fileobject.c\r
 \r
 !IF  "$(CFG)" == "python15 - Win32 Release"\r
 \r
-DEP_CPP_GETCO=\\r
+DEP_CPP_FILEO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1525,21 +1544,23 @@ DEP_CPP_GETCO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\STAT.H"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"\r
+"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
 !ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
 \r
-DEP_CPP_GETCO=\\r
+DEP_CPP_FILEO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1569,13 +1590,16 @@ DEP_CPP_GETCO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\STAT.H"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"\r
+"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -1585,13 +1609,9 @@ DEP_CPP_GETCO=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getcompiler.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_GETCOM=\\r
+SOURCE=.\Python\errors.c\r
+DEP_CPP_ERROR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1627,15 +1647,17 @@ DEP_CPP_GETCOM=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"\r
+"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_GETCOM=\\r
+SOURCE=.\PC\config.c\r
+DEP_CPP_CONFI=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1671,23 +1693,17 @@ DEP_CPP_GETCOM=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"\r
+"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getargs.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_GETAR=\\r
+SOURCE=.\Objects\complexobject.c\r
+DEP_CPP_COMPL=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1705,6 +1721,7 @@ DEP_CPP_GETAR=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -1723,23 +1740,27 @@ DEP_CPP_GETAR=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"\r
+"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_GETAR=\\r
+SOURCE=.\Python\compile.c\r
+DEP_CPP_COMPI=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
+       ".\Include\graminit.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
@@ -1750,8 +1771,10 @@ DEP_CPP_GETAR=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -1761,33 +1784,28 @@ DEP_CPP_GETAR=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"\r
+"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\funcobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_FUNCO=\\r
+SOURCE=.\Objects\cobject.c\r
+DEP_CPP_COBJE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -1814,26 +1832,26 @@ DEP_CPP_FUNCO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
+"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_FUNCO=\\r
+SOURCE=.\Modules\cmathmodule.c\r
+DEP_CPP_CMATH=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -1848,6 +1866,7 @@ DEP_CPP_FUNCO=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -1860,30 +1879,26 @@ DEP_CPP_FUNCO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
+"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\frozen.c\r
+SOURCE=.\Objects\classobject.c\r
 \r
 !IF  "$(CFG)" == "python15 - Win32 Release"\r
 \r
-DEP_CPP_FROZE=\\r
+DEP_CPP_CLASS=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1913,21 +1928,21 @@ DEP_CPP_FROZE=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"\r
+"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
 !ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
 \r
-DEP_CPP_FROZE=\\r
+DEP_CPP_CLASS=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -1957,13 +1972,14 @@ DEP_CPP_FROZE=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"\r
+"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -1973,19 +1989,16 @@ DEP_CPP_FROZE=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\frameobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_FRAME=\\r
+SOURCE=.\Python\ceval.c\r
+DEP_CPP_CEVAL=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
+       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\frameobject.h"\\r
@@ -2012,31 +2025,33 @@ DEP_CPP_FRAME=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"\r
+"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_FRAME=\\r
+SOURCE=.\Python\bltinmodule.c\r
+DEP_CPP_BLTIN=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
+       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
-       ".\Include\frameobject.h"\\r
        ".\Include\funcobject.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
@@ -2047,10 +2062,11 @@ DEP_CPP_FRAME=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -2060,27 +2076,23 @@ DEP_CPP_FRAME=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"\r
+"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\floatobject.c\r
-DEP_CPP_FLOAT=\\r
+SOURCE=.\Modules\binascii.c\r
+DEP_CPP_BINAS=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2098,7 +2110,6 @@ DEP_CPP_FLOAT=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2117,7 +2128,7 @@ DEP_CPP_FLOAT=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"\r
+"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -2125,13 +2136,9 @@ DEP_CPP_FLOAT=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\fileobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_FILEO=\\r
+SOURCE=.\Modules\audioop.c\r
+DEP_CPP_AUDIO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2149,6 +2156,7 @@ DEP_CPP_FILEO=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2161,24 +2169,23 @@ DEP_CPP_FILEO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
+"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_FILEO=\\r
+SOURCE=.\Modules\arraymodule.c\r
+DEP_CPP_ARRAY=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2208,32 +2215,46 @@ DEP_CPP_FILEO=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
+"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\errors.c\r
+SOURCE=.\Parser\acceler.c\r
+DEP_CPP_ACCEL=\\r
+       ".\Include\bitset.h"\\r
+       ".\Include\grammar.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\Include\node.h"\\r
+       ".\Include\pgenheaders.h"\\r
+       ".\Include\pydebug.h"\\r
+       ".\Include\token.h"\\r
+       ".\Parser\parser.h"\\r
+       ".\PC\config.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_ERROR=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\abstract.c\r
+DEP_CPP_ABSTR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2269,15 +2290,30 @@ DEP_CPP_ERROR=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\r
+"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_ERROR=\\r
+SOURCE=.\Modules\yuvconvert.c\r
+DEP_CPP_YUVCO=\\r
+       ".\Modules\yuv.h"\\r
+       \r
+\r
+"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\typeobject.c\r
+DEP_CPP_TYPEO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2313,23 +2349,17 @@ DEP_CPP_ERROR=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\r
+"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\PC\config.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_CONFI=\\r
+SOURCE=.\Objects\tupleobject.c\r
+DEP_CPP_TUPLE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2365,22 +2395,26 @@ DEP_CPP_CONFI=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\r
+"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_CONFI=\\r
+SOURCE=.\Python\traceback.c\r
+DEP_CPP_TRACE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
+       ".\Include\frameobject.h"\\r
        ".\Include\funcobject.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
@@ -2394,6 +2428,7 @@ DEP_CPP_CONFI=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -2403,74 +2438,44 @@ DEP_CPP_CONFI=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
+       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\r
+"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\complexobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_COMPL=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
+SOURCE=.\Parser\tokenizer.c\r
+DEP_CPP_TOKEN=\\r
+       ".\Include\errcode.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
+       ".\Include\pgenheaders.h"\\r
        ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
+       ".\Include\token.h"\\r
+       ".\Parser\tokenizer.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"\r
+"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_COMPL=\\r
+SOURCE=.\Modules\timemodule.c\r
+DEP_CPP_TIMEM=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2490,6 +2495,8 @@ DEP_CPP_COMPL=\
        ".\Include\mymalloc.h"\\r
        ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\myselect.h"\\r
+       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2505,35 +2512,54 @@ DEP_CPP_COMPL=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\TIMEB.H"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"\r
+"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\compile.c\r
+SOURCE=.\Python\thread.c\r
+DEP_CPP_THREA=\\r
+       ".\Include\thread.h"\\r
+       ".\PC\config.h"\\r
+       ".\Python\thread_cthread.h"\\r
+       ".\Python\thread_foobar.h"\\r
+       ".\Python\thread_lwp.h"\\r
+       ".\Python\thread_nt.h"\\r
+       ".\Python\thread_pthread.h"\\r
+       ".\Python\thread_sgi.h"\\r
+       ".\Python\thread_solaris.h"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
+       \r
+NODEP_CPP_THREA=\\r
+       "\usr\include\thread.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_COMPI=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\structmodule.c\r
+DEP_CPP_STRUC=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
-       ".\Include\graminit.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
@@ -2543,11 +2569,10 @@ DEP_CPP_COMPI=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -2557,33 +2582,31 @@ DEP_CPP_COMPI=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"\r
+"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_COMPI=\\r
+SOURCE=.\Python\structmember.c\r
+DEP_CPP_STRUCT=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
-       ".\Include\graminit.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
@@ -2594,10 +2617,8 @@ DEP_CPP_COMPI=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -2609,29 +2630,22 @@ DEP_CPP_COMPI=\
        ".\Include\stringobject.h"\\r
        ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"\r
+"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\cobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_COBJE=\\r
+SOURCE=.\Modules\stropmodule.c\r
+DEP_CPP_STROP=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2667,15 +2681,17 @@ DEP_CPP_COBJE=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"\r
+"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_COBJE=\\r
+SOURCE=.\Objects\stringobject.c\r
+DEP_CPP_STRIN=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2693,6 +2709,7 @@ DEP_CPP_COBJE=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2711,23 +2728,17 @@ DEP_CPP_COBJE=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"\r
+"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\cmathmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_CMATH=\\r
+SOURCE=.\Modules\soundex.c\r
+DEP_CPP_SOUND=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2745,7 +2756,6 @@ DEP_CPP_CMATH=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2764,15 +2774,17 @@ DEP_CPP_CMATH=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
+"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_CMATH=\\r
+SOURCE=.\Modules\signalmodule.c\r
+DEP_CPP_SIGNA=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2790,7 +2802,6 @@ DEP_CPP_CMATH=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2804,28 +2815,24 @@ DEP_CPP_CMATH=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
+"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\classobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_CLASS=\\r
+SOURCE=.\Modules\rotormodule.c\r
+DEP_CPP_ROTOR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2843,6 +2850,7 @@ DEP_CPP_CLASS=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -2855,22 +2863,23 @@ DEP_CPP_CLASS=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
+"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_CLASS=\\r
+SOURCE=.\Modules\rgbimgmodule.c\r
+DEP_CPP_RGBIM=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -2900,40 +2909,45 @@ DEP_CPP_CLASS=\
        ".\Include\rangeobject.h"\\r
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
+"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\ceval.c\r
+SOURCE=.\Modules\regexpr.c\r
+DEP_CPP_REGEX=\\r
+       ".\Include\myproto.h"\\r
+       ".\Modules\regexpr.h"\\r
+       ".\PC\config.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_CEVAL=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\regexmodule.c\r
+DEP_CPP_REGEXM=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
-       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
-       ".\Include\frameobject.h"\\r
        ".\Include\funcobject.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
@@ -2947,7 +2961,6 @@ DEP_CPP_CEVAL=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -2958,31 +2971,30 @@ DEP_CPP_CEVAL=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
+       ".\Modules\regexpr.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
+"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_CEVAL=\\r
+SOURCE=.\Objects\rangeobject.c\r
+DEP_CPP_RANGE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
-       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
-       ".\Include\frameobject.h"\\r
        ".\Include\funcobject.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
@@ -2996,7 +3008,6 @@ DEP_CPP_CEVAL=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\opcode.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -3007,53 +3018,50 @@ DEP_CPP_CEVAL=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
+"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\bltinmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_BLTIN=\\r
+SOURCE=.\Python\pythonrun.c\r
+DEP_CPP_PYTHO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
+       ".\Include\bitset.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
+       ".\Include\errcode.h"\\r
        ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
+       ".\Include\grammar.h"\\r
        ".\Include\import.h"\\r
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
        ".\Include\listobject.h"\\r
        ".\Include\longobject.h"\\r
+       ".\Include\marshal.h"\\r
        ".\Include\methodobject.h"\\r
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\parsetok.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -3064,3242 +3072,76 @@ DEP_CPP_BLTIN=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"\r
+"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_BLTIN=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\eval.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\binascii.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_BINAS=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_BINAS=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\audioop.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_AUDIO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_AUDIO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\arraymodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_ARRAY=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_ARRAY=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\acceler.c\r
-DEP_CPP_ACCEL=\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\token.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\abstract.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_ABSTR=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_ABSTR=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\yuvconvert.c\r
-DEP_CPP_YUVCO=\\r
-       ".\Modules\yuv.h"\\r
-       \r
-\r
-"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\typeobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_TYPEO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_TYPEO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\tupleobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_TUPLE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_TUPLE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\traceback.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_TRACE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\frameobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_TRACE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\frameobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\tokenizer.c\r
-DEP_CPP_TOKEN=\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\token.h"\\r
-       ".\Parser\tokenizer.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\timemodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_TIMEM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\myselect.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TIMEB.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_TIMEM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\myselect.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TIMEB.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\thread.c\r
-DEP_CPP_THREA=\\r
-       ".\Include\thread.h"\\r
-       ".\PC\config.h"\\r
-       ".\Python\thread_cthread.h"\\r
-       ".\Python\thread_lwp.h"\\r
-       ".\Python\thread_nt.h"\\r
-       ".\Python\thread_pthread.h"\\r
-       ".\Python\thread_sgi.h"\\r
-       ".\Python\thread_solaris.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\structmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_STRUC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_STRUC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\structmember.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_STRUCT=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_STRUCT=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\structmember.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\stropmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_STROP=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_STROP=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\stringobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_STRIN=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_STRIN=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\soundex.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_SOUND=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_SOUND=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\signalmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_SIGNA=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_SIGNA=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\rotormodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_ROTOR=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_ROTOR=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\rgbimgmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_RGBIM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_RGBIM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\regexpr.c\r
-DEP_CPP_REGEX=\\r
-       ".\Include\myproto.h"\\r
-       ".\Modules\regexpr.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\regexmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_REGEXM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Modules\regexpr.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_REGEXM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Modules\regexpr.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\rangeobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_RANGE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_RANGE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\pythonrun.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_PYTHO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\eval.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\parsetok.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_PYTHO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\eval.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\parsetok.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\parsetok.c\r
-DEP_CPP_PARSE=\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\parsetok.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\token.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\Parser\tokenizer.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\parser.c\r
-DEP_CPP_PARSER=\\r
-       ".\Include\bitset.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\grammar.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\token.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\object.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_OBJEC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_OBJEC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\node.c\r
-DEP_CPP_NODE_=\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
-       ".\Include\pgenheaders.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\newmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_NEWMO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_NEWMO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\marshal.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MARSH=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longintrepr.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_MARSH=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longintrepr.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\mystrtoul.c\r
-DEP_CPP_MYSTR=\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\myreadline.c\r
-DEP_CPP_MYREA=\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\moduleobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MODUL=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_MODUL=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\modsupport.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MODSU=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_MODSU=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\methodobject.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_METHO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_METHO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\md5module.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MD5MO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Modules\md5.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_MD5MO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Modules\md5.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\md5c.c\r
-DEP_CPP_MD5C_=\\r
-       ".\Modules\md5.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\mathmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MATHM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_MATHM=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\socketmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_SOCKE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_SOCKE=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\selectmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_SELEC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\myselect.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       \r
-\r
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_SELEC=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
+SOURCE=.\Parser\parsetok.c\r
+DEP_CPP_PARSE=\\r
+       ".\Include\bitset.h"\\r
+       ".\Include\errcode.h"\\r
+       ".\Include\grammar.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\myselect.h"\\r
-       ".\Include\mytime.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
+       ".\Include\node.h"\\r
+       ".\Include\parsetok.h"\\r
+       ".\Include\pgenheaders.h"\\r
        ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
+       ".\Include\token.h"\\r
+       ".\Parser\parser.h"\\r
+       ".\Parser\tokenizer.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
+"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\sysmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_SYSMO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-DEP_CPP_SYSMO=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
+SOURCE=.\Parser\parser.c\r
+DEP_CPP_PARSER=\\r
+       ".\Include\bitset.h"\\r
+       ".\Include\errcode.h"\\r
+       ".\Include\grammar.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\Include\node.h"\\r
+       ".\Include\pgenheaders.h"\\r
+       ".\Include\pydebug.h"\\r
+       ".\Include\token.h"\\r
+       ".\Parser\parser.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
+"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\import.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_IMPORT=\\r
+SOURCE=.\Objects\object.c\r
+DEP_CPP_OBJEC=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
@@ -6308,16 +3150,13 @@ DEP_CPP_IMPORT=\
        ".\Include\intrcheck.h"\\r
        ".\Include\listobject.h"\\r
        ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
        ".\Include\methodobject.h"\\r
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -6328,91 +3167,44 @@ DEP_CPP_IMPORT=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       ".\Python\importdl.h"\\r
-       \r
-NODEP_CPP_IMPORT=\\r
-       ".\Python\macglue.h"\\r
        \r
 \r
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_IMPORT=\\r
-       ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
-       ".\Include\ceval.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\compile.h"\\r
-       ".\Include\complexobject.h"\\r
-       ".\Include\dictobject.h"\\r
-       ".\Include\errcode.h"\\r
-       ".\Include\eval.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\import.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\marshal.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\modsupport.h"\\r
-       ".\Include\moduleobject.h"\\r
+SOURCE=.\Parser\node.c\r
+DEP_CPP_NODE_=\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\node.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
+       ".\Include\pgenheaders.h"\\r
        ".\Include\pydebug.h"\\r
-       ".\Include\pyerrors.h"\\r
-       ".\Include\pyfpe.h"\\r
-       ".\Include\pystate.h"\\r
-       ".\Include\Python.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\sysmodule.h"\\r
-       ".\Include\token.h"\\r
-       ".\Include\traceback.h"\\r
-       ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       ".\Python\importdl.h"\\r
-       \r
-NODEP_CPP_IMPORT=\\r
-       ".\Python\macglue.h"\\r
        \r
 \r
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\posixmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_POSIX=\\r
+SOURCE=.\Modules\newmodule.c\r
+DEP_CPP_NEWMO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -6428,7 +3220,6 @@ DEP_CPP_POSIX=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -6444,23 +3235,23 @@ DEP_CPP_POSIX=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\sys\UTIME.H"\\r
        \r
 \r
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_POSIX=\\r
+SOURCE=.\Python\marshal.c\r
+DEP_CPP_MARSH=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
@@ -6470,13 +3261,14 @@ DEP_CPP_POSIX=\
        ".\Include\intobject.h"\\r
        ".\Include\intrcheck.h"\\r
        ".\Include\listobject.h"\\r
+       ".\Include\longintrepr.h"\\r
        ".\Include\longobject.h"\\r
+       ".\Include\marshal.h"\\r
        ".\Include\methodobject.h"\\r
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
-       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -6492,28 +3284,48 @@ DEP_CPP_POSIX=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\sys\UTIME.H"\\r
        \r
 \r
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\mystrtoul.c\r
+DEP_CPP_MYSTR=\\r
+       ".\PC\config.h"\\r
+       \r
+\r
+"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
 \r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\operator.c\r
+SOURCE=.\Parser\myreadline.c\r
+DEP_CPP_MYREA=\\r
+       ".\Include\intrcheck.h"\\r
+       ".\Include\mymalloc.h"\\r
+       ".\Include\myproto.h"\\r
+       ".\PC\config.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_OPERA=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\moduleobject.c\r
+DEP_CPP_MODUL=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6549,15 +3361,17 @@ DEP_CPP_OPERA=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"\r
+"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_OPERA=\\r
+SOURCE=.\Python\modsupport.c\r
+DEP_CPP_MODSU=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6593,23 +3407,17 @@ DEP_CPP_OPERA=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"\r
+"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\errnomodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_ERRNO=\\r
+SOURCE=.\Objects\methodobject.c\r
+DEP_CPP_METHO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6640,20 +3448,23 @@ DEP_CPP_ERRNO=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\r
+"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_ERRNO=\\r
+SOURCE=.\Modules\md5module.c\r
+DEP_CPP_MD5MO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6686,26 +3497,35 @@ DEP_CPP_ERRNO=\
        ".\Include\sysmodule.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
+       ".\Modules\md5.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\r
+"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\sliceobject.c\r
+SOURCE=.\Modules\md5c.c\r
+DEP_CPP_MD5C_=\\r
+       ".\Modules\md5.h"\\r
+       ".\PC\config.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_SLICE=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\mathmodule.c\r
+DEP_CPP_MATHM=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6723,6 +3543,7 @@ DEP_CPP_SLICE=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
+       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -6741,15 +3562,17 @@ DEP_CPP_SLICE=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
+"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_SLICE=\\r
+SOURCE=.\Modules\socketmodule.c\r
+DEP_CPP_SOCKE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6768,6 +3591,7 @@ DEP_CPP_SLICE=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -6783,25 +3607,20 @@ DEP_CPP_SLICE=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
+"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\main.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_MAIN_=\\r
+SOURCE=.\Modules\selectmodule.c\r
+DEP_CPP_SELEC=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6820,6 +3639,8 @@ DEP_CPP_MAIN_=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\myselect.h"\\r
+       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -6835,17 +3656,20 @@ DEP_CPP_MAIN_=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
        \r
 \r
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"\r
+"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_MAIN_=\\r
+SOURCE=.\Python\sysmodule.c\r
+DEP_CPP_SYSMO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6866,6 +3690,7 @@ DEP_CPP_MAIN_=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -6881,38 +3706,25 @@ DEP_CPP_MAIN_=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getopt.c\r
-\r
-"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"\r
+"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
 # End Source File\r
 ################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\PC\import_nt.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+# Begin Source File\r
 \r
-DEP_CPP_IMPORT_=\\r
+SOURCE=.\Python\import.c\r
+DEP_CPP_IMPORT=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
+       ".\Include\compile.h"\\r
        ".\Include\complexobject.h"\\r
        ".\Include\dictobject.h"\\r
+       ".\Include\errcode.h"\\r
+       ".\Include\eval.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
        ".\Include\funcobject.h"\\r
@@ -6921,11 +3733,13 @@ DEP_CPP_IMPORT_=\
        ".\Include\intrcheck.h"\\r
        ".\Include\listobject.h"\\r
        ".\Include\longobject.h"\\r
+       ".\Include\marshal.h"\\r
        ".\Include\methodobject.h"\\r
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\node.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\osdefs.h"\\r
@@ -6939,21 +3753,27 @@ DEP_CPP_IMPORT_=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\token.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        ".\Python\importdl.h"\\r
        \r
+NODEP_CPP_IMPORT=\\r
+       ".\Python\macglue.h"\\r
+       \r
 \r
-"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"\r
+"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_IMPORT_=\\r
+SOURCE=.\Modules\posixmodule.c\r
+DEP_CPP_POSIX=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -6972,9 +3792,9 @@ DEP_CPP_IMPORT_=\
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
        ".\Include\myproto.h"\\r
+       ".\Include\mytime.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -6988,26 +3808,22 @@ DEP_CPP_IMPORT_=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
-       ".\Python\importdl.h"\\r
+       {$(INCLUDE)}"\sys\STAT.H"\\r
+       {$(INCLUDE)}"\sys\TYPES.H"\\r
+       {$(INCLUDE)}"\sys\UTIME.H"\\r
        \r
 \r
-"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"\r
+"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\PC\getpath_nt.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_GETPA=\\r
+SOURCE=.\Modules\operator.c\r
+DEP_CPP_OPERA=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7028,7 +3844,6 @@ DEP_CPP_GETPA=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -7044,15 +3859,17 @@ DEP_CPP_GETPA=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
+"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_GETPA=\\r
+SOURCE=.\Modules\errnomodule.c\r
+DEP_CPP_ERRNO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7073,7 +3890,6 @@ DEP_CPP_GETPA=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
-       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -7089,23 +3905,17 @@ DEP_CPP_GETPA=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
+"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\PC\dl_nt.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_DL_NT=\\r
+SOURCE=.\Objects\sliceobject.c\r
+DEP_CPP_SLICE=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7141,15 +3951,17 @@ DEP_CPP_DL_NT=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"\r
+"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_DL_NT=\\r
+SOURCE=.\Modules\main.c\r
+DEP_CPP_MAIN_=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7185,35 +3997,27 @@ DEP_CPP_DL_NT=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"\r
+"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\PC\python_nt.def\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+SOURCE=.\Python\getopt.c\r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-!ENDIF \r
 \r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\threadmodule.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_THREAD=\\r
+SOURCE=.\PC\import_nt.c\r
+DEP_CPP_IMPORT_=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7234,6 +4038,7 @@ DEP_CPP_THREAD=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -7244,21 +4049,23 @@ DEP_CPP_THREAD=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       ".\Python\importdl.h"\\r
        \r
 \r
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"\r
+"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_THREAD=\\r
+SOURCE=.\PC\getpath_nt.c\r
+DEP_CPP_GETPA=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7279,6 +4086,7 @@ DEP_CPP_THREAD=\
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
+       ".\Include\osdefs.h"\\r
        ".\Include\pydebug.h"\\r
        ".\Include\pyerrors.h"\\r
        ".\Include\pyfpe.h"\\r
@@ -7289,55 +4097,12 @@ DEP_CPP_THREAD=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
-       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\PC\python_nt.rc\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-# ADD BASE RSC /l 0x409 /i "PC"\r
-# ADD RSC /l 0x409 /i "PC" /i "Include"\r
-\r
-"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)"\r
-   $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" /d\\r
- "NDEBUG" $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
-\r
-# ADD BASE RSC /l 0x409 /i "PC" /i "Include"\r
-# ADD RSC /l 0x409 /i "PC" /i "Include"\r
-\r
-"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)"\r
-   $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\getbuildinfo.c\r
-DEP_CPP_GETBU=\\r
-       ".\PC\config.h"\\r
-       \r
-\r
-"$(INTDIR)\getbuildinfo.obj" : $(SOURCE) $(DEP_CPP_GETBU) "$(INTDIR)"\r
+"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -7345,13 +4110,9 @@ DEP_CPP_GETBU=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\pystate.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
-DEP_CPP_PYSTA=\\r
+SOURCE=.\PC\dl_nt.c\r
+DEP_CPP_DL_NT=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7387,15 +4148,29 @@ DEP_CPP_PYSTA=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)"\r
+"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\PC\python_nt.def\r
+\r
+!IF  "$(CFG)" == "python15 - Win32 Release"\r
+\r
 !ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
 \r
-DEP_CPP_PYSTA=\\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\threadmodule.c\r
+DEP_CPP_THREAD=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7426,33 +4201,67 @@ DEP_CPP_PYSTA=\
        ".\Include\sliceobject.h"\\r
        ".\Include\stringobject.h"\\r
        ".\Include\sysmodule.h"\\r
+       ".\Include\thread.h"\\r
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)"\r
+"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\PC\python_nt.rc\r
+\r
+!IF  "$(CFG)" == "python15 - Win32 Release"\r
+\r
+# ADD BASE RSC /l 0x409 /i "PC"\r
+# ADD RSC /l 0x409 /i "PC" /i "Include"\r
+\r
+"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)"\r
+   $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" /d\\r
+ "NDEBUG" $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+\r
+# ADD BASE RSC /l 0x409 /i "PC" /i "Include"\r
+# ADD RSC /l 0x409 /i "PC" /i "Include"\r
+\r
+"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)"\r
+   $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" $(SOURCE)\r
+\r
+\r
 !ENDIF \r
 \r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\cStringIO.c\r
+SOURCE=.\Modules\getbuildinfo.c\r
+DEP_CPP_GETBU=\\r
+       ".\PC\config.h"\\r
+       \r
 \r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
+"$(INTDIR)\getbuildinfo.obj" : $(SOURCE) $(DEP_CPP_GETBU) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
-DEP_CPP_CSTRI=\\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\pystate.c\r
+DEP_CPP_PYSTA=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\complexobject.h"\\r
-       ".\Include\cStringIO.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
@@ -7484,15 +4293,17 @@ DEP_CPP_CSTRI=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\cStringIO.obj" : $(SOURCE) $(DEP_CPP_CSTRI) "$(INTDIR)"\r
+"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
+SOURCE=.\Modules\cStringIO.c\r
 DEP_CPP_CSTRI=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7533,19 +4344,13 @@ DEP_CPP_CSTRI=\
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
 SOURCE=.\Modules\cPickle.c\r
-\r
-!IF  "$(CFG)" == "python15 - Win32 Release"\r
-\r
 DEP_CPP_CPICK=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7587,16 +4392,17 @@ DEP_CPP_CPICK=\
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ELSEIF  "$(CFG)" == "python15 - Win32 Debug"\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
 \r
-DEP_CPP_CPICK=\\r
+SOURCE=.\Objects\dictobject.c\r
+DEP_CPP_DICTO=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\complexobject.h"\\r
-       ".\Include\cStringIO.h"\\r
        ".\Include\dictobject.h"\\r
        ".\Include\fileobject.h"\\r
        ".\Include\floatobject.h"\\r
@@ -7610,7 +4416,6 @@ DEP_CPP_CPICK=\
        ".\Include\modsupport.h"\\r
        ".\Include\moduleobject.h"\\r
        ".\Include\mymalloc.h"\\r
-       ".\Include\mymath.h"\\r
        ".\Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
@@ -7629,20 +4434,17 @@ DEP_CPP_CPICK=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\cPickle.obj" : $(SOURCE) $(DEP_CPP_CPICK) "$(INTDIR)"\r
+"$(INTDIR)\dictobject.obj" : $(SOURCE) $(DEP_CPP_DICTO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\dictobject.c\r
-DEP_CPP_DICTO=\\r
+SOURCE=.\PC\msvcrtmodule.c\r
+DEP_CPP_MSVCR=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7678,7 +4480,7 @@ DEP_CPP_DICTO=\
        ".\PC\config.h"\\r
        \r
 \r
-"$(INTDIR)\dictobject.obj" : $(SOURCE) $(DEP_CPP_DICTO) "$(INTDIR)"\r
+"$(INTDIR)\msvcrtmodule.obj" : $(SOURCE) $(DEP_CPP_MSVCR) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -7691,17 +4493,17 @@ DEP_CPP_DICTO=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\PC\main_nt.c\r
-\r
-"$(INTDIR)\main_nt.obj" : $(SOURCE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
+SOURCE=.\vc40\python15.lib\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\vc40\python15.lib\r
+SOURCE=.\Modules\python.c\r
+\r
+"$(INTDIR)\python.obj" : $(SOURCE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
 # End Source File\r
 # End Target\r
 ################################################################################\r
@@ -7714,7 +4516,6 @@ SOURCE=.\vc40\python15.lib
 SOURCE=.\Modules\_tkinter.c\r
 DEP_CPP__TKIN=\\r
        ".\Include\abstract.h"\\r
-       ".\Include\bltinmodule.h"\\r
        ".\Include\ceval.h"\\r
        ".\Include\classobject.h"\\r
        ".\Include\cobject.h"\\r
@@ -7750,6 +4551,11 @@ DEP_CPP__TKIN=\
        ".\Include\traceback.h"\\r
        ".\Include\tupleobject.h"\\r
        ".\PC\config.h"\\r
+       "C:\TCL\include\tcl.h"\\r
+       "C:\TCL\include\tk.h"\\r
+       "C:\TCL\include\X11\X.h"\\r
+       "C:\TCL\include\X11\Xfuncproto.h"\\r
+       "C:\TCL\include\X11\Xlib.h"\\r
        \r
 \r
 "$(INTDIR)\_tkinter.obj" : $(SOURCE) $(DEP_CPP__TKIN) "$(INTDIR)"\r