From: Guido van Rossum Date: Thu, 7 Aug 1997 00:11:34 +0000 (+0000) Subject: Got the new structure working with MSVC 4.2. X-Git-Tag: v1.5a3~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7;p=python Got the new structure working with MSVC 4.2. main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols. --- diff --git a/PC/config.c b/PC/config.c index 97f9de424e..39011bc9a4 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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 index e174811835..0000000000 --- a/PC/main_nt.c +++ /dev/null @@ -1,42 +0,0 @@ -/* -*- C -*- *********************************************** -Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, -The Netherlands. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the names of Stichting Mathematisch -Centrum or CWI or Corporation for National Research Initiatives or -CNRI not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -While CWI is the initial source for this software, a modified version -is made available by the Corporation for National Research Initiatives -(CNRI) at the Internet address ftp://ftp.python.org. - -STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH -CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -******************************************************************/ - -/* Python interpreter main program */ - -extern int Py_Main(int, char **); - -int -main(argc, argv) - int argc; - char **argv; -{ - return Py_Main(argc, argv); -} diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c new file mode 100755 index 0000000000..dec628516a --- /dev/null +++ b/PC/msvcrtmodule.c @@ -0,0 +1,95 @@ +/********************************************************* + + msvcrtmodule.c + + A Python interface to the Microsoft Visual C Runtime + Library, providing access to those non-portable, but + still useful routines. + + Only ever compiled with an MS compiler, so no attempt + has been made to avoid MS language extensions, etc... + +***********************************************************/ +#include "Python.h" +#include "malloc.h" +// Perform locking operations on a file. +static PyObject *msvcrt_locking(PyObject *self, PyObject *args) +{ + int mode; + long nBytes; + PyObject *obFile; + FILE *pFile; + if (!PyArg_ParseTuple(args,"O!il:locking", &obFile, PyFile_Type, &mode, &nBytes)) + return NULL; + if (NULL==(pFile = PyFile_AsFile(obFile))) + return NULL; + if (0 != _locking(_fileno(pFile), mode, nBytes)) + return PyErr_SetFromErrno(PyExc_IOError); + Py_INCREF(Py_None); + return Py_None; +} + +// Forces the malloc heap to clean itself up, and free unused blocks +// back to the OS. +static PyObject *msvcrt_heapmin(PyObject *self, PyObject *args) +{ + if (!PyArg_ParseTuple(args,":heapmin")) + return NULL; + if (_heapmin()!=0) + return PyErr_SetFromErrno(PyExc_MemoryError); // Is this the correct error??? + Py_INCREF(Py_None); + return Py_None; +} + +/******* +Left this out for now... + +// Convert an OS file handle to a Python file object (yay!). +// This may only work on NT +static PyObject *msvcrt_open_osfhandle(PyObject *self, PyObject *args) +{ + // Note that we get the underlying handle using the long + // "abstract" interface. This will allow either a native integer + // or else a Win32 extension PyHANDLE object, which implements an + // int() converter. + PyObject *obHandle; + PyObject *obInt; + int flags; + long handle; + if (!PyArg_ParseTuple(args,"Oi:open_osfhandle", &obHandle, &flags)) + return NULL; + + if (NULL==(obInt = PyNumber_Int(obHandle))) { + PyErr_Clear(); + PyErr_SetString(PyExc_TypeError, "The handle param must be an integer, = +or an object able to be converted to an integer"); + return NULL; + } + handle = PyInt_AsLong(obInt); + Py_DECREF(obInt); + rtHandle = _open_osfhandle(handle, flags); + if (rtHandle==-1) + return PyErr_SetFromErrno(PyExc_IOError); + + what mode? Should I just return here, and expose _fdopen + and setvbuf? + + f1=_fdopen(fd1, "w"); + setvbuf(f1, NULL, _IONBF, 0); + f=PyFile_FromFile(f1, cmdstring, "w", fclose); + +} +*****/ + +/* List of functions exported by this module */ +static struct PyMethodDef msvcrt_functions[] = { + {"locking", msvcrt_locking, 1}, + {"heapmin", msvcrt_heapmin, 1}, + {NULL, NULL} +}; + +__declspec(dllexport) void +initmsvcrt(void) +{ + Py_InitModule("msvcrt", msvcrt_functions); +} diff --git a/PC/python_nt.def b/PC/python_nt.def index 9a6ad9e057..038d3d09f5 100644 --- a/PC/python_nt.def +++ b/PC/python_nt.def @@ -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 diff --git a/PC/vc40.mak b/PC/vc40.mak index 1428e07c77..8d07039270 100644 --- a/PC/vc40.mak +++ b/PC/vc40.mak @@ -37,7 +37,7 @@ NULL=nul !ENDIF ################################################################################ # Begin Project -# PROP Target_Last_Scanned "_tkinter - Win32 Release" +# PROP Target_Last_Scanned "python15 - Win32 Debug" !IF "$(CFG)" == "python15 - Win32 Release" @@ -107,6 +107,7 @@ CLEAN : -@erase "$(INTDIR)\methodobject.obj" -@erase "$(INTDIR)\modsupport.obj" -@erase "$(INTDIR)\moduleobject.obj" + -@erase "$(INTDIR)\msvcrtmodule.obj" -@erase "$(INTDIR)\myreadline.obj" -@erase "$(INTDIR)\mystrtoul.obj" -@erase "$(INTDIR)\newmodule.obj" @@ -255,6 +256,7 @@ LINK32_OBJS= \ "$(INTDIR)\methodobject.obj" \ "$(INTDIR)\modsupport.obj" \ "$(INTDIR)\moduleobject.obj" \ + "$(INTDIR)\msvcrtmodule.obj" \ "$(INTDIR)\myreadline.obj" \ "$(INTDIR)\mystrtoul.obj" \ "$(INTDIR)\newmodule.obj" \ @@ -314,7 +316,7 @@ INTDIR=.\vc40\tmp ALL : "$(OUTDIR)\python.exe" CLEAN : - -@erase "$(INTDIR)\main_nt.obj" + -@erase "$(INTDIR)\python.obj" -@erase "$(OUTDIR)\python.exe" "$(OUTDIR)" : @@ -366,7 +368,7 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ odbccp32.lib /nologo /subsystem:console /incremental:no\ /pdb:"$(OUTDIR)/python.pdb" /machine:I386 /out:"$(OUTDIR)/python.exe" LINK32_OBJS= \ - "$(INTDIR)\main_nt.obj" \ + "$(INTDIR)\python.obj" \ "$(OUTDIR)\python15.lib" "$(OUTDIR)\python.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) @@ -405,9 +407,9 @@ CLEAN : CPP=cl.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL80A2\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c -CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL80A2\include"\ - /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\ +# ADD CPP /nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c +CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "PC" /I "Include" /I "C:\TCL\include" /D\ + "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\ /Fp"$(INTDIR)/_tkinter.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\vc40\tmp/ CPP_SBRS=.\. @@ -532,6 +534,7 @@ CLEAN : -@erase "$(INTDIR)\methodobject.obj" -@erase "$(INTDIR)\modsupport.obj" -@erase "$(INTDIR)\moduleobject.obj" + -@erase "$(INTDIR)\msvcrtmodule.obj" -@erase "$(INTDIR)\myreadline.obj" -@erase "$(INTDIR)\mystrtoul.obj" -@erase "$(INTDIR)\newmodule.obj" @@ -679,6 +682,7 @@ LINK32_OBJS= \ "$(INTDIR)\methodobject.obj" \ "$(INTDIR)\modsupport.obj" \ "$(INTDIR)\moduleobject.obj" \ + "$(INTDIR)\msvcrtmodule.obj" \ "$(INTDIR)\myreadline.obj" \ "$(INTDIR)\mystrtoul.obj" \ "$(INTDIR)\newmodule.obj" \ @@ -738,12 +742,8 @@ LINK32_OBJS= \ # Begin Source File SOURCE=.\Objects\longobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - DEP_CPP_LONGO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -785,11 +785,13 @@ DEP_CPP_LONGO=\ $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_LONGO=\ +SOURCE=.\Objects\listobject.c +DEP_CPP_LISTO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -802,13 +804,11 @@ DEP_CPP_LONGO=\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ ".\Include\listobject.h"\ - ".\Include\longintrepr.h"\ ".\Include\longobject.h"\ ".\Include\methodobject.h"\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -825,25 +825,20 @@ DEP_CPP_LONGO=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" +"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\listobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_LISTO=\ +SOURCE=.\Objects\intobject.c +DEP_CPP_INTOB=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -877,18 +872,19 @@ DEP_CPP_LISTO=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" +"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_LISTO=\ +SOURCE=.\Python\importdl.c +DEP_CPP_IMPOR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -909,6 +905,7 @@ DEP_CPP_LISTO=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -922,26 +919,27 @@ DEP_CPP_LISTO=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + ".\Python\importdl.h"\ + {$(INCLUDE)}"\sys\STAT.H"\ {$(INCLUDE)}"\sys\TYPES.H"\ +NODEP_CPP_IMPOR=\ + ".\Python\dl.h"\ + ".\Python\macdefs.h"\ + ".\Python\macglue.h"\ + -"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" +"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\intobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_INTOB=\ +SOURCE=.\Modules\imageop.c +DEP_CPP_IMAGE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -977,15 +975,56 @@ DEP_CPP_INTOB=\ ".\PC\config.h"\ -"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" +"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_INTOB=\ +SOURCE=.\Parser\grammar1.c +DEP_CPP_GRAMM=\ + ".\Include\bitset.h"\ + ".\Include\grammar.h"\ + ".\Include\mymalloc.h"\ + ".\Include\myproto.h"\ + ".\Include\pgenheaders.h"\ + ".\Include\pydebug.h"\ + ".\Include\token.h"\ + ".\PC\config.h"\ + + +"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\graminit.c +DEP_CPP_GRAMI=\ + ".\Include\bitset.h"\ + ".\Include\grammar.h"\ + ".\Include\mymalloc.h"\ + ".\Include\myproto.h"\ + ".\Include\pgenheaders.h"\ + ".\Include\pydebug.h"\ + ".\PC\config.h"\ + + +"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\getversion.c +DEP_CPP_GETVE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1006,6 +1045,7 @@ DEP_CPP_INTOB=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\patchlevel.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1021,23 +1061,17 @@ DEP_CPP_INTOB=\ ".\PC\config.h"\ -"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" +"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\importdl.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_IMPOR=\ +SOURCE=.\Python\getplatform.c +DEP_CPP_GETPL=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1058,7 +1092,6 @@ DEP_CPP_IMPOR=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1072,25 +1105,34 @@ DEP_CPP_IMPOR=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - ".\Python\importdl.h"\ + + +"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\getmtime.c +DEP_CPP_GETMT=\ + ".\PC\config.h"\ {$(INCLUDE)}"\sys\STAT.H"\ {$(INCLUDE)}"\sys\TYPES.H"\ -NODEP_CPP_IMPOR=\ - ".\Python\dl.h"\ - ".\Python\macdefs.h"\ - ".\Python\macglue.h"\ - -"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" +"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_IMPOR=\ +SOURCE=.\Python\getcopyright.c +DEP_CPP_GETCO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1111,7 +1153,6 @@ DEP_CPP_IMPOR=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1125,33 +1166,19 @@ DEP_CPP_IMPOR=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - ".\Python\importdl.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - -NODEP_CPP_IMPOR=\ - ".\Python\dl.h"\ - ".\Python\macdefs.h"\ - ".\Python\macglue.h"\ -"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" +"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\imageop.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_IMAGE=\ +SOURCE=.\Python\getcompiler.c +DEP_CPP_GETCOM=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1187,15 +1214,17 @@ DEP_CPP_IMAGE=\ ".\PC\config.h"\ -"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" +"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_IMAGE=\ +SOURCE=.\Python\getargs.c +DEP_CPP_GETAR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1231,48 +1260,7 @@ DEP_CPP_IMAGE=\ ".\PC\config.h"\ -"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\grammar1.c -DEP_CPP_GRAMM=\ - ".\Include\bitset.h"\ - ".\Include\grammar.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\Include\token.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\graminit.c -DEP_CPP_GRAMI=\ - ".\Include\bitset.h"\ - ".\Include\grammar.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" +"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1280,16 +1268,16 @@ DEP_CPP_GRAMI=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getversion.c +SOURCE=.\Objects\funcobject.c !IF "$(CFG)" == "python15 - Win32 Release" -DEP_CPP_GETVE=\ +DEP_CPP_FUNCO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -1307,7 +1295,6 @@ DEP_CPP_GETVE=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\patchlevel.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1317,24 +1304,25 @@ DEP_CPP_GETVE=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ELSEIF "$(CFG)" == "python15 - Win32 Debug" -DEP_CPP_GETVE=\ +DEP_CPP_FUNCO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -1352,7 +1340,6 @@ DEP_CPP_GETVE=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\patchlevel.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1362,13 +1349,14 @@ DEP_CPP_GETVE=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1378,13 +1366,9 @@ DEP_CPP_GETVE=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getplatform.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_GETPL=\ +SOURCE=.\Python\frozen.c +DEP_CPP_FROZE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1420,22 +1404,26 @@ DEP_CPP_GETPL=\ ".\PC\config.h"\ -"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" +"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_GETPL=\ +SOURCE=.\Objects\frameobject.c +DEP_CPP_FRAME=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ + ".\Include\frameobject.h"\ ".\Include\funcobject.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ @@ -1449,6 +1437,7 @@ DEP_CPP_GETPL=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1458,30 +1447,61 @@ DEP_CPP_GETPL=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" +"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\getmtime.c -DEP_CPP_GETMT=\ +SOURCE=.\Objects\floatobject.c +DEP_CPP_FLOAT=\ + ".\Include\abstract.h"\ + ".\Include\ceval.h"\ + ".\Include\classobject.h"\ + ".\Include\cobject.h"\ + ".\Include\complexobject.h"\ + ".\Include\dictobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\floatobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\import.h"\ + ".\Include\intobject.h"\ + ".\Include\intrcheck.h"\ + ".\Include\listobject.h"\ + ".\Include\longobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\modsupport.h"\ + ".\Include\moduleobject.h"\ + ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ + ".\Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\pyerrors.h"\ + ".\Include\pyfpe.h"\ + ".\Include\pystate.h"\ + ".\Include\Python.h"\ + ".\Include\pythonrun.h"\ + ".\Include\rangeobject.h"\ + ".\Include\sliceobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\sysmodule.h"\ + ".\Include\traceback.h"\ + ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" +"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1489,13 +1509,12 @@ DEP_CPP_GETMT=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getcopyright.c +SOURCE=.\Objects\fileobject.c !IF "$(CFG)" == "python15 - Win32 Release" -DEP_CPP_GETCO=\ +DEP_CPP_FILEO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1525,21 +1544,23 @@ DEP_CPP_GETCO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\STAT.H"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ELSEIF "$(CFG)" == "python15 - Win32 Debug" -DEP_CPP_GETCO=\ +DEP_CPP_FILEO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1569,13 +1590,16 @@ DEP_CPP_GETCO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\STAT.H"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1585,13 +1609,9 @@ DEP_CPP_GETCO=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getcompiler.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_GETCOM=\ +SOURCE=.\Python\errors.c +DEP_CPP_ERROR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1627,15 +1647,17 @@ DEP_CPP_GETCOM=\ ".\PC\config.h"\ -"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" +"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_GETCOM=\ +SOURCE=.\PC\config.c +DEP_CPP_CONFI=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1671,23 +1693,17 @@ DEP_CPP_GETCOM=\ ".\PC\config.h"\ -"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" +"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\getargs.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_GETAR=\ +SOURCE=.\Objects\complexobject.c +DEP_CPP_COMPL=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1705,6 +1721,7 @@ DEP_CPP_GETAR=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -1723,23 +1740,27 @@ DEP_CPP_GETAR=\ ".\PC\config.h"\ -"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" +"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_GETAR=\ +SOURCE=.\Python\compile.c +DEP_CPP_COMPI=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ + ".\Include\graminit.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ @@ -1750,8 +1771,10 @@ DEP_CPP_GETAR=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ + ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -1761,33 +1784,28 @@ DEP_CPP_GETAR=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ + ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" +"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\funcobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_FUNCO=\ +SOURCE=.\Objects\cobject.c +DEP_CPP_COBJE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -1814,26 +1832,26 @@ DEP_CPP_FUNCO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" +"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_FUNCO=\ +SOURCE=.\Modules\cmathmodule.c +DEP_CPP_CMATH=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -1848,6 +1866,7 @@ DEP_CPP_FUNCO=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -1860,30 +1879,26 @@ DEP_CPP_FUNCO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" +"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\frozen.c +SOURCE=.\Objects\classobject.c !IF "$(CFG)" == "python15 - Win32 Release" -DEP_CPP_FROZE=\ +DEP_CPP_CLASS=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1913,21 +1928,21 @@ DEP_CPP_FROZE=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" +"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ELSEIF "$(CFG)" == "python15 - Win32 Debug" -DEP_CPP_FROZE=\ +DEP_CPP_CLASS=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -1957,13 +1972,14 @@ DEP_CPP_FROZE=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" +"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -1973,19 +1989,16 @@ DEP_CPP_FROZE=\ ################################################################################ # Begin Source File -SOURCE=.\Objects\frameobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_FRAME=\ +SOURCE=.\Python\ceval.c +DEP_CPP_CEVAL=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ + ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\frameobject.h"\ @@ -2012,31 +2025,33 @@ DEP_CPP_FRAME=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ + ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" +"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_FRAME=\ +SOURCE=.\Python\bltinmodule.c +DEP_CPP_BLTIN=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ + ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ - ".\Include\frameobject.h"\ ".\Include\funcobject.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ @@ -2047,10 +2062,11 @@ DEP_CPP_FRAME=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ + ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -2060,27 +2076,23 @@ DEP_CPP_FRAME=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" +"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\floatobject.c -DEP_CPP_FLOAT=\ +SOURCE=.\Modules\binascii.c +DEP_CPP_BINAS=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2098,7 +2110,6 @@ DEP_CPP_FLOAT=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2117,7 +2128,7 @@ DEP_CPP_FLOAT=\ ".\PC\config.h"\ -"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" +"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -2125,13 +2136,9 @@ DEP_CPP_FLOAT=\ ################################################################################ # Begin Source File -SOURCE=.\Objects\fileobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_FILEO=\ +SOURCE=.\Modules\audioop.c +DEP_CPP_AUDIO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2149,6 +2156,7 @@ DEP_CPP_FILEO=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2161,24 +2169,23 @@ DEP_CPP_FILEO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" +"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_FILEO=\ +SOURCE=.\Modules\arraymodule.c +DEP_CPP_ARRAY=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2208,32 +2215,46 @@ DEP_CPP_FILEO=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" +"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\errors.c +SOURCE=.\Parser\acceler.c +DEP_CPP_ACCEL=\ + ".\Include\bitset.h"\ + ".\Include\grammar.h"\ + ".\Include\mymalloc.h"\ + ".\Include\myproto.h"\ + ".\Include\node.h"\ + ".\Include\pgenheaders.h"\ + ".\Include\pydebug.h"\ + ".\Include\token.h"\ + ".\Parser\parser.h"\ + ".\PC\config.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_ERROR=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Objects\abstract.c +DEP_CPP_ABSTR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2269,15 +2290,30 @@ DEP_CPP_ERROR=\ ".\PC\config.h"\ -"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" +"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_ERROR=\ +SOURCE=.\Modules\yuvconvert.c +DEP_CPP_YUVCO=\ + ".\Modules\yuv.h"\ + + +"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Objects\typeobject.c +DEP_CPP_TYPEO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2313,23 +2349,17 @@ DEP_CPP_ERROR=\ ".\PC\config.h"\ -"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" +"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\PC\config.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_CONFI=\ +SOURCE=.\Objects\tupleobject.c +DEP_CPP_TUPLE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2365,22 +2395,26 @@ DEP_CPP_CONFI=\ ".\PC\config.h"\ -"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" +"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_CONFI=\ +SOURCE=.\Python\traceback.c +DEP_CPP_TRACE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ + ".\Include\frameobject.h"\ ".\Include\funcobject.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ @@ -2394,6 +2428,7 @@ DEP_CPP_CONFI=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -2403,74 +2438,44 @@ DEP_CPP_CONFI=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ + ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" +"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\complexobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_COMPL=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ +SOURCE=.\Parser\tokenizer.c +DEP_CPP_TOKEN=\ + ".\Include\errcode.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ + ".\Include\pgenheaders.h"\ ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ + ".\Include\token.h"\ + ".\Parser\tokenizer.h"\ ".\PC\config.h"\ -"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" +"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_COMPL=\ +SOURCE=.\Modules\timemodule.c +DEP_CPP_TIMEM=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2490,6 +2495,8 @@ DEP_CPP_COMPL=\ ".\Include\mymalloc.h"\ ".\Include\mymath.h"\ ".\Include\myproto.h"\ + ".\Include\myselect.h"\ + ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2505,35 +2512,54 @@ DEP_CPP_COMPL=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\TIMEB.H"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" +"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\compile.c +SOURCE=.\Python\thread.c +DEP_CPP_THREA=\ + ".\Include\thread.h"\ + ".\PC\config.h"\ + ".\Python\thread_cthread.h"\ + ".\Python\thread_foobar.h"\ + ".\Python\thread_lwp.h"\ + ".\Python\thread_nt.h"\ + ".\Python\thread_pthread.h"\ + ".\Python\thread_sgi.h"\ + ".\Python\thread_solaris.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + +NODEP_CPP_THREA=\ + "\usr\include\thread.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_COMPI=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\structmodule.c +DEP_CPP_STRUC=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ - ".\Include\graminit.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ @@ -2543,11 +2569,10 @@ DEP_CPP_COMPI=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ - ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -2557,33 +2582,31 @@ DEP_CPP_COMPI=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ - ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" +"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_COMPI=\ +SOURCE=.\Python\structmember.c +DEP_CPP_STRUCT=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ - ".\Include\graminit.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ @@ -2594,10 +2617,8 @@ DEP_CPP_COMPI=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ - ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -2609,29 +2630,22 @@ DEP_CPP_COMPI=\ ".\Include\stringobject.h"\ ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ - ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" +"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\cobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_COBJE=\ +SOURCE=.\Modules\stropmodule.c +DEP_CPP_STROP=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2667,15 +2681,17 @@ DEP_CPP_COBJE=\ ".\PC\config.h"\ -"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" +"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_COBJE=\ +SOURCE=.\Objects\stringobject.c +DEP_CPP_STRIN=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2693,6 +2709,7 @@ DEP_CPP_COBJE=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2711,23 +2728,17 @@ DEP_CPP_COBJE=\ ".\PC\config.h"\ -"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" +"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\cmathmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_CMATH=\ +SOURCE=.\Modules\soundex.c +DEP_CPP_SOUND=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2745,7 +2756,6 @@ DEP_CPP_CMATH=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2764,15 +2774,17 @@ DEP_CPP_CMATH=\ ".\PC\config.h"\ -"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" +"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_CMATH=\ +SOURCE=.\Modules\signalmodule.c +DEP_CPP_SIGNA=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2790,7 +2802,6 @@ DEP_CPP_CMATH=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2804,28 +2815,24 @@ DEP_CPP_CMATH=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ + ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" +"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\classobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_CLASS=\ +SOURCE=.\Modules\rotormodule.c +DEP_CPP_ROTOR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2843,6 +2850,7 @@ DEP_CPP_CLASS=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -2855,22 +2863,23 @@ DEP_CPP_CLASS=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" +"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_CLASS=\ +SOURCE=.\Modules\rgbimgmodule.c +DEP_CPP_RGBIM=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -2900,40 +2909,45 @@ DEP_CPP_CLASS=\ ".\Include\rangeobject.h"\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" +"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\ceval.c +SOURCE=.\Modules\regexpr.c +DEP_CPP_REGEX=\ + ".\Include\myproto.h"\ + ".\Modules\regexpr.h"\ + ".\PC\config.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_CEVAL=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\regexmodule.c +DEP_CPP_REGEXM=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ - ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ - ".\Include\frameobject.h"\ ".\Include\funcobject.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ @@ -2947,7 +2961,6 @@ DEP_CPP_CEVAL=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -2958,31 +2971,30 @@ DEP_CPP_CEVAL=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ + ".\Modules\regexpr.h"\ ".\PC\config.h"\ -"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" +"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_CEVAL=\ +SOURCE=.\Objects\rangeobject.c +DEP_CPP_RANGE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ - ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ - ".\Include\frameobject.h"\ ".\Include\funcobject.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ @@ -2996,7 +3008,6 @@ DEP_CPP_CEVAL=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\opcode.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -3007,53 +3018,50 @@ DEP_CPP_CEVAL=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" +"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\bltinmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_BLTIN=\ +SOURCE=.\Python\pythonrun.c +DEP_CPP_PYTHO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ + ".\Include\bitset.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ + ".\Include\errcode.h"\ ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ + ".\Include\grammar.h"\ ".\Include\import.h"\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ ".\Include\listobject.h"\ ".\Include\longobject.h"\ + ".\Include\marshal.h"\ ".\Include\methodobject.h"\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\parsetok.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -3064,3242 +3072,76 @@ DEP_CPP_BLTIN=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ + ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" +"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_BLTIN=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\eval.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\binascii.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_BINAS=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_BINAS=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\audioop.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_AUDIO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_AUDIO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\arraymodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_ARRAY=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_ARRAY=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\acceler.c -DEP_CPP_ACCEL=\ - ".\Include\bitset.h"\ - ".\Include\grammar.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\Include\token.h"\ - ".\Parser\parser.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\abstract.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_ABSTR=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_ABSTR=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\yuvconvert.c -DEP_CPP_YUVCO=\ - ".\Modules\yuv.h"\ - - -"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\typeobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_TYPEO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_TYPEO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\tupleobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_TUPLE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_TUPLE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\traceback.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_TRACE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\frameobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_TRACE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\frameobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\tokenizer.c -DEP_CPP_TOKEN=\ - ".\Include\errcode.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\Include\token.h"\ - ".\Parser\tokenizer.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\timemodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_TIMEM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\myselect.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TIMEB.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_TIMEM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\myselect.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TIMEB.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\thread.c -DEP_CPP_THREA=\ - ".\Include\thread.h"\ - ".\PC\config.h"\ - ".\Python\thread_cthread.h"\ - ".\Python\thread_lwp.h"\ - ".\Python\thread_nt.h"\ - ".\Python\thread_pthread.h"\ - ".\Python\thread_sgi.h"\ - ".\Python\thread_solaris.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\structmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_STRUC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_STRUC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\structmember.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_STRUCT=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_STRUCT=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\structmember.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\stropmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_STROP=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_STROP=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\stringobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_STRIN=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_STRIN=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\soundex.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_SOUND=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_SOUND=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\signalmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_SIGNA=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_SIGNA=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\rotormodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_ROTOR=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_ROTOR=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\rgbimgmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_RGBIM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_RGBIM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\regexpr.c -DEP_CPP_REGEX=\ - ".\Include\myproto.h"\ - ".\Modules\regexpr.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\regexmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_REGEXM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\Modules\regexpr.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_REGEXM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\Modules\regexpr.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\rangeobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_RANGE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_RANGE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\pythonrun.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_PYTHO=\ - ".\Include\abstract.h"\ - ".\Include\bitset.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\errcode.h"\ - ".\Include\eval.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\grammar.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\marshal.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\parsetok.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_PYTHO=\ - ".\Include\abstract.h"\ - ".\Include\bitset.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\errcode.h"\ - ".\Include\eval.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\grammar.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\marshal.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\parsetok.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\parsetok.c -DEP_CPP_PARSE=\ - ".\Include\bitset.h"\ - ".\Include\errcode.h"\ - ".\Include\grammar.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\parsetok.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\Include\token.h"\ - ".\Parser\parser.h"\ - ".\Parser\tokenizer.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\parser.c -DEP_CPP_PARSER=\ - ".\Include\bitset.h"\ - ".\Include\errcode.h"\ - ".\Include\grammar.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\Include\token.h"\ - ".\Parser\parser.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\object.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_OBJEC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_OBJEC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\node.c -DEP_CPP_NODE_=\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\node.h"\ - ".\Include\pgenheaders.h"\ - ".\Include\pydebug.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\newmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_NEWMO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_NEWMO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\marshal.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MARSH=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longintrepr.h"\ - ".\Include\longobject.h"\ - ".\Include\marshal.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_MARSH=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longintrepr.h"\ - ".\Include\longobject.h"\ - ".\Include\marshal.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\mystrtoul.c -DEP_CPP_MYSTR=\ - ".\PC\config.h"\ - - -"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\myreadline.c -DEP_CPP_MYREA=\ - ".\Include\intrcheck.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\moduleobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MODUL=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_MODUL=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\modsupport.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MODSU=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_MODSU=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\methodobject.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_METHO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\token.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_METHO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\token.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\md5module.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MD5MO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\Modules\md5.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_MD5MO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\Modules\md5.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\md5c.c -DEP_CPP_MD5C_=\ - ".\Modules\md5.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\mathmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MATHM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_MATHM=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\socketmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_SOCKE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_SOCKE=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\selectmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_SELEC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\myselect.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - - -"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_SELEC=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ +SOURCE=.\Parser\parsetok.c +DEP_CPP_PARSE=\ + ".\Include\bitset.h"\ + ".\Include\errcode.h"\ + ".\Include\grammar.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ - ".\Include\myselect.h"\ - ".\Include\mytime.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ + ".\Include\node.h"\ + ".\Include\parsetok.h"\ + ".\Include\pgenheaders.h"\ ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ + ".\Include\token.h"\ + ".\Parser\parser.h"\ + ".\Parser\tokenizer.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" +"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\sysmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_SYSMO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ - ".\PC\config.h"\ - - -"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -DEP_CPP_SYSMO=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ - ".\Include\mymalloc.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ - ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ +SOURCE=.\Parser\parser.c +DEP_CPP_PARSER=\ + ".\Include\bitset.h"\ + ".\Include\errcode.h"\ + ".\Include\grammar.h"\ + ".\Include\mymalloc.h"\ + ".\Include\myproto.h"\ + ".\Include\node.h"\ + ".\Include\pgenheaders.h"\ + ".\Include\pydebug.h"\ + ".\Include\token.h"\ + ".\Parser\parser.h"\ ".\PC\config.h"\ -"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" +"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Python\import.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_IMPORT=\ +SOURCE=.\Objects\object.c +DEP_CPP_OBJEC=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ - ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ - ".\Include\errcode.h"\ - ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ @@ -6308,16 +3150,13 @@ DEP_CPP_IMPORT=\ ".\Include\intrcheck.h"\ ".\Include\listobject.h"\ ".\Include\longobject.h"\ - ".\Include\marshal.h"\ ".\Include\methodobject.h"\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ - ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -6328,91 +3167,44 @@ DEP_CPP_IMPORT=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ - ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - ".\Python\importdl.h"\ - -NODEP_CPP_IMPORT=\ - ".\Python\macglue.h"\ -"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" +"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_IMPORT=\ - ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ - ".\Include\ceval.h"\ - ".\Include\classobject.h"\ - ".\Include\cobject.h"\ - ".\Include\compile.h"\ - ".\Include\complexobject.h"\ - ".\Include\dictobject.h"\ - ".\Include\errcode.h"\ - ".\Include\eval.h"\ - ".\Include\fileobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\import.h"\ - ".\Include\intobject.h"\ - ".\Include\intrcheck.h"\ - ".\Include\listobject.h"\ - ".\Include\longobject.h"\ - ".\Include\marshal.h"\ - ".\Include\methodobject.h"\ - ".\Include\modsupport.h"\ - ".\Include\moduleobject.h"\ +SOURCE=.\Parser\node.c +DEP_CPP_NODE_=\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ ".\Include\node.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ + ".\Include\pgenheaders.h"\ ".\Include\pydebug.h"\ - ".\Include\pyerrors.h"\ - ".\Include\pyfpe.h"\ - ".\Include\pystate.h"\ - ".\Include\Python.h"\ - ".\Include\pythonrun.h"\ - ".\Include\rangeobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\sysmodule.h"\ - ".\Include\token.h"\ - ".\Include\traceback.h"\ - ".\Include\tupleobject.h"\ ".\PC\config.h"\ - ".\Python\importdl.h"\ - -NODEP_CPP_IMPORT=\ - ".\Python\macglue.h"\ -"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" +"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\posixmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_POSIX=\ +SOURCE=.\Modules\newmodule.c +DEP_CPP_NEWMO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -6428,7 +3220,6 @@ DEP_CPP_POSIX=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ - ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -6444,23 +3235,23 @@ DEP_CPP_POSIX=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\sys\UTIME.H"\ -"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" +"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_POSIX=\ +SOURCE=.\Python\marshal.c +DEP_CPP_MARSH=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ @@ -6470,13 +3261,14 @@ DEP_CPP_POSIX=\ ".\Include\intobject.h"\ ".\Include\intrcheck.h"\ ".\Include\listobject.h"\ + ".\Include\longintrepr.h"\ ".\Include\longobject.h"\ + ".\Include\marshal.h"\ ".\Include\methodobject.h"\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ - ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -6492,28 +3284,48 @@ DEP_CPP_POSIX=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\sys\UTIME.H"\ -"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" +"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\mystrtoul.c +DEP_CPP_MYSTR=\ + ".\PC\config.h"\ + + +"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\operator.c +SOURCE=.\Parser\myreadline.c +DEP_CPP_MYREA=\ + ".\Include\intrcheck.h"\ + ".\Include\mymalloc.h"\ + ".\Include\myproto.h"\ + ".\PC\config.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_OPERA=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Objects\moduleobject.c +DEP_CPP_MODUL=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6549,15 +3361,17 @@ DEP_CPP_OPERA=\ ".\PC\config.h"\ -"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)" +"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_OPERA=\ +SOURCE=.\Python\modsupport.c +DEP_CPP_MODSU=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6593,23 +3407,17 @@ DEP_CPP_OPERA=\ ".\PC\config.h"\ -"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)" +"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\errnomodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_ERRNO=\ +SOURCE=.\Objects\methodobject.c +DEP_CPP_METHO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6640,20 +3448,23 @@ DEP_CPP_ERRNO=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ + ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)" +"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_ERRNO=\ +SOURCE=.\Modules\md5module.c +DEP_CPP_MD5MO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6686,26 +3497,35 @@ DEP_CPP_ERRNO=\ ".\Include\sysmodule.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ + ".\Modules\md5.h"\ ".\PC\config.h"\ -"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)" +"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\sliceobject.c +SOURCE=.\Modules\md5c.c +DEP_CPP_MD5C_=\ + ".\Modules\md5.h"\ + ".\PC\config.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_SLICE=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\mathmodule.c +DEP_CPP_MATHM=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6723,6 +3543,7 @@ DEP_CPP_SLICE=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ + ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -6741,15 +3562,17 @@ DEP_CPP_SLICE=\ ".\PC\config.h"\ -"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" +"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_SLICE=\ +SOURCE=.\Modules\socketmodule.c +DEP_CPP_SOCKE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6768,6 +3591,7 @@ DEP_CPP_SLICE=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ + ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -6783,25 +3607,20 @@ DEP_CPP_SLICE=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" +"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\main.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_MAIN_=\ +SOURCE=.\Modules\selectmodule.c +DEP_CPP_SELEC=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6820,6 +3639,8 @@ DEP_CPP_MAIN_=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ + ".\Include\myselect.h"\ + ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -6835,17 +3656,20 @@ DEP_CPP_MAIN_=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ -"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" +"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_MAIN_=\ +SOURCE=.\Python\sysmodule.c +DEP_CPP_SYSMO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6866,6 +3690,7 @@ DEP_CPP_MAIN_=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -6881,38 +3706,25 @@ DEP_CPP_MAIN_=\ ".\PC\config.h"\ -"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getopt.c - -"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)" +"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) # End Source File ################################################################################ -# Begin Source File - -SOURCE=.\PC\import_nt.c - -!IF "$(CFG)" == "python15 - Win32 Release" +# Begin Source File -DEP_CPP_IMPORT_=\ +SOURCE=.\Python\import.c +DEP_CPP_IMPORT=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ + ".\Include\compile.h"\ ".\Include\complexobject.h"\ ".\Include\dictobject.h"\ + ".\Include\errcode.h"\ + ".\Include\eval.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ ".\Include\funcobject.h"\ @@ -6921,11 +3733,13 @@ DEP_CPP_IMPORT_=\ ".\Include\intrcheck.h"\ ".\Include\listobject.h"\ ".\Include\longobject.h"\ + ".\Include\marshal.h"\ ".\Include\methodobject.h"\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ + ".\Include\node.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\osdefs.h"\ @@ -6939,21 +3753,27 @@ DEP_CPP_IMPORT_=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ + ".\Include\token.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ ".\Python\importdl.h"\ +NODEP_CPP_IMPORT=\ + ".\Python\macglue.h"\ + -"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)" +"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_IMPORT_=\ +SOURCE=.\Modules\posixmodule.c +DEP_CPP_POSIX=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -6972,9 +3792,9 @@ DEP_CPP_IMPORT_=\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ ".\Include\myproto.h"\ + ".\Include\mytime.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -6988,26 +3808,22 @@ DEP_CPP_IMPORT_=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ - ".\Python\importdl.h"\ + {$(INCLUDE)}"\sys\STAT.H"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + {$(INCLUDE)}"\sys\UTIME.H"\ -"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)" +"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\PC\getpath_nt.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_GETPA=\ +SOURCE=.\Modules\operator.c +DEP_CPP_OPERA=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7028,7 +3844,6 @@ DEP_CPP_GETPA=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -7044,15 +3859,17 @@ DEP_CPP_GETPA=\ ".\PC\config.h"\ -"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" +"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_GETPA=\ +SOURCE=.\Modules\errnomodule.c +DEP_CPP_ERRNO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7073,7 +3890,6 @@ DEP_CPP_GETPA=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ - ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -7089,23 +3905,17 @@ DEP_CPP_GETPA=\ ".\PC\config.h"\ -"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" +"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\PC\dl_nt.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_DL_NT=\ +SOURCE=.\Objects\sliceobject.c +DEP_CPP_SLICE=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7141,15 +3951,17 @@ DEP_CPP_DL_NT=\ ".\PC\config.h"\ -"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)" +"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_DL_NT=\ +SOURCE=.\Modules\main.c +DEP_CPP_MAIN_=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7185,35 +3997,27 @@ DEP_CPP_DL_NT=\ ".\PC\config.h"\ -"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)" +"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\PC\python_nt.def - -!IF "$(CFG)" == "python15 - Win32 Release" +SOURCE=.\Python\getopt.c -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\threadmodule.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_THREAD=\ +SOURCE=.\PC\import_nt.c +DEP_CPP_IMPORT_=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7234,6 +4038,7 @@ DEP_CPP_THREAD=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -7244,21 +4049,23 @@ DEP_CPP_THREAD=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + ".\Python\importdl.h"\ -"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" +"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_THREAD=\ +SOURCE=.\PC\getpath_nt.c +DEP_CPP_GETPA=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7279,6 +4086,7 @@ DEP_CPP_THREAD=\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ + ".\Include\osdefs.h"\ ".\Include\pydebug.h"\ ".\Include\pyerrors.h"\ ".\Include\pyfpe.h"\ @@ -7289,55 +4097,12 @@ DEP_CPP_THREAD=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ - ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\PC\python_nt.rc - -!IF "$(CFG)" == "python15 - Win32 Release" - -# ADD BASE RSC /l 0x409 /i "PC" -# ADD RSC /l 0x409 /i "PC" /i "Include" - -"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)" - $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" /d\ - "NDEBUG" $(SOURCE) - - -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" - -# ADD BASE RSC /l 0x409 /i "PC" /i "Include" -# ADD RSC /l 0x409 /i "PC" /i "Include" - -"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)" - $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\getbuildinfo.c -DEP_CPP_GETBU=\ - ".\PC\config.h"\ - - -"$(INTDIR)\getbuildinfo.obj" : $(SOURCE) $(DEP_CPP_GETBU) "$(INTDIR)" +"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -7345,13 +4110,9 @@ DEP_CPP_GETBU=\ ################################################################################ # Begin Source File -SOURCE=.\Python\pystate.c - -!IF "$(CFG)" == "python15 - Win32 Release" - -DEP_CPP_PYSTA=\ +SOURCE=.\PC\dl_nt.c +DEP_CPP_DL_NT=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7387,15 +4148,29 @@ DEP_CPP_PYSTA=\ ".\PC\config.h"\ -"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)" +"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\python_nt.def + +!IF "$(CFG)" == "python15 - Win32 Release" + !ELSEIF "$(CFG)" == "python15 - Win32 Debug" -DEP_CPP_PYSTA=\ +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\threadmodule.c +DEP_CPP_THREAD=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7426,33 +4201,67 @@ DEP_CPP_PYSTA=\ ".\Include\sliceobject.h"\ ".\Include\stringobject.h"\ ".\Include\sysmodule.h"\ + ".\Include\thread.h"\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ -"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)" +"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\python_nt.rc + +!IF "$(CFG)" == "python15 - Win32 Release" + +# ADD BASE RSC /l 0x409 /i "PC" +# ADD RSC /l 0x409 /i "PC" /i "Include" + +"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)" + $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" /d\ + "NDEBUG" $(SOURCE) + + +!ELSEIF "$(CFG)" == "python15 - Win32 Debug" + +# ADD BASE RSC /l 0x409 /i "PC" /i "Include" +# ADD RSC /l 0x409 /i "PC" /i "Include" + +"$(INTDIR)\python_nt.res" : $(SOURCE) "$(INTDIR)" + $(RSC) /l 0x409 /fo"$(INTDIR)/python_nt.res" /i "PC" /i "Include" $(SOURCE) + + !ENDIF # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\cStringIO.c +SOURCE=.\Modules\getbuildinfo.c +DEP_CPP_GETBU=\ + ".\PC\config.h"\ + -!IF "$(CFG)" == "python15 - Win32 Release" +"$(INTDIR)\getbuildinfo.obj" : $(SOURCE) $(DEP_CPP_GETBU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) -DEP_CPP_CSTRI=\ + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\pystate.c +DEP_CPP_PYSTA=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ ".\Include\complexobject.h"\ - ".\Include\cStringIO.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ @@ -7484,15 +4293,17 @@ DEP_CPP_CSTRI=\ ".\PC\config.h"\ -"$(INTDIR)\cStringIO.obj" : $(SOURCE) $(DEP_CPP_CSTRI) "$(INTDIR)" +"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File +SOURCE=.\Modules\cStringIO.c DEP_CPP_CSTRI=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7533,19 +4344,13 @@ DEP_CPP_CSTRI=\ $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File SOURCE=.\Modules\cPickle.c - -!IF "$(CFG)" == "python15 - Win32 Release" - DEP_CPP_CPICK=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7587,16 +4392,17 @@ DEP_CPP_CPICK=\ $(CPP) $(CPP_PROJ) $(SOURCE) -!ELSEIF "$(CFG)" == "python15 - Win32 Debug" +# End Source File +################################################################################ +# Begin Source File -DEP_CPP_CPICK=\ +SOURCE=.\Objects\dictobject.c +DEP_CPP_DICTO=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ ".\Include\complexobject.h"\ - ".\Include\cStringIO.h"\ ".\Include\dictobject.h"\ ".\Include\fileobject.h"\ ".\Include\floatobject.h"\ @@ -7610,7 +4416,6 @@ DEP_CPP_CPICK=\ ".\Include\modsupport.h"\ ".\Include\moduleobject.h"\ ".\Include\mymalloc.h"\ - ".\Include\mymath.h"\ ".\Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ @@ -7629,20 +4434,17 @@ DEP_CPP_CPICK=\ ".\PC\config.h"\ -"$(INTDIR)\cPickle.obj" : $(SOURCE) $(DEP_CPP_CPICK) "$(INTDIR)" +"$(INTDIR)\dictobject.obj" : $(SOURCE) $(DEP_CPP_DICTO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\dictobject.c -DEP_CPP_DICTO=\ +SOURCE=.\PC\msvcrtmodule.c +DEP_CPP_MSVCR=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7678,7 +4480,7 @@ DEP_CPP_DICTO=\ ".\PC\config.h"\ -"$(INTDIR)\dictobject.obj" : $(SOURCE) $(DEP_CPP_DICTO) "$(INTDIR)" +"$(INTDIR)\msvcrtmodule.obj" : $(SOURCE) $(DEP_CPP_MSVCR) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -7691,17 +4493,17 @@ DEP_CPP_DICTO=\ ################################################################################ # Begin Source File -SOURCE=.\PC\main_nt.c - -"$(INTDIR)\main_nt.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - +SOURCE=.\vc40\python15.lib # End Source File ################################################################################ # Begin Source File -SOURCE=.\vc40\python15.lib +SOURCE=.\Modules\python.c + +"$(INTDIR)\python.obj" : $(SOURCE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + # End Source File # End Target ################################################################################ @@ -7714,7 +4516,6 @@ SOURCE=.\vc40\python15.lib SOURCE=.\Modules\_tkinter.c DEP_CPP__TKIN=\ ".\Include\abstract.h"\ - ".\Include\bltinmodule.h"\ ".\Include\ceval.h"\ ".\Include\classobject.h"\ ".\Include\cobject.h"\ @@ -7750,6 +4551,11 @@ DEP_CPP__TKIN=\ ".\Include\traceback.h"\ ".\Include\tupleobject.h"\ ".\PC\config.h"\ + "C:\TCL\include\tcl.h"\ + "C:\TCL\include\tk.h"\ + "C:\TCL\include\X11\X.h"\ + "C:\TCL\include\X11\Xfuncproto.h"\ + "C:\TCL\include\X11\Xlib.h"\ "$(INTDIR)\_tkinter.obj" : $(SOURCE) $(DEP_CPP__TKIN) "$(INTDIR)"