diff options
author | Guido van Rossum <guido@python.org> | 1997-08-07 00:11:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-07 00:11:34 (GMT) |
commit | 29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7 (patch) | |
tree | 8a06d2a10367a7a09a1a77351109b42ccc0e96c8 /PC | |
parent | fb84255e6756adcb4c38e23d63c0f3c017012789 (diff) | |
download | cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.zip cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.tar.gz cpython-29c1ea5af0b9d309c1342db5b75f5e0c7618e8e7.tar.bz2 |
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.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 6 | ||||
-rw-r--r-- | PC/main_nt.c | 42 | ||||
-rwxr-xr-x | PC/msvcrtmodule.c | 95 | ||||
-rw-r--r-- | PC/python_nt.def | 29 | ||||
-rw-r--r-- | PC/vc40.mak | 3266 |
5 files changed, 155 insertions, 3283 deletions
diff --git a/PC/config.c b/PC/config.c index 97f9de4..39011bc 100644 --- a/PC/config.c +++ b/PC/config.c @@ -60,6 +60,9 @@ extern void 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 e174811..0000000 --- a/PC/main_nt.c +++ /dev/null @@ -1,42 +0,0 @@ -/* -*- C -*- *********************************************** -Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, -The Netherlands. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation, and that the names of Stichting Mathematisch -Centrum or CWI or Corporation for National Research Initiatives or -CNRI not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior -permission. - -While CWI is the initial source for this software, a modified version -is made available by the Corporation for National Research Initiatives -(CNRI) at the Internet address ftp://ftp.python.org. - -STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH -CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR -PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -******************************************************************/ - -/* Python interpreter main program */ - -extern int Py_Main(int, char **); - -int -main(argc, argv) - int argc; - char **argv; -{ - return Py_Main(argc, argv); -} diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c new file mode 100755 index 0000000..dec6285 --- /dev/null +++ b/PC/msvcrtmodule.c @@ -0,0 +1,95 @@ +/********************************************************* + + msvcrtmodule.c + + A Python interface to the Microsoft Visual C Runtime + Library, providing access to those non-portable, but + still useful routines. + + Only ever compiled with an MS compiler, so no attempt + has been made to avoid MS language extensions, etc... + +***********************************************************/ +#include "Python.h" +#include "malloc.h" +// Perform locking operations on a file. +static PyObject *msvcrt_locking(PyObject *self, PyObject *args) +{ + int mode; + long nBytes; + PyObject *obFile; + FILE *pFile; + if (!PyArg_ParseTuple(args,"O!il:locking", &obFile, PyFile_Type, &mode, &nBytes)) + return NULL; + if (NULL==(pFile = PyFile_AsFile(obFile))) + return NULL; + if (0 != _locking(_fileno(pFile), mode, nBytes)) + return PyErr_SetFromErrno(PyExc_IOError); + Py_INCREF(Py_None); + return Py_None; +} + +// Forces the malloc heap to clean itself up, and free unused blocks +// back to the OS. +static PyObject *msvcrt_heapmin(PyObject *self, PyObject *args) +{ + if (!PyArg_ParseTuple(args,":heapmin")) + return NULL; + if (_heapmin()!=0) + return PyErr_SetFromErrno(PyExc_MemoryError); // Is this the correct error??? + Py_INCREF(Py_None); + return Py_None; +} + +/******* +Left this out for now... + +// Convert an OS file handle to a Python file object (yay!). +// This may only work on NT +static PyObject *msvcrt_open_osfhandle(PyObject *self, PyObject *args) +{ + // Note that we get the underlying handle using the long + // "abstract" interface. This will allow either a native integer + // or else a Win32 extension PyHANDLE object, which implements an + // int() converter. + PyObject *obHandle; + PyObject *obInt; + int flags; + long handle; + if (!PyArg_ParseTuple(args,"Oi:open_osfhandle", &obHandle, &flags)) + return NULL; + + if (NULL==(obInt = PyNumber_Int(obHandle))) { + PyErr_Clear(); + PyErr_SetString(PyExc_TypeError, "The handle param must be an integer, = +or an object able to be converted to an integer"); + return NULL; + } + handle = PyInt_AsLong(obInt); + Py_DECREF(obInt); + rtHandle = _open_osfhandle(handle, flags); + if (rtHandle==-1) + return PyErr_SetFromErrno(PyExc_IOError); + + what mode? Should I just return here, and expose _fdopen + and setvbuf? + + f1=_fdopen(fd1, "w"); + setvbuf(f1, NULL, _IONBF, 0); + f=PyFile_FromFile(f1, cmdstring, "w", fclose); + +} +*****/ + +/* List of functions exported by this module */ +static struct PyMethodDef msvcrt_functions[] = { + {"locking", msvcrt_locking, 1}, + {"heapmin", msvcrt_heapmin, 1}, + {NULL, NULL} +}; + +__declspec(dllexport) void +initmsvcrt(void) +{ + Py_InitModule("msvcrt", msvcrt_functions); +} diff --git a/PC/python_nt.def b/PC/python_nt.def index 9a6ad9e..038d3d0 100644 --- a/PC/python_nt.def +++ b/PC/python_nt.def @@ -54,6 +54,8 @@ 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 1428e07..8d07039 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,110 +785,13 @@ DEP_CPP_LONGO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_LONGO=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longintrepr.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\mymath.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\listobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_LISTO=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_LISTO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -929,19 +832,13 @@ DEP_CPP_LISTO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\intobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_INTOB=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -981,116 +878,13 @@ DEP_CPP_INTOB=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_INTOB=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\importdl.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_IMPOR=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- ".\Python\importdl.h"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-NODEP_CPP_IMPOR=\
- ".\Python\dl.h"\
- ".\Python\macdefs.h"\
- ".\Python\macglue.h"\
-
-
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_IMPOR=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1139,19 +933,13 @@ NODEP_CPP_IMPOR=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\imageop.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_IMAGE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1191,52 +979,6 @@ DEP_CPP_IMAGE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_IMAGE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -1281,57 +1023,8 @@ DEP_CPP_GRAMI=\ # Begin Source File
SOURCE=.\Python\getversion.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_GETVE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\patchlevel.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_GETVE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1372,19 +1065,13 @@ DEP_CPP_GETVE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\getplatform.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_GETPL=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1424,52 +1111,6 @@ DEP_CPP_GETPL=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_GETPL=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -1490,12 +1131,8 @@ DEP_CPP_GETMT=\ # Begin Source File
SOURCE=.\Python\getcopyright.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_GETCO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1535,63 +1172,13 @@ DEP_CPP_GETCO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_GETCO=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\getcompiler.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_GETCOM=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1631,107 +1218,13 @@ DEP_CPP_GETCOM=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_GETCOM=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\getargs.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_GETAR=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_GETAR=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1771,8 +1264,6 @@ DEP_CPP_GETAR=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -1783,7 +1274,6 @@ SOURCE=.\Objects\funcobject.c DEP_CPP_FUNCO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1829,7 +1319,6 @@ DEP_CPP_FUNCO=\ DEP_CPP_FUNCO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1878,12 +1367,8 @@ DEP_CPP_FUNCO=\ # Begin Source File
SOURCE=.\Python\frozen.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_FROZE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -1923,63 +1408,13 @@ DEP_CPP_FROZE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_FROZE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\frameobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_FRAME=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2023,56 +1458,6 @@ DEP_CPP_FRAME=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_FRAME=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\frameobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\opcode.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\structmember.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -2080,7 +1465,6 @@ DEP_CPP_FRAME=\ SOURCE=.\Objects\floatobject.c
DEP_CPP_FLOAT=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2131,7 +1515,6 @@ SOURCE=.\Objects\fileobject.c DEP_CPP_FILEO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2178,7 +1561,6 @@ DEP_CPP_FILEO=\ DEP_CPP_FILEO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2228,12 +1610,8 @@ DEP_CPP_FILEO=\ # Begin Source File
SOURCE=.\Python\errors.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_ERROR=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2273,63 +1651,13 @@ DEP_CPP_ERROR=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_ERROR=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\PC\config.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_CONFI=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2369,108 +1697,13 @@ DEP_CPP_CONFI=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_CONFI=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\complexobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_COMPL=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\mymath.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_COMPL=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2511,69 +1744,13 @@ DEP_CPP_COMPL=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\compile.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_COMPI=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\graminit.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\node.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\opcode.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\structmember.h"\
- ".\Include\sysmodule.h"\
- ".\Include\token.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_COMPI=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2619,19 +1796,13 @@ DEP_CPP_COMPI=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\cobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_COBJE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2671,108 +1842,13 @@ DEP_CPP_COBJE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_COBJE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\cmathmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_CMATH=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\mymath.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_CMATH=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2813,8 +1889,6 @@ DEP_CPP_CMATH=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -2825,7 +1899,6 @@ SOURCE=.\Objects\classobject.c DEP_CPP_CLASS=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2870,7 +1943,6 @@ DEP_CPP_CLASS=\ DEP_CPP_CLASS=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2918,12 +1990,8 @@ DEP_CPP_CLASS=\ # Begin Source File
SOURCE=.\Python\ceval.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_CEVAL=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -2968,116 +2036,13 @@ DEP_CPP_CEVAL=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_CEVAL=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\eval.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\frameobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\opcode.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\thread.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\bltinmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_BLTIN=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\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)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_BLTIN=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3121,19 +2086,13 @@ DEP_CPP_BLTIN=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\binascii.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_BINAS=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3173,108 +2132,13 @@ DEP_CPP_BINAS=\ $(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"\
@@ -3315,19 +2179,13 @@ DEP_CPP_AUDIO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\arraymodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_ARRAY=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3368,53 +2226,6 @@ DEP_CPP_ARRAY=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_ARRAY=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3442,12 +2253,8 @@ DEP_CPP_ACCEL=\ # Begin Source File
SOURCE=.\Objects\abstract.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_ABSTR=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3487,52 +2294,6 @@ DEP_CPP_ABSTR=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_ABSTR=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3551,12 +2312,8 @@ DEP_CPP_YUVCO=\ # Begin Source File
SOURCE=.\Objects\typeobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_TYPEO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3596,107 +2353,13 @@ DEP_CPP_TYPEO=\ $(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"\
@@ -3736,19 +2399,13 @@ DEP_CPP_TUPLE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\traceback.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_TRACE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3792,56 +2449,6 @@ DEP_CPP_TRACE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_TRACE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\frameobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\structmember.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3867,12 +2474,8 @@ DEP_CPP_TOKEN=\ # Begin Source File
SOURCE=.\Modules\timemodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_TIMEM=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -3917,57 +2520,6 @@ DEP_CPP_TIMEM=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_TIMEM=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\mymath.h"\
- ".\Include\myproto.h"\
- ".\Include\myselect.h"\
- ".\Include\mytime.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- {$(INCLUDE)}"\sys\TIMEB.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3977,6 +2529,7 @@ 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"\
@@ -3984,6 +2537,9 @@ DEP_CPP_THREA=\ ".\Python\thread_solaris.h"\
{$(INCLUDE)}"\sys\TYPES.H"\
+NODEP_CPP_THREA=\
+ "\usr\include\thread.h"\
+
"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
@@ -3994,12 +2550,8 @@ DEP_CPP_THREA=\ # Begin Source File
SOURCE=.\Modules\structmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_STRUC=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -4040,64 +2592,13 @@ DEP_CPP_STRUC=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_STRUC=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\mymath.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\structmember.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_STRUCT=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -4138,108 +2639,13 @@ DEP_CPP_STRUCT=\ $(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"\
@@ -4279,64 +2685,13 @@ DEP_CPP_STROP=\ $(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"\
@@ -4377,19 +2732,13 @@ DEP_CPP_STRIN=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\soundex.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_SOUND=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -4429,108 +2778,13 @@ DEP_CPP_SOUND=\ $(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"\
@@ -4565,25 +2819,20 @@ DEP_CPP_SIGNA=\ ".\Include\traceback.h"\
".\Include\tupleobject.h"\
".\PC\config.h"\
+ {$(INCLUDE)}"\sys\TYPES.H"\
"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\rotormodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_ROTOR=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -4624,108 +2873,13 @@ DEP_CPP_ROTOR=\ $(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"\
@@ -4765,8 +2919,6 @@ DEP_CPP_RGBIM=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -4787,12 +2939,8 @@ DEP_CPP_REGEX=\ # Begin Source File
SOURCE=.\Modules\regexmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_REGEXM=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -4833,108 +2981,13 @@ DEP_CPP_REGEXM=\ $(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"\
@@ -4974,20 +3027,14 @@ DEP_CPP_RANGE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\pythonrun.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_PYTHO=\
".\Include\abstract.h"\
".\Include\bitset.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -5035,61 +3082,6 @@ DEP_CPP_PYTHO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_PYTHO=\
- ".\Include\abstract.h"\
- ".\Include\bitset.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\errcode.h"\
- ".\Include\eval.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\grammar.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\marshal.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\node.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\parsetok.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\thread.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -5143,12 +3135,8 @@ DEP_CPP_PARSER=\ # Begin Source File
SOURCE=.\Objects\object.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_OBJEC=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -5188,52 +3176,6 @@ DEP_CPP_OBJEC=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_OBJEC=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -5257,12 +3199,8 @@ DEP_CPP_NODE_=\ # Begin Source File
SOURCE=.\Modules\newmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_NEWMO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -5303,111 +3241,13 @@ DEP_CPP_NEWMO=\ $(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"\
@@ -5450,8 +3290,6 @@ DEP_CPP_MARSH=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -5486,56 +3324,8 @@ DEP_CPP_MYREA=\ # 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"\
@@ -5575,19 +3365,13 @@ DEP_CPP_MODUL=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\modsupport.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_MODSU=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -5627,63 +3411,13 @@ DEP_CPP_MODSU=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_MODSU=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\methodobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_METHO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -5724,109 +3458,13 @@ DEP_CPP_METHO=\ $(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"\
@@ -5867,8 +3505,6 @@ DEP_CPP_MD5MO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -5888,57 +3524,8 @@ DEP_CPP_MD5C_=\ # 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"\
@@ -5979,19 +3566,13 @@ DEP_CPP_MATHM=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\socketmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_SOCKE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6033,112 +3614,13 @@ DEP_CPP_SOCKE=\ $(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"\
@@ -6181,19 +3663,13 @@ DEP_CPP_SELEC=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\sysmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_SYSMO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6234,119 +3710,13 @@ DEP_CPP_SYSMO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_SYSMO=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Python\import.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_IMPORT=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\compile.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\errcode.h"\
- ".\Include\eval.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\marshal.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\node.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\token.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- ".\Python\importdl.h"\
-
-NODEP_CPP_IMPORT=\
- ".\Python\macglue.h"\
-
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_IMPORT=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6397,19 +3767,13 @@ NODEP_CPP_IMPORT=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\posixmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_POSIX=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6453,111 +3817,13 @@ DEP_CPP_POSIX=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_POSIX=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\mytime.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
- {$(INCLUDE)}"\sys\UTIME.H"\
-
-
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\operator.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_OPERA=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_OPERA=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6597,19 +3863,13 @@ DEP_CPP_OPERA=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\errnomodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_ERRNO=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6649,63 +3909,13 @@ DEP_CPP_ERRNO=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_ERRNO=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Objects\sliceobject.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_SLICE=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6745,63 +3955,13 @@ DEP_CPP_SLICE=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_SLICE=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\main.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_MAIN_=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6841,52 +4001,6 @@ DEP_CPP_MAIN_=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_MAIN_=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -6902,58 +4016,8 @@ SOURCE=.\Python\getopt.c # Begin Source File
SOURCE=.\PC\import_nt.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_IMPORT_=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
- ".\Python\importdl.h"\
-
-
-"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
DEP_CPP_IMPORT_=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -6995,19 +4059,13 @@ DEP_CPP_IMPORT_=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\PC\getpath_nt.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_GETPA=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -7048,64 +4106,13 @@ DEP_CPP_GETPA=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_GETPA=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\osdefs.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\PC\dl_nt.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_DL_NT=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -7145,52 +4152,6 @@ DEP_CPP_DL_NT=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_DL_NT=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -7208,12 +4169,8 @@ SOURCE=.\PC\python_nt.def # Begin Source File
SOURCE=.\Modules\threadmodule.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_THREAD=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -7254,53 +4211,6 @@ DEP_CPP_THREAD=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_THREAD=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\thread.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -7346,12 +4256,8 @@ DEP_CPP_GETBU=\ # Begin Source File
SOURCE=.\Python\pystate.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
DEP_CPP_PYSTA=\
".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
".\Include\ceval.h"\
".\Include\classobject.h"\
".\Include\cobject.h"\
@@ -7391,108 +4297,13 @@ DEP_CPP_PYSTA=\ $(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
-DEP_CPP_PYSTA=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\pystate.obj" : $(SOURCE) $(DEP_CPP_PYSTA) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\Modules\cStringIO.c
-
-!IF "$(CFG)" == "python15 - Win32 Release"
-
-DEP_CPP_CSTRI=\
- ".\Include\abstract.h"\
- ".\Include\bltinmodule.h"\
- ".\Include\ceval.h"\
- ".\Include\classobject.h"\
- ".\Include\cobject.h"\
- ".\Include\complexobject.h"\
- ".\Include\cStringIO.h"\
- ".\Include\dictobject.h"\
- ".\Include\fileobject.h"\
- ".\Include\floatobject.h"\
- ".\Include\funcobject.h"\
- ".\Include\import.h"\
- ".\Include\intobject.h"\
- ".\Include\intrcheck.h"\
- ".\Include\listobject.h"\
- ".\Include\longobject.h"\
- ".\Include\methodobject.h"\
- ".\Include\modsupport.h"\
- ".\Include\moduleobject.h"\
- ".\Include\mymalloc.h"\
- ".\Include\myproto.h"\
- ".\Include\object.h"\
- ".\Include\objimpl.h"\
- ".\Include\pydebug.h"\
- ".\Include\pyerrors.h"\
- ".\Include\pyfpe.h"\
- ".\Include\pystate.h"\
- ".\Include\Python.h"\
- ".\Include\pythonrun.h"\
- ".\Include\rangeobject.h"\
- ".\Include\sliceobject.h"\
- ".\Include\stringobject.h"\
- ".\Include\sysmodule.h"\
- ".\Include\traceback.h"\
- ".\Include\tupleobject.h"\
- ".\PC\config.h"\
-
-
-"$(INTDIR)\cStringIO.obj" : $(SOURCE) $(DEP_CPP_CSTRI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "python15 - Win32 Debug"
-
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)"
|