From eaf9b6cd7b18baba7b41b35535b73ddaff480d85 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 22 Aug 1996 00:06:59 +0000 Subject: More changes for NT, Guido style --- PC/_tkinter.def | 2 + PC/config.c | 2 - PC/config.h | 18 +- PC/getpath_nt.c | 4 - PC/import_nt.c | 6 +- PC/main_nt.c | 4 +- PC/python.def | 5 + PC/vc40.mak | 5766 ++++++++----------------------------------------------- PC/vc40.mdp | Bin 65536 -> 0 bytes PC/vc40.ncb | Bin 1803254 -> 0 bytes 10 files changed, 803 insertions(+), 5004 deletions(-) create mode 100644 PC/_tkinter.def delete mode 100644 PC/vc40.mdp delete mode 100644 PC/vc40.ncb diff --git a/PC/_tkinter.def b/PC/_tkinter.def new file mode 100644 index 0000000..c187838 --- /dev/null +++ b/PC/_tkinter.def @@ -0,0 +1,2 @@ +EXPORTS + init_tkinter diff --git a/PC/config.c b/PC/config.c index e32e7a1..b128aaa 100644 --- a/PC/config.c +++ b/PC/config.c @@ -33,7 +33,6 @@ extern void initarray(); extern void initaudioop(); extern void initbinascii(); extern void initcmath(); -extern void initenvironment(); extern void initerrno(); extern void initimageop(); extern void initmath(); @@ -65,7 +64,6 @@ struct _inittab inittab[] = { #endif {"binascii", initbinascii}, {"cmath", initcmath}, - {"environment", initenvironment}, {"errno", initerrno}, {"imageop", initimageop}, {"math", initmath}, diff --git a/PC/config.h b/PC/config.h index 5a1c4fb..0367e3b 100644 --- a/PC/config.h +++ b/PC/config.h @@ -44,6 +44,10 @@ compiler specific". Therefore, these should be very rare. #define PREFIX "" #define EXEC_PREFIX "" +#ifndef WIN32_PATCH_LEVEL +#define WIN32_PATCH_LEVEL "14" +#endif + /* Microsoft C defines _MSC_VER */ #if defined(_MSC_VER) && _MSC_VER > 850 @@ -52,12 +56,16 @@ compiler specific". Therefore, these should be very rare. #define MS_WIN32 #define MS_WINDOWS -#ifdef MS_COREDLL /* Python core is in a DLL */ +/* For NT the Python core is in a DLL by default. Test the +standard macro MS_COREDLL to find out. If you have an exception +you must define MS_NO_COREDLL (do not test this macro) */ +#ifndef MS_NO_COREDLL +#define MS_COREDLL /* Python core is in a DLL */ #define main Py_Main #ifndef USE_DL_EXPORT #define USE_DL_IMPORT #endif /* !USE_DL_EXPORT */ -#endif /* MS_COREDLL */ +#endif /* !MS_NO_COREDLL */ #ifdef _M_IX86 #define COMPILER "[MSC 32 bit (Intel)]" @@ -283,6 +291,12 @@ typedef int pid_t; /* Define this if your time.h defines altzone */ /* #define HAVE_ALTZONE */ +/* Define if you have the putenv function. */ +#ifdef MS_WIN32 +/* Does this exist on Win16? */ +#define HAVE_PUTENV +#endif + /* Define if your compiler supports function prototypes */ #define HAVE_PROTOTYPES diff --git a/PC/getpath_nt.c b/PC/getpath_nt.c index 045fc7c..039a39e 100644 --- a/PC/getpath_nt.c +++ b/PC/getpath_nt.c @@ -2,10 +2,6 @@ #include "osdefs.h" #include -#ifndef WIN32_PATCH_LEVEL -#define WIN32_PATCH_LEVEL "000" -#endif - /* PREFIX and EXEC_PREFIX are meaningless on Windows */ #ifndef PREFIX diff --git a/PC/import_nt.c b/PC/import_nt.c index cac4734..b6609a9 100644 --- a/PC/import_nt.c +++ b/PC/import_nt.c @@ -1,6 +1,6 @@ /******************************************************************** - importnt.c + import_nt.c Win32 specific import code. @@ -12,10 +12,6 @@ #include "import.h" #include "importdl.h" -#ifndef WIN32_PATCH_LEVEL -#define WIN32_PATCH_LEVEL "000" -#endif - extern BOOL PyWin_IsWin32s(); FILE *PyWin_FindRegisteredModule( const char *moduleName, struct filedescr **ppFileDesc, char *pathBuf, int pathLen) diff --git a/PC/main_nt.c b/PC/main_nt.c index 5b3db05..f475d9a 100644 --- a/PC/main_nt.c +++ b/PC/main_nt.c @@ -24,9 +24,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Python interpreter main program */ -#define HAVE_CONFIG_H -#include "Python.h" -#undef main +extern int Py_Main(int, char **); int main(argc, argv) diff --git a/PC/python.def b/PC/python.def index 0f8e04d..3ac4b90 100644 --- a/PC/python.def +++ b/PC/python.def @@ -231,3 +231,8 @@ EXPORTS PyTuple_GetItem PyTuple_SetItem PyTuple_GetSlice + Py_Main + PySlice_Type DATA + PySlice_New + PySlice_GetIndices + Py_GetProgramName diff --git a/PC/vc40.mak b/PC/vc40.mak index ce8a45e..f52bcf1 100644 --- a/PC/vc40.mak +++ b/PC/vc40.mak @@ -5,28 +5,25 @@ # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 !IF "$(CFG)" == "" -CFG=vc40_nt - Win32 Debug -!MESSAGE No configuration specified. Defaulting to vc40_nt - Win32 Debug. +CFG=_tkinter - Win32 Release +!MESSAGE No configuration specified. Defaulting to _tkinter - Win32 Release. !ENDIF -!IF "$(CFG)" != "vc40 - Win32 Release" && "$(CFG)" != "vc40 - Win32 Debug" &&\ - "$(CFG)" != "vc40_dll - Win32 Release" && "$(CFG)" != "vc40_dll - Win32 Debug"\ - && "$(CFG)" != "vc40_nt - Win32 Release" && "$(CFG)" != "vc40_nt - Win32 Debug" +!IF "$(CFG)" != "python14 - Win32 Release" && "$(CFG)" !=\ + "python - Win32 Release" && "$(CFG)" != "_tkinter - Win32 Release" !MESSAGE Invalid configuration "$(CFG)" specified. !MESSAGE You can specify a configuration when running NMAKE on this makefile !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE -!MESSAGE NMAKE /f "vc40.mak" CFG="vc40_nt - Win32 Debug" +!MESSAGE NMAKE /f "vc40.mak" CFG="_tkinter - Win32 Release" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE -!MESSAGE "vc40 - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "vc40 - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "vc40_dll - Win32 Release" (based on\ +!MESSAGE "python14 - Win32 Release" (based on\ + "Win32 (x86) Dynamic-Link Library") +!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "_tkinter - Win32 Release" (based on\ "Win32 (x86) Dynamic-Link Library") -!MESSAGE "vc40_dll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "vc40_nt - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "vc40_nt - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE !ERROR An invalid configuration is specified. !ENDIF @@ -38,253 +35,125 @@ NULL=nul !ENDIF ################################################################################ # Begin Project -# PROP Target_Last_Scanned "vc40_nt - Win32 Debug" +# PROP Target_Last_Scanned "_tkinter - Win32 Release" -!IF "$(CFG)" == "vc40 - Win32 Release" +!IF "$(CFG)" == "python14 - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" +# PROP BASE Output_Dir "python14\Release" +# PROP BASE Intermediate_Dir "python14\Release" +# PROP BASE Target_Dir "python14" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "pc\Release" -# PROP Intermediate_Dir "pc\Release" -# PROP Target_Dir "" -OUTDIR=.\pc\Release -INTDIR=.\pc\Release - -ALL : - -CLEAN : - -@erase - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -CPP=cl.exe -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c -CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\ - "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\ - /Fo"$(INTDIR)/" /c -CPP_OBJS=.\pc\Release/ -CPP_SBRS= - -.c{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.c{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" -BSC32_SBRS= -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\ - comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\ - odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no\ - /pdb:"$(OUTDIR)/vc40.pdb" /machine:I386 /out:"$(OUTDIR)/vc40.exe" -LINK32_OBJS= - -!ELSEIF "$(CFG)" == "vc40 - Win32 Debug" +# PROP Output_Dir "vc40" +# PROP Intermediate_Dir "vc40/tmp" +# PROP Target_Dir "python14" +OUTDIR=.\vc40 +INTDIR=.\vc40/tmp -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "pc\Debug" -# PROP Intermediate_Dir "pc\Debug" -# PROP Target_Dir "" -OUTDIR=.\pc\Debug -INTDIR=.\pc\Debug - -ALL : +ALL : "$(OUTDIR)\python14.dll" CLEAN : - -@erase + -@erase ".\vc40\python14.dll" + -@erase ".\vc40\tmp\longobject.obj" + -@erase ".\vc40\tmp\listobject.obj" + -@erase ".\vc40\tmp\intobject.obj" + -@erase ".\vc40\tmp\importdl.obj" + -@erase ".\vc40\tmp\imageop.obj" + -@erase ".\vc40\tmp\grammar1.obj" + -@erase ".\vc40\tmp\graminit.obj" + -@erase ".\vc40\tmp\getversion.obj" + -@erase ".\vc40\tmp\getplatform.obj" + -@erase ".\vc40\tmp\getmtime.obj" + -@erase ".\vc40\tmp\getcopyright.obj" + -@erase ".\vc40\tmp\getcompiler.obj" + -@erase ".\vc40\tmp\getargs.obj" + -@erase ".\vc40\tmp\funcobject.obj" + -@erase ".\vc40\tmp\frozen.obj" + -@erase ".\vc40\tmp\frameobject.obj" + -@erase ".\vc40\tmp\floatobject.obj" + -@erase ".\vc40\tmp\fileobject.obj" + -@erase ".\vc40\tmp\errors.obj" + -@erase ".\vc40\tmp\config.obj" + -@erase ".\vc40\tmp\complexobject.obj" + -@erase ".\vc40\tmp\compile.obj" + -@erase ".\vc40\tmp\cobject.obj" + -@erase ".\vc40\tmp\cmathmodule.obj" + -@erase ".\vc40\tmp\classobject.obj" + -@erase ".\vc40\tmp\cgensupport.obj" + -@erase ".\vc40\tmp\ceval.obj" + -@erase ".\vc40\tmp\bltinmodule.obj" + -@erase ".\vc40\tmp\binascii.obj" + -@erase ".\vc40\tmp\audioop.obj" + -@erase ".\vc40\tmp\arraymodule.obj" + -@erase ".\vc40\tmp\accessobject.obj" + -@erase ".\vc40\tmp\acceler.obj" + -@erase ".\vc40\tmp\abstract.obj" + -@erase ".\vc40\tmp\yuvconvert.obj" + -@erase ".\vc40\tmp\typeobject.obj" + -@erase ".\vc40\tmp\tupleobject.obj" + -@erase ".\vc40\tmp\traceback.obj" + -@erase ".\vc40\tmp\tokenizer.obj" + -@erase ".\vc40\tmp\timemodule.obj" + -@erase ".\vc40\tmp\threadmodule.obj" + -@erase ".\vc40\tmp\thread.obj" + -@erase ".\vc40\tmp\structmodule.obj" + -@erase ".\vc40\tmp\structmember.obj" + -@erase ".\vc40\tmp\stropmodule.obj" + -@erase ".\vc40\tmp\stringobject.obj" + -@erase ".\vc40\tmp\soundex.obj" + -@erase ".\vc40\tmp\signalmodule.obj" + -@erase ".\vc40\tmp\rotormodule.obj" + -@erase ".\vc40\tmp\rgbimgmodule.obj" + -@erase ".\vc40\tmp\regexpr.obj" + -@erase ".\vc40\tmp\regexmodule.obj" + -@erase ".\vc40\tmp\rangeobject.obj" + -@erase ".\vc40\tmp\pythonrun.obj" + -@erase ".\vc40\tmp\parsetok.obj" + -@erase ".\vc40\tmp\parser.obj" + -@erase ".\vc40\tmp\object.obj" + -@erase ".\vc40\tmp\node.obj" + -@erase ".\vc40\tmp\newmodule.obj" + -@erase ".\vc40\tmp\marshal.obj" + -@erase ".\vc40\tmp\mystrtoul.obj" + -@erase ".\vc40\tmp\myreadline.obj" + -@erase ".\vc40\tmp\moduleobject.obj" + -@erase ".\vc40\tmp\modsupport.obj" + -@erase ".\vc40\tmp\methodobject.obj" + -@erase ".\vc40\tmp\md5module.obj" + -@erase ".\vc40\tmp\md5c.obj" + -@erase ".\vc40\tmp\mathmodule.obj" + -@erase ".\vc40\tmp\mappingobject.obj" + -@erase ".\vc40\tmp\socketmodule.obj" + -@erase ".\vc40\tmp\selectmodule.obj" + -@erase ".\vc40\tmp\sysmodule.obj" + -@erase ".\vc40\tmp\import.obj" + -@erase ".\vc40\tmp\posixmodule.obj" + -@erase ".\vc40\tmp\operator.obj" + -@erase ".\vc40\tmp\errnomodule.obj" + -@erase ".\vc40\tmp\sliceobject.obj" + -@erase ".\vc40\tmp\main.obj" + -@erase ".\vc40\tmp\getopt.obj" + -@erase ".\vc40\tmp\import_nt.obj" + -@erase ".\vc40\tmp\getpath_nt.obj" + -@erase ".\vc40\tmp\dl_nt.obj" + -@erase ".\vc40\python14.lib" + -@erase ".\vc40\python14.exp" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" -CPP=cl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c -CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\ - /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\ - /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c -CPP_OBJS=.\pc\Debug/ -CPP_SBRS= - -.c{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.c{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" -BSC32_SBRS= -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 -# ADD LINK32 wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 -LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\ - comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\ - odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes\ - /pdb:"$(OUTDIR)/vc40.pdb" /debug /machine:I386 /out:"$(OUTDIR)/vc40.exe" -LINK32_OBJS= - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "vc40_dll\Release" -# PROP BASE Intermediate_Dir "vc40_dll\Release" -# PROP BASE Target_Dir "vc40_dll" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "vc40_dll\Release" -# PROP Intermediate_Dir "vc40_dll\Release" -# PROP Target_Dir "vc40_dll" -OUTDIR=.\vc40_dll\Release -INTDIR=.\vc40_dll\Release - -ALL : "$(OUTDIR)\py14an.dll" - -CLEAN : - -@erase ".\vc40_dll\Release\py14an.dll" - -@erase ".\vc40_dll\Release\thread.obj" - -@erase ".\vc40_dll\Release\classobject.obj" - -@erase ".\vc40_dll\Release\bltinmodule.obj" - -@erase ".\vc40_dll\Release\object.obj" - -@erase ".\vc40_dll\Release\getargs.obj" - -@erase ".\vc40_dll\Release\getcompiler.obj" - -@erase ".\vc40_dll\Release\graminit.obj" - -@erase ".\vc40_dll\Release\importdl.obj" - -@erase ".\vc40_dll\Release\structmodule.obj" - -@erase ".\vc40_dll\Release\mystrtoul.obj" - -@erase ".\vc40_dll\Release\errnomodule.obj" - -@erase ".\vc40_dll\Release\frameobject.obj" - -@erase ".\vc40_dll\Release\fileobject.obj" - -@erase ".\vc40_dll\Release\longobject.obj" - -@erase ".\vc40_dll\Release\regexmodule.obj" - -@erase ".\vc40_dll\Release\environment.obj" - -@erase ".\vc40_dll\Release\audioop.obj" - -@erase ".\vc40_dll\Release\floatobject.obj" - -@erase ".\vc40_dll\Release\cobject.obj" - -@erase ".\vc40_dll\Release\frozen.obj" - -@erase ".\vc40_dll\Release\moduleobject.obj" - -@erase ".\vc40_dll\Release\node.obj" - -@erase ".\vc40_dll\Release\cmathmodule.obj" - -@erase ".\vc40_dll\Release\grammar1.obj" - -@erase ".\vc40_dll\Release\abstract.obj" - -@erase ".\vc40_dll\Release\complexobject.obj" - -@erase ".\vc40_dll\Release\arraymodule.obj" - -@erase ".\vc40_dll\Release\selectmodule.obj" - -@erase ".\vc40_dll\Release\structmember.obj" - -@erase ".\vc40_dll\Release\acceler.obj" - -@erase ".\vc40_dll\Release\timemodule.obj" - -@erase ".\vc40_dll\Release\accessobject.obj" - -@erase ".\vc40_dll\Release\socketmodule.obj" - -@erase ".\vc40_dll\Release\soundex.obj" - -@erase ".\vc40_dll\Release\tokenizer.obj" - -@erase ".\vc40_dll\Release\stringobject.obj" - -@erase ".\vc40_dll\Release\stropmodule.obj" - -@erase ".\vc40_dll\Release\intobject.obj" - -@erase ".\vc40_dll\Release\parsetok.obj" - -@erase ".\vc40_dll\Release\getcopyright.obj" - -@erase ".\vc40_dll\Release\getpath.obj" - -@erase ".\vc40_dll\Release\listobject.obj" - -@erase ".\vc40_dll\Release\typeobject.obj" - -@erase ".\vc40_dll\Release\rangeobject.obj" - -@erase ".\vc40_dll\Release\md5module.obj" - -@erase ".\vc40_dll\Release\traceback.obj" - -@erase ".\vc40_dll\Release\sysmodule.obj" - -@erase ".\vc40_dll\Release\marshal.obj" - -@erase ".\vc40_dll\Release\yuvconvert.obj" - -@erase ".\vc40_dll\Release\pythonrun.obj" - -@erase ".\vc40_dll\Release\getversion.obj" - -@erase ".\vc40_dll\Release\threadmodule.obj" - -@erase ".\vc40_dll\Release\mathmodule.obj" - -@erase ".\vc40_dll\Release\ceval.obj" - -@erase ".\vc40_dll\Release\compile.obj" - -@erase ".\vc40_dll\Release\import.obj" - -@erase ".\vc40_dll\Release\md5c.obj" - -@erase ".\vc40_dll\Release\posixmodule.obj" - -@erase ".\vc40_dll\Release\errors.obj" - -@erase ".\vc40_dll\Release\binascii.obj" - -@erase ".\vc40_dll\Release\cgensupport.obj" - -@erase ".\vc40_dll\Release\methodobject.obj" - -@erase ".\vc40_dll\Release\rgbimgmodule.obj" - -@erase ".\vc40_dll\Release\getplatform.obj" - -@erase ".\vc40_dll\Release\signalmodule.obj" - -@erase ".\vc40_dll\Release\parser.obj" - -@erase ".\vc40_dll\Release\getmtime.obj" - -@erase ".\vc40_dll\Release\funcobject.obj" - -@erase ".\vc40_dll\Release\operator.obj" - -@erase ".\vc40_dll\Release\mappingobject.obj" - -@erase ".\vc40_dll\Release\myreadline.obj" - -@erase ".\vc40_dll\Release\config.obj" - -@erase ".\vc40_dll\Release\imageop.obj" - -@erase ".\vc40_dll\Release\rotormodule.obj" - -@erase ".\vc40_dll\Release\regexpr.obj" - -@erase ".\vc40_dll\Release\tupleobject.obj" - -@erase ".\vc40_dll\Release\modsupport.obj" - -@erase ".\vc40_dll\Release\newmodule.obj" - -@erase ".\vc40_dll\Release\sliceobject.obj" - -@erase ".\vc40_dll\Release\py14an.lib" - -@erase ".\vc40_dll\Release\py14an.exp" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" +"$(INTDIR)" : + if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)" 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" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c -CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\ - "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\ - /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /c -CPP_OBJS=.\vc40_dll\Release/ +# ADD CPP /nologo /MD /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c +CPP_PROJ=/nologo /MD /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32"\ + /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /Fp"$(INTDIR)/python14.pch"\ + /YX /Fo"$(INTDIR)/" /c +CPP_OBJS=.\vc40/tmp/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: @@ -315,458 +184,141 @@ RSC=rc.exe BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" +BSC32_FLAGS=/nologo /o"$(OUTDIR)/python14.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /machine:I386 /out:"vc40_dll\Release/py14an.dll" +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:no\ - /pdb:"$(OUTDIR)/py14an.pdb" /machine:I386 /def:".\PC\python.def"\ - /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" -DEF_FILE= \ - ".\PC\python.def" -LINK32_OBJS= \ - ".\vc40_dll\Release\thread.obj" \ - ".\vc40_dll\Release\classobject.obj" \ - ".\vc40_dll\Release\bltinmodule.obj" \ - ".\vc40_dll\Release\object.obj" \ - ".\vc40_dll\Release\getargs.obj" \ - ".\vc40_dll\Release\getcompiler.obj" \ - ".\vc40_dll\Release\graminit.obj" \ - ".\vc40_dll\Release\importdl.obj" \ - ".\vc40_dll\Release\structmodule.obj" \ - ".\vc40_dll\Release\mystrtoul.obj" \ - ".\vc40_dll\Release\errnomodule.obj" \ - ".\vc40_dll\Release\frameobject.obj" \ - ".\vc40_dll\Release\fileobject.obj" \ - ".\vc40_dll\Release\longobject.obj" \ - ".\vc40_dll\Release\regexmodule.obj" \ - ".\vc40_dll\Release\environment.obj" \ - ".\vc40_dll\Release\audioop.obj" \ - ".\vc40_dll\Release\floatobject.obj" \ - ".\vc40_dll\Release\cobject.obj" \ - ".\vc40_dll\Release\frozen.obj" \ - ".\vc40_dll\Release\moduleobject.obj" \ - ".\vc40_dll\Release\node.obj" \ - ".\vc40_dll\Release\cmathmodule.obj" \ - ".\vc40_dll\Release\grammar1.obj" \ - ".\vc40_dll\Release\abstract.obj" \ - ".\vc40_dll\Release\complexobject.obj" \ - ".\vc40_dll\Release\arraymodule.obj" \ - ".\vc40_dll\Release\selectmodule.obj" \ - ".\vc40_dll\Release\structmember.obj" \ - ".\vc40_dll\Release\acceler.obj" \ - ".\vc40_dll\Release\timemodule.obj" \ - ".\vc40_dll\Release\accessobject.obj" \ - ".\vc40_dll\Release\socketmodule.obj" \ - ".\vc40_dll\Release\soundex.obj" \ - ".\vc40_dll\Release\tokenizer.obj" \ - ".\vc40_dll\Release\stringobject.obj" \ - ".\vc40_dll\Release\stropmodule.obj" \ - ".\vc40_dll\Release\intobject.obj" \ - ".\vc40_dll\Release\parsetok.obj" \ - ".\vc40_dll\Release\getcopyright.obj" \ - ".\vc40_dll\Release\getpath.obj" \ - ".\vc40_dll\Release\listobject.obj" \ - ".\vc40_dll\Release\typeobject.obj" \ - ".\vc40_dll\Release\rangeobject.obj" \ - ".\vc40_dll\Release\md5module.obj" \ - ".\vc40_dll\Release\traceback.obj" \ - ".\vc40_dll\Release\sysmodule.obj" \ - ".\vc40_dll\Release\marshal.obj" \ - ".\vc40_dll\Release\yuvconvert.obj" \ - ".\vc40_dll\Release\pythonrun.obj" \ - ".\vc40_dll\Release\getversion.obj" \ - ".\vc40_dll\Release\threadmodule.obj" \ - ".\vc40_dll\Release\mathmodule.obj" \ - ".\vc40_dll\Release\ceval.obj" \ - ".\vc40_dll\Release\compile.obj" \ - ".\vc40_dll\Release\import.obj" \ - ".\vc40_dll\Release\md5c.obj" \ - ".\vc40_dll\Release\posixmodule.obj" \ - ".\vc40_dll\Release\errors.obj" \ - ".\vc40_dll\Release\binascii.obj" \ - ".\vc40_dll\Release\cgensupport.obj" \ - ".\vc40_dll\Release\methodobject.obj" \ - ".\vc40_dll\Release\rgbimgmodule.obj" \ - ".\vc40_dll\Release\getplatform.obj" \ - ".\vc40_dll\Release\signalmodule.obj" \ - ".\vc40_dll\Release\parser.obj" \ - ".\vc40_dll\Release\getmtime.obj" \ - ".\vc40_dll\Release\funcobject.obj" \ - ".\vc40_dll\Release\operator.obj" \ - ".\vc40_dll\Release\mappingobject.obj" \ - ".\vc40_dll\Release\myreadline.obj" \ - ".\vc40_dll\Release\config.obj" \ - ".\vc40_dll\Release\imageop.obj" \ - ".\vc40_dll\Release\rotormodule.obj" \ - ".\vc40_dll\Release\regexpr.obj" \ - ".\vc40_dll\Release\tupleobject.obj" \ - ".\vc40_dll\Release\modsupport.obj" \ - ".\vc40_dll\Release\newmodule.obj" \ - ".\vc40_dll\Release\sliceobject.obj" - -"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) - $(LINK32) @<< - $(LINK32_FLAGS) $(LINK32_OBJS) -<< - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "vc40_dll\Debug" -# PROP BASE Intermediate_Dir "vc40_dll\Debug" -# PROP BASE Target_Dir "vc40_dll" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "vc40_dll\Debug" -# PROP Intermediate_Dir "vc40_dll\Debug" -# PROP Target_Dir "vc40_dll" -OUTDIR=.\vc40_dll\Debug -INTDIR=.\vc40_dll\Debug - -ALL : "$(OUTDIR)\py14an.dll" - -CLEAN : - -@erase ".\vc40_dll\Debug\vc40.pdb" - -@erase ".\vc40_dll\Debug\vc40.idb" - -@erase ".\vc40_dll\Debug\py14an.dll" - -@erase ".\vc40_dll\Debug\threadmodule.obj" - -@erase ".\vc40_dll\Debug\frameobject.obj" - -@erase ".\vc40_dll\Debug\fileobject.obj" - -@erase ".\vc40_dll\Debug\longobject.obj" - -@erase ".\vc40_dll\Debug\posixmodule.obj" - -@erase ".\vc40_dll\Debug\cgensupport.obj" - -@erase ".\vc40_dll\Debug\soundex.obj" - -@erase ".\vc40_dll\Debug\tokenizer.obj" - -@erase ".\vc40_dll\Debug\selectmodule.obj" - -@erase ".\vc40_dll\Debug\intobject.obj" - -@erase ".\vc40_dll\Debug\signalmodule.obj" - -@erase ".\vc40_dll\Debug\getplatform.obj" - -@erase ".\vc40_dll\Debug\accessobject.obj" - -@erase ".\vc40_dll\Debug\md5c.obj" - -@erase ".\vc40_dll\Debug\imageop.obj" - -@erase ".\vc40_dll\Debug\getpath.obj" - -@erase ".\vc40_dll\Debug\timemodule.obj" - -@erase ".\vc40_dll\Debug\md5module.obj" - -@erase ".\vc40_dll\Debug\traceback.obj" - -@erase ".\vc40_dll\Debug\sysmodule.obj" - -@erase ".\vc40_dll\Debug\marshal.obj" - -@erase ".\vc40_dll\Debug\stringobject.obj" - -@erase ".\vc40_dll\Debug\getmtime.obj" - -@erase ".\vc40_dll\Debug\import.obj" - -@erase ".\vc40_dll\Debug\pythonrun.obj" - -@erase ".\vc40_dll\Debug\mappingobject.obj" - -@erase ".\vc40_dll\Debug\operator.obj" - -@erase ".\vc40_dll\Debug\errors.obj" - -@erase ".\vc40_dll\Debug\getargs.obj" - -@erase ".\vc40_dll\Debug\rotormodule.obj" - -@erase ".\vc40_dll\Debug\tupleobject.obj" - -@erase ".\vc40_dll\Debug\ceval.obj" - -@erase ".\vc40_dll\Debug\modsupport.obj" - -@erase ".\vc40_dll\Debug\listobject.obj" - -@erase ".\vc40_dll\Debug\typeobject.obj" - -@erase ".\vc40_dll\Debug\classobject.obj" - -@erase ".\vc40_dll\Debug\parser.obj" - -@erase ".\vc40_dll\Debug\yuvconvert.obj" - -@erase ".\vc40_dll\Debug\getversion.obj" - -@erase ".\vc40_dll\Debug\bltinmodule.obj" - -@erase ".\vc40_dll\Debug\structmodule.obj" - -@erase ".\vc40_dll\Debug\getcompiler.obj" - -@erase ".\vc40_dll\Debug\mathmodule.obj" - -@erase ".\vc40_dll\Debug\methodobject.obj" - -@erase ".\vc40_dll\Debug\rgbimgmodule.obj" - -@erase ".\vc40_dll\Debug\importdl.obj" - -@erase ".\vc40_dll\Debug\errnomodule.obj" - -@erase ".\vc40_dll\Debug\regexmodule.obj" - -@erase ".\vc40_dll\Debug\environment.obj" - -@erase ".\vc40_dll\Debug\binascii.obj" - -@erase ".\vc40_dll\Debug\floatobject.obj" - -@erase ".\vc40_dll\Debug\moduleobject.obj" - -@erase ".\vc40_dll\Debug\acceler.obj" - -@erase ".\vc40_dll\Debug\thread.obj" - -@erase ".\vc40_dll\Debug\cmathmodule.obj" - -@erase ".\vc40_dll\Debug\regexpr.obj" - -@erase ".\vc40_dll\Debug\newmodule.obj" - -@erase ".\vc40_dll\Debug\funcobject.obj" - -@erase ".\vc40_dll\Debug\object.obj" - -@erase ".\vc40_dll\Debug\structmember.obj" - -@erase ".\vc40_dll\Debug\arraymodule.obj" - -@erase ".\vc40_dll\Debug\complexobject.obj" - -@erase ".\vc40_dll\Debug\grammar1.obj" - -@erase ".\vc40_dll\Debug\abstract.obj" - -@erase ".\vc40_dll\Debug\myreadline.obj" - -@erase ".\vc40_dll\Debug\node.obj" - -@erase ".\vc40_dll\Debug\socketmodule.obj" - -@erase ".\vc40_dll\Debug\mystrtoul.obj" - -@erase ".\vc40_dll\Debug\frozen.obj" - -@erase ".\vc40_dll\Debug\stropmodule.obj" - -@erase ".\vc40_dll\Debug\getcopyright.obj" - -@erase ".\vc40_dll\Debug\audioop.obj" - -@erase ".\vc40_dll\Debug\compile.obj" - -@erase ".\vc40_dll\Debug\cobject.obj" - -@erase ".\vc40_dll\Debug\parsetok.obj" - -@erase ".\vc40_dll\Debug\rangeobject.obj" - -@erase ".\vc40_dll\Debug\config.obj" - -@erase ".\vc40_dll\Debug\graminit.obj" - -@erase ".\vc40_dll\Debug\sliceobject.obj" - -@erase ".\vc40_dll\Debug\py14an.ilk" - -@erase ".\vc40_dll\Debug\py14an.lib" - -@erase ".\vc40_dll\Debug\py14an.exp" - -@erase ".\vc40_dll\Debug\py14an.pdb" - -"$(OUTDIR)" : - if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" - -CPP=cl.exe -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c -CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\ - /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\ - /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c -CPP_OBJS=.\vc40_dll\Debug/ -CPP_SBRS= - -.c{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_OBJS)}.obj: - $(CPP) $(CPP_PROJ) $< - -.c{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cpp{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -.cxx{$(CPP_SBRS)}.sbr: - $(CPP) $(CPP_PROJ) $< - -MTL=mktyplib.exe -# ADD BASE MTL /nologo /D "_DEBUG" /win32 -# ADD MTL /nologo /D "_DEBUG" /win32 -MTL_PROJ=/nologo /D "_DEBUG" /win32 -RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" -BSC32_SBRS= -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"vc40_dll\Debug/py14an.dll" -LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ - advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ - odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:yes\ - /pdb:"$(OUTDIR)/py14an.pdb" /debug /machine:I386 /def:".\PC\python.def"\ - /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" + /pdb:"$(OUTDIR)/python14.pdb" /machine:I386 /def:".\PC\python_nt.def"\ + /out:"$(OUTDIR)/python14.dll" /implib:"$(OUTDIR)/python14.lib" DEF_FILE= \ - ".\PC\python.def" + ".\PC\python_nt.def" LINK32_OBJS= \ - ".\vc40_dll\Debug\threadmodule.obj" \ - ".\vc40_dll\Debug\frameobject.obj" \ - ".\vc40_dll\Debug\fileobject.obj" \ - ".\vc40_dll\Debug\longobject.obj" \ - ".\vc40_dll\Debug\posixmodule.obj" \ - ".\vc40_dll\Debug\cgensupport.obj" \ - ".\vc40_dll\Debug\soundex.obj" \ - ".\vc40_dll\Debug\tokenizer.obj" \ - ".\vc40_dll\Debug\selectmodule.obj" \ - ".\vc40_dll\Debug\intobject.obj" \ - ".\vc40_dll\Debug\signalmodule.obj" \ - ".\vc40_dll\Debug\getplatform.obj" \ - ".\vc40_dll\Debug\accessobject.obj" \ - ".\vc40_dll\Debug\md5c.obj" \ - ".\vc40_dll\Debug\imageop.obj" \ - ".\vc40_dll\Debug\getpath.obj" \ - ".\vc40_dll\Debug\timemodule.obj" \ - ".\vc40_dll\Debug\md5module.obj" \ - ".\vc40_dll\Debug\traceback.obj" \ - ".\vc40_dll\Debug\sysmodule.obj" \ - ".\vc40_dll\Debug\marshal.obj" \ - ".\vc40_dll\Debug\stringobject.obj" \ - ".\vc40_dll\Debug\getmtime.obj" \ - ".\vc40_dll\Debug\import.obj" \ - ".\vc40_dll\Debug\pythonrun.obj" \ - ".\vc40_dll\Debug\mappingobject.obj" \ - ".\vc40_dll\Debug\operator.obj" \ - ".\vc40_dll\Debug\errors.obj" \ - ".\vc40_dll\Debug\getargs.obj" \ - ".\vc40_dll\Debug\rotormodule.obj" \ - ".\vc40_dll\Debug\tupleobject.obj" \ - ".\vc40_dll\Debug\ceval.obj" \ - ".\vc40_dll\Debug\modsupport.obj" \ - ".\vc40_dll\Debug\listobject.obj" \ - ".\vc40_dll\Debug\typeobject.obj" \ - ".\vc40_dll\Debug\classobject.obj" \ - ".\vc40_dll\Debug\parser.obj" \ - ".\vc40_dll\Debug\yuvconvert.obj" \ - ".\vc40_dll\Debug\getversion.obj" \ - ".\vc40_dll\Debug\bltinmodule.obj" \ - ".\vc40_dll\Debug\structmodule.obj" \ - ".\vc40_dll\Debug\getcompiler.obj" \ - ".\vc40_dll\Debug\mathmodule.obj" \ - ".\vc40_dll\Debug\methodobject.obj" \ - ".\vc40_dll\Debug\rgbimgmodule.obj" \ - ".\vc40_dll\Debug\importdl.obj" \ - ".\vc40_dll\Debug\errnomodule.obj" \ - ".\vc40_dll\Debug\regexmodule.obj" \ - ".\vc40_dll\Debug\environment.obj" \ - ".\vc40_dll\Debug\binascii.obj" \ - ".\vc40_dll\Debug\floatobject.obj" \ - ".\vc40_dll\Debug\moduleobject.obj" \ - ".\vc40_dll\Debug\acceler.obj" \ - ".\vc40_dll\Debug\thread.obj" \ - ".\vc40_dll\Debug\cmathmodule.obj" \ - ".\vc40_dll\Debug\regexpr.obj" \ - ".\vc40_dll\Debug\newmodule.obj" \ - ".\vc40_dll\Debug\funcobject.obj" \ - ".\vc40_dll\Debug\object.obj" \ - ".\vc40_dll\Debug\structmember.obj" \ - ".\vc40_dll\Debug\arraymodule.obj" \ - ".\vc40_dll\Debug\complexobject.obj" \ - ".\vc40_dll\Debug\grammar1.obj" \ - ".\vc40_dll\Debug\abstract.obj" \ - ".\vc40_dll\Debug\myreadline.obj" \ - ".\vc40_dll\Debug\node.obj" \ - ".\vc40_dll\Debug\socketmodule.obj" \ - ".\vc40_dll\Debug\mystrtoul.obj" \ - ".\vc40_dll\Debug\frozen.obj" \ - ".\vc40_dll\Debug\stropmodule.obj" \ - ".\vc40_dll\Debug\getcopyright.obj" \ - ".\vc40_dll\Debug\audioop.obj" \ - ".\vc40_dll\Debug\compile.obj" \ - ".\vc40_dll\Debug\cobject.obj" \ - ".\vc40_dll\Debug\parsetok.obj" \ - ".\vc40_dll\Debug\rangeobject.obj" \ - ".\vc40_dll\Debug\config.obj" \ - ".\vc40_dll\Debug\graminit.obj" \ - ".\vc40_dll\Debug\sliceobject.obj" - -"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) + ".\vc40\tmp\longobject.obj" \ + ".\vc40\tmp\listobject.obj" \ + ".\vc40\tmp\intobject.obj" \ + ".\vc40\tmp\importdl.obj" \ + ".\vc40\tmp\imageop.obj" \ + ".\vc40\tmp\grammar1.obj" \ + ".\vc40\tmp\graminit.obj" \ + ".\vc40\tmp\getversion.obj" \ + ".\vc40\tmp\getplatform.obj" \ + ".\vc40\tmp\getmtime.obj" \ + ".\vc40\tmp\getcopyright.obj" \ + ".\vc40\tmp\getcompiler.obj" \ + ".\vc40\tmp\getargs.obj" \ + ".\vc40\tmp\funcobject.obj" \ + ".\vc40\tmp\frozen.obj" \ + ".\vc40\tmp\frameobject.obj" \ + ".\vc40\tmp\floatobject.obj" \ + ".\vc40\tmp\fileobject.obj" \ + ".\vc40\tmp\errors.obj" \ + ".\vc40\tmp\config.obj" \ + ".\vc40\tmp\complexobject.obj" \ + ".\vc40\tmp\compile.obj" \ + ".\vc40\tmp\cobject.obj" \ + ".\vc40\tmp\cmathmodule.obj" \ + ".\vc40\tmp\classobject.obj" \ + ".\vc40\tmp\cgensupport.obj" \ + ".\vc40\tmp\ceval.obj" \ + ".\vc40\tmp\bltinmodule.obj" \ + ".\vc40\tmp\binascii.obj" \ + ".\vc40\tmp\audioop.obj" \ + ".\vc40\tmp\arraymodule.obj" \ + ".\vc40\tmp\accessobject.obj" \ + ".\vc40\tmp\acceler.obj" \ + ".\vc40\tmp\abstract.obj" \ + ".\vc40\tmp\yuvconvert.obj" \ + ".\vc40\tmp\typeobject.obj" \ + ".\vc40\tmp\tupleobject.obj" \ + ".\vc40\tmp\traceback.obj" \ + ".\vc40\tmp\tokenizer.obj" \ + ".\vc40\tmp\timemodule.obj" \ + ".\vc40\tmp\threadmodule.obj" \ + ".\vc40\tmp\thread.obj" \ + ".\vc40\tmp\structmodule.obj" \ + ".\vc40\tmp\structmember.obj" \ + ".\vc40\tmp\stropmodule.obj" \ + ".\vc40\tmp\stringobject.obj" \ + ".\vc40\tmp\soundex.obj" \ + ".\vc40\tmp\signalmodule.obj" \ + ".\vc40\tmp\rotormodule.obj" \ + ".\vc40\tmp\rgbimgmodule.obj" \ + ".\vc40\tmp\regexpr.obj" \ + ".\vc40\tmp\regexmodule.obj" \ + ".\vc40\tmp\rangeobject.obj" \ + ".\vc40\tmp\pythonrun.obj" \ + ".\vc40\tmp\parsetok.obj" \ + ".\vc40\tmp\parser.obj" \ + ".\vc40\tmp\object.obj" \ + ".\vc40\tmp\node.obj" \ + ".\vc40\tmp\newmodule.obj" \ + ".\vc40\tmp\marshal.obj" \ + ".\vc40\tmp\mystrtoul.obj" \ + ".\vc40\tmp\myreadline.obj" \ + ".\vc40\tmp\moduleobject.obj" \ + ".\vc40\tmp\modsupport.obj" \ + ".\vc40\tmp\methodobject.obj" \ + ".\vc40\tmp\md5module.obj" \ + ".\vc40\tmp\md5c.obj" \ + ".\vc40\tmp\mathmodule.obj" \ + ".\vc40\tmp\mappingobject.obj" \ + ".\vc40\tmp\socketmodule.obj" \ + ".\vc40\tmp\selectmodule.obj" \ + ".\vc40\tmp\sysmodule.obj" \ + ".\vc40\tmp\import.obj" \ + ".\vc40\tmp\posixmodule.obj" \ + ".\vc40\tmp\operator.obj" \ + ".\vc40\tmp\errnomodule.obj" \ + ".\vc40\tmp\sliceobject.obj" \ + ".\vc40\tmp\main.obj" \ + ".\vc40\tmp\getopt.obj" \ + ".\vc40\tmp\import_nt.obj" \ + ".\vc40\tmp\getpath_nt.obj" \ + ".\vc40\tmp\dl_nt.obj" + +"$(OUTDIR)\python14.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Release" +!ELSEIF "$(CFG)" == "python - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "vc40_nt\Release" -# PROP BASE Intermediate_Dir "vc40_nt\Release" -# PROP BASE Target_Dir "vc40_nt" +# PROP BASE Output_Dir "python\Release" +# PROP BASE Intermediate_Dir "python\Release" +# PROP BASE Target_Dir "python" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 -# PROP Output_Dir "vc40_nt\Release" -# PROP Intermediate_Dir "vc40_nt\Release" -# PROP Target_Dir "vc40_nt" -OUTDIR=.\vc40_nt\Release -INTDIR=.\vc40_nt\Release +# PROP Output_Dir "vc40" +# PROP Intermediate_Dir "vc40/tmp" +# PROP Target_Dir "python" +OUTDIR=.\vc40 +INTDIR=.\vc40/tmp -ALL : "$(OUTDIR)\pyth_nt.exe" +ALL : "$(OUTDIR)\python.exe" CLEAN : - -@erase ".\vc40_nt\Release\pyth_nt.exe" - -@erase ".\vc40_nt\Release\importdl.obj" - -@erase ".\vc40_nt\Release\sysmodule.obj" - -@erase ".\vc40_nt\Release\mystrtoul.obj" - -@erase ".\vc40_nt\Release\myreadline.obj" - -@erase ".\vc40_nt\Release\getcopyright.obj" - -@erase ".\vc40_nt\Release\binascii.obj" - -@erase ".\vc40_nt\Release\errnomodule.obj" - -@erase ".\vc40_nt\Release\import.obj" - -@erase ".\vc40_nt\Release\frameobject.obj" - -@erase ".\vc40_nt\Release\regexmodule.obj" - -@erase ".\vc40_nt\Release\environment.obj" - -@erase ".\vc40_nt\Release\errors.obj" - -@erase ".\vc40_nt\Release\floatobject.obj" - -@erase ".\vc40_nt\Release\cmathmodule.obj" - -@erase ".\vc40_nt\Release\grammar1.obj" - -@erase ".\vc40_nt\Release\getmtime.obj" - -@erase ".\vc40_nt\Release\operator.obj" - -@erase ".\vc40_nt\Release\parser.obj" - -@erase ".\vc40_nt\Release\arraymodule.obj" - -@erase ".\vc40_nt\Release\acceler.obj" - -@erase ".\vc40_nt\Release\regexpr.obj" - -@erase ".\vc40_nt\Release\selectmodule.obj" - -@erase ".\vc40_nt\Release\fileobject.obj" - -@erase ".\vc40_nt\Release\longobject.obj" - -@erase ".\vc40_nt\Release\tokenizer.obj" - -@erase ".\vc40_nt\Release\accessobject.obj" - -@erase ".\vc40_nt\Release\stropmodule.obj" - -@erase ".\vc40_nt\Release\socketmodule.obj" - -@erase ".\vc40_nt\Release\ceval.obj" - -@erase ".\vc40_nt\Release\thread.obj" - -@erase ".\vc40_nt\Release\graminit.obj" - -@erase ".\vc40_nt\Release\stringobject.obj" - -@erase ".\vc40_nt\Release\md5module.obj" - -@erase ".\vc40_nt\Release\traceback.obj" - -@erase ".\vc40_nt\Release\rangeobject.obj" - -@erase ".\vc40_nt\Release\main.obj" - -@erase ".\vc40_nt\Release\object.obj" - -@erase ".\vc40_nt\Release\pythonrun.obj" - -@erase ".\vc40_nt\Release\timemodule.obj" - -@erase ".\vc40_nt\Release\audioop.obj" - -@erase ".\vc40_nt\Release\mappingobject.obj" - -@erase ".\vc40_nt\Release\compile.obj" - -@erase ".\vc40_nt\Release\cobject.obj" - -@erase ".\vc40_nt\Release\posixmodule.obj" - -@erase ".\vc40_nt\Release\cgensupport.obj" - -@erase ".\vc40_nt\Release\threadmodule.obj" - -@erase ".\vc40_nt\Release\abstract.obj" - -@erase ".\vc40_nt\Release\frozen.obj" - -@erase ".\vc40_nt\Release\structmodule.obj" - -@erase ".\vc40_nt\Release\getopt.obj" - -@erase ".\vc40_nt\Release\getplatform.obj" - -@erase ".\vc40_nt\Release\modsupport.obj" - -@erase ".\vc40_nt\Release\listobject.obj" - -@erase ".\vc40_nt\Release\typeobject.obj" - -@erase ".\vc40_nt\Release\methodobject.obj" - -@erase ".\vc40_nt\Release\md5c.obj" - -@erase ".\vc40_nt\Release\rgbimgmodule.obj" - -@erase ".\vc40_nt\Release\yuvconvert.obj" - -@erase ".\vc40_nt\Release\getversion.obj" - -@erase ".\vc40_nt\Release\config.obj" - -@erase ".\vc40_nt\Release\signalmodule.obj" - -@erase ".\vc40_nt\Release\moduleobject.obj" - -@erase ".\vc40_nt\Release\mathmodule.obj" - -@erase ".\vc40_nt\Release\soundex.obj" - -@erase ".\vc40_nt\Release\node.obj" - -@erase ".\vc40_nt\Release\parsetok.obj" - -@erase ".\vc40_nt\Release\imageop.obj" - -@erase ".\vc40_nt\Release\getpath.obj" - -@erase ".\vc40_nt\Release\rotormodule.obj" - -@erase ".\vc40_nt\Release\tupleobject.obj" - -@erase ".\vc40_nt\Release\newmodule.obj" - -@erase ".\vc40_nt\Release\structmember.obj" - -@erase ".\vc40_nt\Release\intobject.obj" - -@erase ".\vc40_nt\Release\classobject.obj" - -@erase ".\vc40_nt\Release\marshal.obj" - -@erase ".\vc40_nt\Release\bltinmodule.obj" - -@erase ".\vc40_nt\Release\complexobject.obj" - -@erase ".\vc40_nt\Release\funcobject.obj" - -@erase ".\vc40_nt\Release\getargs.obj" - -@erase ".\vc40_nt\Release\getcompiler.obj" - -@erase ".\vc40_nt\Release\sliceobject.obj" + -@erase ".\vc40\python.exe" + -@erase ".\vc40\tmp\main_nt.obj" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" +"$(INTDIR)" : + if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)" + CPP=cl.exe # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c -CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\ - "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\ - /Fo"$(INTDIR)/" /c -CPP_OBJS=.\vc40_nt\Release/ +# ADD CPP /nologo /MT /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c +CPP_PROJ=/nologo /MT /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32"\ + /D "_WINDOWS" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/python.pch" /YX /Fo"$(INTDIR)/"\ + /c +CPP_OBJS=.\vc40/tmp/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: @@ -793,218 +345,60 @@ RSC=rc.exe BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" +BSC32_FLAGS=/nologo /o"$(OUTDIR)/python.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /machine:I386 /out:"vc40_nt\Release/pyth_nt.exe" +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ - odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\ - /pdb:"$(OUTDIR)/pyth_nt.pdb" /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" + odbccp32.lib /nologo /subsystem:console /incremental:no\ + /pdb:"$(OUTDIR)/python.pdb" /machine:I386 /out:"$(OUTDIR)/python.exe" LINK32_OBJS= \ - ".\vc40_nt\Release\importdl.obj" \ - ".\vc40_nt\Release\sysmodule.obj" \ - ".\vc40_nt\Release\mystrtoul.obj" \ - ".\vc40_nt\Release\myreadline.obj" \ - ".\vc40_nt\Release\getcopyright.obj" \ - ".\vc40_nt\Release\binascii.obj" \ - ".\vc40_nt\Release\errnomodule.obj" \ - ".\vc40_nt\Release\import.obj" \ - ".\vc40_nt\Release\frameobject.obj" \ - ".\vc40_nt\Release\regexmodule.obj" \ - ".\vc40_nt\Release\environment.obj" \ - ".\vc40_nt\Release\errors.obj" \ - ".\vc40_nt\Release\floatobject.obj" \ - ".\vc40_nt\Release\cmathmodule.obj" \ - ".\vc40_nt\Release\grammar1.obj" \ - ".\vc40_nt\Release\getmtime.obj" \ - ".\vc40_nt\Release\operator.obj" \ - ".\vc40_nt\Release\parser.obj" \ - ".\vc40_nt\Release\arraymodule.obj" \ - ".\vc40_nt\Release\acceler.obj" \ - ".\vc40_nt\Release\regexpr.obj" \ - ".\vc40_nt\Release\selectmodule.obj" \ - ".\vc40_nt\Release\fileobject.obj" \ - ".\vc40_nt\Release\longobject.obj" \ - ".\vc40_nt\Release\tokenizer.obj" \ - ".\vc40_nt\Release\accessobject.obj" \ - ".\vc40_nt\Release\stropmodule.obj" \ - ".\vc40_nt\Release\socketmodule.obj" \ - ".\vc40_nt\Release\ceval.obj" \ - ".\vc40_nt\Release\thread.obj" \ - ".\vc40_nt\Release\graminit.obj" \ - ".\vc40_nt\Release\stringobject.obj" \ - ".\vc40_nt\Release\md5module.obj" \ - ".\vc40_nt\Release\traceback.obj" \ - ".\vc40_nt\Release\rangeobject.obj" \ - ".\vc40_nt\Release\main.obj" \ - ".\vc40_nt\Release\object.obj" \ - ".\vc40_nt\Release\pythonrun.obj" \ - ".\vc40_nt\Release\timemodule.obj" \ - ".\vc40_nt\Release\audioop.obj" \ - ".\vc40_nt\Release\mappingobject.obj" \ - ".\vc40_nt\Release\compile.obj" \ - ".\vc40_nt\Release\cobject.obj" \ - ".\vc40_nt\Release\posixmodule.obj" \ - ".\vc40_nt\Release\cgensupport.obj" \ - ".\vc40_nt\Release\threadmodule.obj" \ - ".\vc40_nt\Release\abstract.obj" \ - ".\vc40_nt\Release\frozen.obj" \ - ".\vc40_nt\Release\structmodule.obj" \ - ".\vc40_nt\Release\getopt.obj" \ - ".\vc40_nt\Release\getplatform.obj" \ - ".\vc40_nt\Release\modsupport.obj" \ - ".\vc40_nt\Release\listobject.obj" \ - ".\vc40_nt\Release\typeobject.obj" \ - ".\vc40_nt\Release\methodobject.obj" \ - ".\vc40_nt\Release\md5c.obj" \ - ".\vc40_nt\Release\rgbimgmodule.obj" \ - ".\vc40_nt\Release\yuvconvert.obj" \ - ".\vc40_nt\Release\getversion.obj" \ - ".\vc40_nt\Release\config.obj" \ - ".\vc40_nt\Release\signalmodule.obj" \ - ".\vc40_nt\Release\moduleobject.obj" \ - ".\vc40_nt\Release\mathmodule.obj" \ - ".\vc40_nt\Release\soundex.obj" \ - ".\vc40_nt\Release\node.obj" \ - ".\vc40_nt\Release\parsetok.obj" \ - ".\vc40_nt\Release\imageop.obj" \ - ".\vc40_nt\Release\getpath.obj" \ - ".\vc40_nt\Release\rotormodule.obj" \ - ".\vc40_nt\Release\tupleobject.obj" \ - ".\vc40_nt\Release\newmodule.obj" \ - ".\vc40_nt\Release\structmember.obj" \ - ".\vc40_nt\Release\intobject.obj" \ - ".\vc40_nt\Release\classobject.obj" \ - ".\vc40_nt\Release\marshal.obj" \ - ".\vc40_nt\Release\bltinmodule.obj" \ - ".\vc40_nt\Release\complexobject.obj" \ - ".\vc40_nt\Release\funcobject.obj" \ - ".\vc40_nt\Release\getargs.obj" \ - ".\vc40_nt\Release\getcompiler.obj" \ - ".\vc40_nt\Release\sliceobject.obj" - -"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) + ".\vc40\tmp\main_nt.obj" \ + ".\vc40\python14.lib" + +"$(OUTDIR)\python.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" +!ELSEIF "$(CFG)" == "_tkinter - Win32 Release" # PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "vc40_nt\Debug" -# PROP BASE Intermediate_Dir "vc40_nt\Debug" -# PROP BASE Target_Dir "vc40_nt" +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "_tkinter\Release" +# PROP BASE Intermediate_Dir "_tkinter\Release" +# PROP BASE Target_Dir "_tkinter" # PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "vc40_nt\Debug" -# PROP Intermediate_Dir "vc40_nt\Debug" -# PROP Target_Dir "vc40_nt" -OUTDIR=.\vc40_nt\Debug -INTDIR=.\vc40_nt\Debug +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "vc40" +# PROP Intermediate_Dir "vc40/tmp" +# PROP Target_Dir "_tkinter" +OUTDIR=.\vc40 +INTDIR=.\vc40/tmp -ALL : "$(OUTDIR)\pyth_nt.exe" +ALL : "$(OUTDIR)\_tkinter.dll" CLEAN : - -@erase ".\vc40_nt\Debug\vc40.pdb" - -@erase ".\vc40_nt\Debug\vc40.idb" - -@erase ".\vc40_nt\Debug\pyth_nt.exe" - -@erase ".\vc40_nt\Debug\binascii.obj" - -@erase ".\vc40_nt\Debug\getcopyright.obj" - -@erase ".\vc40_nt\Debug\newmodule.obj" - -@erase ".\vc40_nt\Debug\marshal.obj" - -@erase ".\vc40_nt\Debug\getplatform.obj" - -@erase ".\vc40_nt\Debug\intobject.obj" - -@erase ".\vc40_nt\Debug\myreadline.obj" - -@erase ".\vc40_nt\Debug\compile.obj" - -@erase ".\vc40_nt\Debug\cobject.obj" - -@erase ".\vc40_nt\Debug\grammar1.obj" - -@erase ".\vc40_nt\Debug\abstract.obj" - -@erase ".\vc40_nt\Debug\threadmodule.obj" - -@erase ".\vc40_nt\Debug\mystrtoul.obj" - -@erase ".\vc40_nt\Debug\mappingobject.obj" - -@erase ".\vc40_nt\Debug\methodobject.obj" - -@erase ".\vc40_nt\Debug\rotormodule.obj" - -@erase ".\vc40_nt\Debug\tupleobject.obj" - -@erase ".\vc40_nt\Debug\rgbimgmodule.obj" - -@erase ".\vc40_nt\Debug\selectmodule.obj" - -@erase ".\vc40_nt\Debug\typeobject.obj" - -@erase ".\vc40_nt\Debug\classobject.obj" - -@erase ".\vc40_nt\Debug\signalmodule.obj" - -@erase ".\vc40_nt\Debug\accessobject.obj" - -@erase ".\vc40_nt\Debug\md5c.obj" - -@erase ".\vc40_nt\Debug\bltinmodule.obj" - -@erase ".\vc40_nt\Debug\getversion.obj" - -@erase ".\vc40_nt\Debug\getcompiler.obj" - -@erase ".\vc40_nt\Debug\longobject.obj" - -@erase ".\vc40_nt\Debug\graminit.obj" - -@erase ".\vc40_nt\Debug\imageop.obj" - -@erase ".\vc40_nt\Debug\regexpr.obj" - -@erase ".\vc40_nt\Debug\errnomodule.obj" - -@erase ".\vc40_nt\Debug\parser.obj" - -@erase ".\vc40_nt\Debug\getopt.obj" - -@erase ".\vc40_nt\Debug\frameobject.obj" - -@erase ".\vc40_nt\Debug\regexmodule.obj" - -@erase ".\vc40_nt\Debug\environment.obj" - -@erase ".\vc40_nt\Debug\floatobject.obj" - -@erase ".\vc40_nt\Debug\tokenizer.obj" - -@erase ".\vc40_nt\Debug\posixmodule.obj" - -@erase ".\vc40_nt\Debug\cmathmodule.obj" - -@erase ".\vc40_nt\Debug\getargs.obj" - -@erase ".\vc40_nt\Debug\main.obj" - -@erase ".\vc40_nt\Debug\config.obj" - -@erase ".\vc40_nt\Debug\timemodule.obj" - -@erase ".\vc40_nt\Debug\arraymodule.obj" - -@erase ".\vc40_nt\Debug\funcobject.obj" - -@erase ".\vc40_nt\Debug\md5module.obj" - -@erase ".\vc40_nt\Debug\traceback.obj" - -@erase ".\vc40_nt\Debug\sysmodule.obj" - -@erase ".\vc40_nt\Debug\structmodule.obj" - -@erase ".\vc40_nt\Debug\complexobject.obj" - -@erase ".\vc40_nt\Debug\pythonrun.obj" - -@erase ".\vc40_nt\Debug\audioop.obj" - -@erase ".\vc40_nt\Debug\thread.obj" - -@erase ".\vc40_nt\Debug\getmtime.obj" - -@erase ".\vc40_nt\Debug\operator.obj" - -@erase ".\vc40_nt\Debug\object.obj" - -@erase ".\vc40_nt\Debug\modsupport.obj" - -@erase ".\vc40_nt\Debug\listobject.obj" - -@erase ".\vc40_nt\Debug\moduleobject.obj" - -@erase ".\vc40_nt\Debug\stropmodule.obj" - -@erase ".\vc40_nt\Debug\parsetok.obj" - -@erase ".\vc40_nt\Debug\yuvconvert.obj" - -@erase ".\vc40_nt\Debug\acceler.obj" - -@erase ".\vc40_nt\Debug\ceval.obj" - -@erase ".\vc40_nt\Debug\mathmodule.obj" - -@erase ".\vc40_nt\Debug\rangeobject.obj" - -@erase ".\vc40_nt\Debug\structmember.obj" - -@erase ".\vc40_nt\Debug\import.obj" - -@erase ".\vc40_nt\Debug\frozen.obj" - -@erase ".\vc40_nt\Debug\soundex.obj" - -@erase ".\vc40_nt\Debug\errors.obj" - -@erase ".\vc40_nt\Debug\node.obj" - -@erase ".\vc40_nt\Debug\socketmodule.obj" - -@erase ".\vc40_nt\Debug\fileobject.obj" - -@erase ".\vc40_nt\Debug\importdl.obj" - -@erase ".\vc40_nt\Debug\getpath.obj" - -@erase ".\vc40_nt\Debug\stringobject.obj" - -@erase ".\vc40_nt\Debug\cgensupport.obj" - -@erase ".\vc40_nt\Debug\sliceobject.obj" - -@erase ".\vc40_nt\Debug\pyth_nt.ilk" - -@erase ".\vc40_nt\Debug\pyth_nt.pdb" + -@erase ".\vc40\_tkinter.dll" + -@erase ".\vc40\tmp\_tkinter.obj" + -@erase ".\vc40\_tkinter.lib" + -@erase ".\vc40\_tkinter.exp" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" +"$(INTDIR)" : + if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)" + CPP=cl.exe -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c -CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\ - /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\ - /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c -CPP_OBJS=.\vc40_nt\Debug/ +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c +# ADD CPP /nologo /MT /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 /MT /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= .c{$(CPP_OBJS)}.obj: @@ -1025,105 +419,35 @@ CPP_SBRS= .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< +MTL=mktyplib.exe +# ADD BASE MTL /nologo /D "NDEBUG" /win32 +# ADD MTL /nologo /D "NDEBUG" /win32 +MTL_PROJ=/nologo /D "NDEBUG" /win32 RSC=rc.exe -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo -BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" +BSC32_FLAGS=/nologo /o"$(OUTDIR)/_tkinter.bsc" BSC32_SBRS= LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /out:"vc40_nt\Debug/pyth_nt.exe" +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ - odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:yes\ - /pdb:"$(OUTDIR)/pyth_nt.pdb" /debug /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" + odbccp32.lib /nologo /subsystem:windows /dll /incremental:no\ + /pdb:"$(OUTDIR)/_tkinter.pdb" /machine:I386 /def:".\PC\_tkinter.def"\ + /out:"$(OUTDIR)/_tkinter.dll" /implib:"$(OUTDIR)/_tkinter.lib" +DEF_FILE= \ + ".\PC\_tkinter.def" LINK32_OBJS= \ - ".\vc40_nt\Debug\binascii.obj" \ - ".\vc40_nt\Debug\getcopyright.obj" \ - ".\vc40_nt\Debug\newmodule.obj" \ - ".\vc40_nt\Debug\marshal.obj" \ - ".\vc40_nt\Debug\getplatform.obj" \ - ".\vc40_nt\Debug\intobject.obj" \ - ".\vc40_nt\Debug\myreadline.obj" \ - ".\vc40_nt\Debug\compile.obj" \ - ".\vc40_nt\Debug\cobject.obj" \ - ".\vc40_nt\Debug\grammar1.obj" \ - ".\vc40_nt\Debug\abstract.obj" \ - ".\vc40_nt\Debug\threadmodule.obj" \ - ".\vc40_nt\Debug\mystrtoul.obj" \ - ".\vc40_nt\Debug\mappingobject.obj" \ - ".\vc40_nt\Debug\methodobject.obj" \ - ".\vc40_nt\Debug\rotormodule.obj" \ - ".\vc40_nt\Debug\tupleobject.obj" \ - ".\vc40_nt\Debug\rgbimgmodule.obj" \ - ".\vc40_nt\Debug\selectmodule.obj" \ - ".\vc40_nt\Debug\typeobject.obj" \ - ".\vc40_nt\Debug\classobject.obj" \ - ".\vc40_nt\Debug\signalmodule.obj" \ - ".\vc40_nt\Debug\accessobject.obj" \ - ".\vc40_nt\Debug\md5c.obj" \ - ".\vc40_nt\Debug\bltinmodule.obj" \ - ".\vc40_nt\Debug\getversion.obj" \ - ".\vc40_nt\Debug\getcompiler.obj" \ - ".\vc40_nt\Debug\longobject.obj" \ - ".\vc40_nt\Debug\graminit.obj" \ - ".\vc40_nt\Debug\imageop.obj" \ - ".\vc40_nt\Debug\regexpr.obj" \ - ".\vc40_nt\Debug\errnomodule.obj" \ - ".\vc40_nt\Debug\parser.obj" \ - ".\vc40_nt\Debug\getopt.obj" \ - ".\vc40_nt\Debug\frameobject.obj" \ - ".\vc40_nt\Debug\regexmodule.obj" \ - ".\vc40_nt\Debug\environment.obj" \ - ".\vc40_nt\Debug\floatobject.obj" \ - ".\vc40_nt\Debug\tokenizer.obj" \ - ".\vc40_nt\Debug\posixmodule.obj" \ - ".\vc40_nt\Debug\cmathmodule.obj" \ - ".\vc40_nt\Debug\getargs.obj" \ - ".\vc40_nt\Debug\main.obj" \ - ".\vc40_nt\Debug\config.obj" \ - ".\vc40_nt\Debug\timemodule.obj" \ - ".\vc40_nt\Debug\arraymodule.obj" \ - ".\vc40_nt\Debug\funcobject.obj" \ - ".\vc40_nt\Debug\md5module.obj" \ - ".\vc40_nt\Debug\traceback.obj" \ - ".\vc40_nt\Debug\sysmodule.obj" \ - ".\vc40_nt\Debug\structmodule.obj" \ - ".\vc40_nt\Debug\complexobject.obj" \ - ".\vc40_nt\Debug\pythonrun.obj" \ - ".\vc40_nt\Debug\audioop.obj" \ - ".\vc40_nt\Debug\thread.obj" \ - ".\vc40_nt\Debug\getmtime.obj" \ - ".\vc40_nt\Debug\operator.obj" \ - ".\vc40_nt\Debug\object.obj" \ - ".\vc40_nt\Debug\modsupport.obj" \ - ".\vc40_nt\Debug\listobject.obj" \ - ".\vc40_nt\Debug\moduleobject.obj" \ - ".\vc40_nt\Debug\stropmodule.obj" \ - ".\vc40_nt\Debug\parsetok.obj" \ - ".\vc40_nt\Debug\yuvconvert.obj" \ - ".\vc40_nt\Debug\acceler.obj" \ - ".\vc40_nt\Debug\ceval.obj" \ - ".\vc40_nt\Debug\mathmodule.obj" \ - ".\vc40_nt\Debug\rangeobject.obj" \ - ".\vc40_nt\Debug\structmember.obj" \ - ".\vc40_nt\Debug\import.obj" \ - ".\vc40_nt\Debug\frozen.obj" \ - ".\vc40_nt\Debug\soundex.obj" \ - ".\vc40_nt\Debug\errors.obj" \ - ".\vc40_nt\Debug\node.obj" \ - ".\vc40_nt\Debug\socketmodule.obj" \ - ".\vc40_nt\Debug\fileobject.obj" \ - ".\vc40_nt\Debug\importdl.obj" \ - ".\vc40_nt\Debug\getpath.obj" \ - ".\vc40_nt\Debug\stringobject.obj" \ - ".\vc40_nt\Debug\cgensupport.obj" \ - ".\vc40_nt\Debug\sliceobject.obj" - -"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) + ".\vc40\tmp\_tkinter.obj" \ + "..\..\..\..\TCL\bin\tcl75.lib" \ + "..\..\..\..\TCL\bin\tk41.lib" \ + ".\vc40\python14.lib" + +"$(OUTDIR)\_tkinter.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << @@ -1133,28 +457,7 @@ LINK32_OBJS= \ ################################################################################ # Begin Target -# Name "vc40 - Win32 Release" -# Name "vc40 - Win32 Debug" - -!IF "$(CFG)" == "vc40 - Win32 Release" - -!ELSEIF "$(CFG)" == "vc40 - Win32 Debug" - -!ENDIF - -# End Target -################################################################################ -# Begin Target - -# Name "vc40_dll - Win32 Release" -# Name "vc40_dll - Win32 Debug" - -!IF "$(CFG)" == "vc40_dll - Win32 Release" - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" - -!ENDIF - +# Name "python14 - Win32 Release" ################################################################################ # Begin Source File @@ -1164,7 +467,7 @@ DEP_CPP_LONGO=\ ".\./Include\longintrepr.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1186,18 +489,19 @@ DEP_CPP_LONGO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" @@ -1215,7 +519,7 @@ DEP_CPP_LISTO=\ ".\./Include\ceval.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1237,16 +541,17 @@ DEP_CPP_LISTO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" @@ -1262,7 +567,7 @@ DEP_CPP_INTOB=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1284,17 +589,18 @@ DEP_CPP_INTOB=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" @@ -1309,11 +615,11 @@ SOURCE=.\Python\importdl.c DEP_CPP_IMPOR=\ ".\./Include\allobjects.h"\ ".\./Include\osdefs.h"\ - ".\Python\importdl.h"\ + ".\./Python\importdl.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ {$(INCLUDE)}"\sys\STAT.H"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1335,18 +641,19 @@ DEP_CPP_IMPOR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ NODEP_CPP_IMPOR=\ ".\Python\dl.h"\ @@ -1367,7 +674,7 @@ DEP_CPP_IMAGE=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1389,17 +696,18 @@ DEP_CPP_IMAGE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" @@ -1411,34 +719,13 @@ DEP_CPP_IMAGE=\ # Begin Source File SOURCE=.\Parser\grammar1.c - -!IF "$(CFG)" == "vc40_dll - Win32 Release" - -DEP_CPP_GRAMM=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./Include\token.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" - DEP_CPP_GRAMM=\ ".\./Include\pgenheaders.h"\ ".\./Include\grammar.h"\ ".\./Include\token.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\Include\bitset.h"\ @@ -1448,39 +735,17 @@ DEP_CPP_GRAMM=\ $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File SOURCE=.\Python\graminit.c - -!IF "$(CFG)" == "vc40_dll - Win32 Release" - -DEP_CPP_GRAMI=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" - DEP_CPP_GRAMI=\ ".\./Include\pgenheaders.h"\ ".\./Include\grammar.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\Include\bitset.h"\ @@ -1490,8 +755,6 @@ DEP_CPP_GRAMI=\ $(CPP) $(CPP_PROJ) $(SOURCE) -!ENDIF - # End Source File ################################################################################ # Begin Source File @@ -1502,7 +765,7 @@ DEP_CPP_GETVE=\ ".\./Include\patchlevel.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1524,13 +787,13 @@ DEP_CPP_GETVE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ @@ -1551,7 +814,7 @@ DEP_CPP_GETPL=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1573,18 +836,19 @@ DEP_CPP_GETPL=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" @@ -1595,56 +859,6 @@ DEP_CPP_GETPL=\ ################################################################################ # Begin Source File -SOURCE=.\Modules\getpath.c -DEP_CPP_GETPA=\ - ".\./Include\Python.h"\ - ".\./Include\osdefs.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - SOURCE=.\Python\getmtime.c DEP_CPP_GETMT=\ ".\./PC\config.h"\ @@ -1666,7 +880,7 @@ DEP_CPP_GETCO=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1688,18 +902,19 @@ DEP_CPP_GETCO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" @@ -1715,7 +930,7 @@ DEP_CPP_GETCOM=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1737,18 +952,19 @@ DEP_CPP_GETCOM=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" @@ -1763,7 +979,7 @@ SOURCE=.\Python\getargs.c DEP_CPP_GETAR=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1785,18 +1001,19 @@ DEP_CPP_GETAR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" @@ -1813,7 +1030,7 @@ DEP_CPP_FUNCO=\ ".\./Include\compile.h"\ ".\./Include\structmember.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1835,18 +1052,19 @@ DEP_CPP_FUNCO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" @@ -1862,7 +1080,7 @@ DEP_CPP_FROZE=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1884,18 +1102,19 @@ DEP_CPP_FROZE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" @@ -1915,7 +1134,7 @@ DEP_CPP_FRAME=\ ".\./Include\structmember.h"\ ".\./Include\bltinmodule.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1937,17 +1156,18 @@ DEP_CPP_FRAME=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" @@ -1964,7 +1184,7 @@ DEP_CPP_FLOAT=\ ".\./Include\modsupport.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -1986,17 +1206,18 @@ DEP_CPP_FLOAT=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" @@ -2014,7 +1235,7 @@ DEP_CPP_FILEO=\ ".\./Include\structmember.h"\ ".\./Include\ceval.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2036,16 +1257,17 @@ DEP_CPP_FILEO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" @@ -2061,7 +1283,7 @@ DEP_CPP_ERROR=\ ".\./Include\allobjects.h"\ ".\./Include\traceback.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2082,18 +1304,19 @@ DEP_CPP_ERROR=\ ".\Include\fileobject.h"\ ".\Include\cobject.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" @@ -2104,11 +1327,12 @@ DEP_CPP_ERROR=\ ################################################################################ # Begin Source File -SOURCE=.\Modules\environment.c -DEP_CPP_ENVIR=\ +SOURCE=.\PC\config.c +DEP_CPP_CONFI=\ + ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2130,67 +1354,19 @@ DEP_CPP_ENVIR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\PC\config.c -DEP_CPP_CONFI=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" @@ -2207,7 +1383,7 @@ DEP_CPP_COMPL=\ ".\./Include\modsupport.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2229,17 +1405,18 @@ DEP_CPP_COMPL=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" @@ -2260,7 +1437,7 @@ DEP_CPP_COMPI=\ ".\./Include\opcode.h"\ ".\./Include\structmember.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2282,18 +1459,19 @@ DEP_CPP_COMPI=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" @@ -2309,7 +1487,7 @@ DEP_CPP_COBJE=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2331,18 +1509,19 @@ DEP_CPP_COBJE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" @@ -2359,7 +1538,7 @@ DEP_CPP_CMATH=\ ".\./Include\complexobject.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2380,18 +1559,19 @@ DEP_CPP_CMATH=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" @@ -2407,7 +1587,7 @@ DEP_CPP_CLASS=\ ".\./Include\allobjects.h"\ ".\./Include\structmember.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2429,18 +1609,19 @@ DEP_CPP_CLASS=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" @@ -2456,7 +1637,7 @@ DEP_CPP_CGENS=\ ".\./Include\allobjects.h"\ ".\./Include\cgensupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2478,18 +1659,19 @@ DEP_CPP_CGENS=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" @@ -2510,7 +1692,7 @@ DEP_CPP_CEVAL=\ ".\./Include\graminit.h"\ ".\./Include\thread.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2532,17 +1714,18 @@ DEP_CPP_CEVAL=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" @@ -2562,8 +1745,9 @@ DEP_CPP_BLTIN=\ ".\./Include\import.h"\ ".\./Include\compile.h"\ ".\./Include\eval.h"\ + ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2585,16 +1769,17 @@ DEP_CPP_BLTIN=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" @@ -2610,7 +1795,7 @@ DEP_CPP_BINAS=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2632,18 +1817,19 @@ DEP_CPP_BINAS=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" @@ -2660,7 +1846,7 @@ DEP_CPP_AUDIO=\ ".\./Include\modsupport.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2682,17 +1868,18 @@ DEP_CPP_AUDIO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" @@ -2710,7 +1897,7 @@ DEP_CPP_ARRAY=\ ".\./Include\ceval.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2732,16 +1919,17 @@ DEP_CPP_ARRAY=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" @@ -2759,7 +1947,7 @@ DEP_CPP_ACCES=\ ".\./Include\structmember.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2781,16 +1969,17 @@ DEP_CPP_ACCES=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" @@ -2809,8 +1998,8 @@ DEP_CPP_ACCEL=\ ".\./Include\token.h"\ ".\Parser\parser.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\Include\bitset.h"\ @@ -2829,7 +2018,7 @@ DEP_CPP_ABSTR=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2851,18 +2040,19 @@ DEP_CPP_ABSTR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" @@ -2890,7 +2080,7 @@ SOURCE=.\Objects\typeobject.c DEP_CPP_TYPEO=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2912,18 +2102,19 @@ DEP_CPP_TYPEO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" @@ -2938,7 +2129,7 @@ SOURCE=.\Objects\tupleobject.c DEP_CPP_TUPLE=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -2960,18 +2151,19 @@ DEP_CPP_TUPLE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" @@ -2992,7 +2184,7 @@ DEP_CPP_TRACE=\ ".\./Include\structmember.h"\ ".\./Include\osdefs.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3013,17 +2205,18 @@ DEP_CPP_TRACE=\ ".\Include\fileobject.h"\ ".\Include\cobject.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" @@ -3040,8 +2233,8 @@ DEP_CPP_TOKEN=\ ".\Parser\tokenizer.h"\ ".\./Include\errcode.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\./Include\token.h"\ @@ -3060,12 +2253,13 @@ DEP_CPP_TIMEM=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ + ".\./Include\mymath.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\unistd.h"\ + ".\./Include\myselect.h"\ + ".\./Include\mytime.h"\ {$(INCLUDE)}"\sys\TIMEB.H"\ - {$(INCLUDE)}"\i86.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3087,20 +2281,17 @@ DEP_CPP_TIMEM=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_TIMEM=\ - ".\Modules\myselect.h"\ - ".\Modules\mytime.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" @@ -3116,7 +2307,7 @@ DEP_CPP_THREA=\ ".\./Include\allobjects.h"\ ".\./Include\thread.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3138,17 +2329,18 @@ DEP_CPP_THREA=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" @@ -3169,8 +2361,11 @@ DEP_CPP_THREAD=\ ".\Python\thread_pthread.h"\ ".\Python\thread_cthread.h"\ ".\Python\thread_nt.h"\ + ".\Python\thread_foobar.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\unistd.h"\ + +NODEP_CPP_THREAD=\ + "..\..\..\..\usr\include\thread.h"\ "$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" @@ -3186,7 +2381,7 @@ DEP_CPP_STRUC=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3208,17 +2403,18 @@ DEP_CPP_STRUC=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" @@ -3234,7 +2430,7 @@ DEP_CPP_STRUCT=\ ".\./Include\allobjects.h"\ ".\./Include\structmember.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3256,18 +2452,19 @@ DEP_CPP_STRUCT=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" @@ -3283,7 +2480,7 @@ DEP_CPP_STROP=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3305,17 +2502,18 @@ DEP_CPP_STROP=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" @@ -3330,7 +2528,7 @@ SOURCE=.\Objects\stringobject.c DEP_CPP_STRIN=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3352,18 +2550,19 @@ DEP_CPP_STRIN=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" @@ -3379,7 +2578,7 @@ DEP_CPP_SOUND=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3401,18 +2600,19 @@ DEP_CPP_SOUND=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" @@ -3426,10 +2626,11 @@ DEP_CPP_SOUND=\ SOURCE=.\Modules\signalmodule.c DEP_CPP_SIGNA=\ ".\./Include\Python.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\thread.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3451,20 +2652,17 @@ DEP_CPP_SIGNA=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ - -NODEP_CPP_SIGNA=\ - ".\Modules\intrcheck.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" @@ -3481,7 +2679,7 @@ DEP_CPP_ROTOR=\ ".\./Include\mymath.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3503,18 +2701,19 @@ DEP_CPP_ROTOR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" @@ -3529,9 +2728,8 @@ SOURCE=.\Modules\rgbimgmodule.c DEP_CPP_RGBIM=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ - {$(INCLUDE)}"\unistd.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3553,17 +2751,18 @@ DEP_CPP_RGBIM=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" @@ -3576,11 +2775,12 @@ DEP_CPP_RGBIM=\ SOURCE=.\Modules\regexpr.c DEP_CPP_REGEX=\ - ".\Modules\regexpr.h"\ ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Modules\regexpr.h"\ + ".\./Include\rename2.h"\ NODEP_CPP_REGEX=\ - ".\Modules\myproto.h"\ ".\Modules\lisp.h"\ ".\Modules\buffer.h"\ ".\Modules\syntax.h"\ @@ -3600,7 +2800,7 @@ DEP_CPP_REGEXM=\ ".\Modules\regexpr.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3622,18 +2822,19 @@ DEP_CPP_REGEXM=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" @@ -3648,7 +2849,7 @@ SOURCE=.\Objects\rangeobject.c DEP_CPP_RANGE=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3670,18 +2871,19 @@ DEP_CPP_RANGE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" @@ -3697,6 +2899,7 @@ DEP_CPP_PYTHO=\ ".\./Include\allobjects.h"\ ".\./Include\grammar.h"\ ".\./Include\node.h"\ + ".\./Include\parsetok.h"\ ".\./Include\graminit.h"\ ".\./Include\errcode.h"\ ".\./Include\sysmodule.h"\ @@ -3705,9 +2908,10 @@ DEP_CPP_PYTHO=\ ".\./Include\eval.h"\ ".\./Include\ceval.h"\ ".\./Include\import.h"\ + ".\./Include\marshal.h"\ ".\./Include\thread.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3729,19 +2933,16 @@ DEP_CPP_PYTHO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\intrcheck.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ + ".\./Include\patchlevel.h"\ ".\Include\bitset.h"\ -NODEP_CPP_PYTHO=\ - ".\Python\parsetok.h"\ - ".\Python\marshal.h"\ - "$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -3758,18 +2959,16 @@ DEP_CPP_PARSE=\ ".\./Include\node.h"\ ".\./Include\grammar.h"\ ".\Parser\parser.h"\ + ".\./Include\parsetok.h"\ ".\./Include\errcode.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\./Include\token.h"\ ".\Include\bitset.h"\ -NODEP_CPP_PARSE=\ - ".\Parser\parsetok.h"\ - "$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -3788,8 +2987,8 @@ DEP_CPP_PARSER=\ ".\Parser\parser.h"\ ".\./Include\errcode.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ ".\Include\bitset.h"\ @@ -3807,7 +3006,7 @@ SOURCE=.\Objects\object.c DEP_CPP_OBJEC=\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3829,18 +3028,19 @@ DEP_CPP_OBJEC=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" @@ -3856,8 +3056,8 @@ DEP_CPP_NODE_=\ ".\./Include\pgenheaders.h"\ ".\./Include\node.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ ".\Include\pydebug.h"\ ".\./Include\rename2.h"\ @@ -3875,7 +3075,7 @@ DEP_CPP_NEWMO=\ ".\./Include\allobjects.h"\ ".\./Include\compile.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3897,18 +3097,19 @@ DEP_CPP_NEWMO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" @@ -3925,8 +3126,9 @@ DEP_CPP_MARSH=\ ".\./Include\modsupport.h"\ ".\./Include\longintrepr.h"\ ".\./Include\compile.h"\ + ".\./Include\marshal.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -3948,20 +3150,18 @@ DEP_CPP_MARSH=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_MARSH=\ - ".\Python\marshal.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" @@ -3989,11 +3189,10 @@ DEP_CPP_MYSTR=\ SOURCE=.\Parser\myreadline.c DEP_CPP_MYREA=\ ".\./PC\config.h"\ - -NODEP_CPP_MYREA=\ - ".\Parser\myproto.h"\ - ".\Parser\mymalloc.h"\ - ".\Parser\intrcheck.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\intrcheck.h"\ + ".\./Include\rename2.h"\ "$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" @@ -4009,7 +3208,7 @@ DEP_CPP_MODUL=\ ".\./Include\allobjects.h"\ ".\./Include\ceval.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4031,17 +3230,18 @@ DEP_CPP_MODUL=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" @@ -4057,7 +3257,7 @@ DEP_CPP_MODSU=\ ".\./Include\allobjects.h"\ ".\./Include\import.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4079,17 +3279,18 @@ DEP_CPP_MODSU=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" @@ -4105,7 +3306,7 @@ DEP_CPP_METHO=\ ".\./Include\allobjects.h"\ ".\./Include\token.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4127,18 +3328,19 @@ DEP_CPP_METHO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" @@ -4155,7 +3357,7 @@ DEP_CPP_MD5MO=\ ".\./Include\modsupport.h"\ ".\Modules\md5.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4177,17 +3379,18 @@ DEP_CPP_MD5MO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" @@ -4217,7 +3420,7 @@ DEP_CPP_MATHM=\ ".\./Include\allobjects.h"\ ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4239,18 +3442,19 @@ DEP_CPP_MATHM=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" @@ -4266,7 +3470,7 @@ DEP_CPP_MAPPI=\ ".\./Include\allobjects.h"\ ".\./Include\modsupport.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4288,17 +3492,18 @@ DEP_CPP_MAPPI=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" @@ -4309,25 +3514,14 @@ DEP_CPP_MAPPI=\ ################################################################################ # Begin Source File -SOURCE=.\PC\python.def - -!IF "$(CFG)" == "vc40_dll - Win32 Release" - -!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - SOURCE=.\Modules\socketmodule.c DEP_CPP_SOCKE=\ ".\./Include\Python.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\mytime.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4349,21 +3543,19 @@ DEP_CPP_SOCKE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_SOCKE=\ - ".\Modules\mytime.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" @@ -4380,8 +3572,9 @@ DEP_CPP_SELEC=\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\myselect.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4403,19 +3596,18 @@ DEP_CPP_SELEC=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_SELEC=\ - ".\Modules\myselect.h"\ + ".\./Include\patchlevel.h"\ + ".\./Include\mytime.h"\ "$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" @@ -4434,7 +3626,7 @@ DEP_CPP_SYSMO=\ ".\./Include\modsupport.h"\ ".\./Include\osdefs.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4456,15 +3648,16 @@ DEP_CPP_SYSMO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" @@ -4485,12 +3678,14 @@ DEP_CPP_IMPORT=\ ".\./Include\errcode.h"\ ".\./Include\sysmodule.h"\ ".\./Include\bltinmodule.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\marshal.h"\ ".\./Include\compile.h"\ ".\./Include\eval.h"\ ".\./Include\osdefs.h"\ - ".\Python\importdl.h"\ + ".\./Python\importdl.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4512,19 +3707,17 @@ DEP_CPP_IMPORT=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ NODEP_CPP_IMPORT=\ - ".\Python\pythonrun.h"\ - ".\Python\marshal.h"\ ".\Python\macglue.h"\ @@ -4543,10 +3736,10 @@ DEP_CPP_POSIX=\ ".\./Include\ceval.h"\ {$(INCLUDE)}"\sys\TYPES.H"\ {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\unistd.h"\ + ".\./Include\mytime.h"\ {$(INCLUDE)}"\sys\UTIME.H"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4568,19 +3761,17 @@ DEP_CPP_POSIX=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_POSIX=\ - ".\Modules\mytime.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" @@ -4596,7 +3787,7 @@ DEP_CPP_OPERA=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4618,18 +3809,19 @@ DEP_CPP_OPERA=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)" @@ -4645,7 +3837,7 @@ DEP_CPP_ERRNO=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4667,18 +3859,19 @@ DEP_CPP_ERRNO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)" @@ -4694,7 +3887,7 @@ DEP_CPP_SLICE=\ ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4716,18 +3909,19 @@ DEP_CPP_SLICE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ "$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" @@ -4735,29 +3929,15 @@ DEP_CPP_SLICE=\ # End Source File -# End Target -################################################################################ -# Begin Target - -# Name "vc40_nt - Win32 Release" -# Name "vc40_nt - Win32 Debug" - -!IF "$(CFG)" == "vc40_nt - Win32 Release" - -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" - -!ENDIF - ################################################################################ # Begin Source File -SOURCE=.\Objects\longobject.c -DEP_CPP_LONGO=\ +SOURCE=.\Modules\main.c +DEP_CPP_MAIN_=\ + ".\./Include\Python.h"\ ".\./Include\allobjects.h"\ - ".\./Include\longintrepr.h"\ - ".\./Include\mymath.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4779,21 +3959,22 @@ DEP_CPP_LONGO=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ -"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" +"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -4801,48 +3982,9 @@ DEP_CPP_LONGO=\ ################################################################################ # Begin Source File -SOURCE=.\Objects\listobject.c -DEP_CPP_LISTO=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - +SOURCE=.\Python\getopt.c -"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" +"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -4850,12 +3992,14 @@ DEP_CPP_LISTO=\ ################################################################################ # Begin Source File -SOURCE=.\Objects\intobject.c -DEP_CPP_INTOB=\ +SOURCE=.\PC\import_nt.c +DEP_CPP_IMPORT_=\ ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ + ".\./Include\osdefs.h"\ + ".\./Include\import.h"\ + ".\./Python\importdl.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4877,20 +4021,21 @@ DEP_CPP_INTOB=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ -"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" +"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -4898,15 +4043,13 @@ DEP_CPP_INTOB=\ ################################################################################ # Begin Source File -SOURCE=.\Python\importdl.c -DEP_CPP_IMPOR=\ - ".\./Include\allobjects.h"\ +SOURCE=.\PC\getpath_nt.c +DEP_CPP_GETPA=\ + ".\./Include\Python.h"\ ".\./Include\osdefs.h"\ - ".\Python\importdl.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\sys\STAT.H"\ + ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4928,26 +4071,22 @@ DEP_CPP_IMPOR=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ - -NODEP_CPP_IMPOR=\ - ".\Python\dl.h"\ - ".\Python\macdefs.h"\ - ".\Python\macglue.h"\ + ".\./Include\patchlevel.h"\ -"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" +"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -4955,12 +4094,11 @@ NODEP_CPP_IMPOR=\ ################################################################################ # Begin Source File -SOURCE=.\Modules\imageop.c -DEP_CPP_IMAGE=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ +SOURCE=.\PC\dl_nt.c +DEP_CPP_DL_NT=\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\allobjects.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -4982,20 +4120,22 @@ DEP_CPP_IMAGE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ -"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" +"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -5003,40 +4143,19 @@ DEP_CPP_IMAGE=\ ################################################################################ # Begin Source File -SOURCE=.\Parser\grammar1.c -DEP_CPP_GRAMM=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./Include\token.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - +SOURCE=.\PC\python_nt.def # End Source File +# End Target +################################################################################ +# Begin Target + +# Name "python - Win32 Release" ################################################################################ # Begin Source File -SOURCE=.\Python\graminit.c -DEP_CPP_GRAMI=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - +SOURCE=.\PC\main_nt.c -"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" +"$(INTDIR)\main_nt.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -5044,13 +4163,24 @@ DEP_CPP_GRAMI=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getversion.c -DEP_CPP_GETVE=\ +SOURCE=.\vc40\python14.lib +# End Source File +# End Target +################################################################################ +# Begin Target + +# Name "_tkinter - Win32 Release" +################################################################################ +# Begin Source File + +SOURCE=.\Modules\_tkinter.c +DEP_CPP__TKIN=\ ".\./Include\Python.h"\ - ".\./Include\patchlevel.h"\ + "\tcl\include\tcl.h"\ + "\tcl\include\tk.h"\ ".\./Include\allobjects.h"\ ".\./PC\config.h"\ - ".\Include\myproto.h"\ + ".\./Include\myproto.h"\ ".\Include\object.h"\ ".\Include\objimpl.h"\ ".\Include\pydebug.h"\ @@ -5072,21 +4202,25 @@ DEP_CPP_GETVE=\ ".\Include\cobject.h"\ ".\./Include\traceback.h"\ ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ + ".\Include\pyerrors.h"\ + ".\./Include\mymalloc.h"\ ".\./Include\modsupport.h"\ ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ + ".\./Include\pythonrun.h"\ ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ + ".\./Include\intrcheck.h"\ ".\./Include\import.h"\ ".\./Include\bltinmodule.h"\ ".\Include\abstract.h"\ ".\./Include\rename2.h"\ ".\./Include\thread.h"\ + ".\./Include\patchlevel.h"\ + "\tcl\include\X11/Xlib.h"\ + "\tcl\include\X11/X.h"\ + "\tcl\include\X11/Xfuncproto.h"\ -"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" +"$(INTDIR)\_tkinter.obj" : $(SOURCE) $(DEP_CPP__TKIN) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) @@ -5094,3366 +4228,22 @@ DEP_CPP_GETVE=\ ################################################################################ # Begin Source File -SOURCE=.\Python\getplatform.c -DEP_CPP_GETPL=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\getpath.c -DEP_CPP_GETPA=\ - ".\./Include\Python.h"\ - ".\./Include\osdefs.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getmtime.c -DEP_CPP_GETMT=\ - ".\./PC\config.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\sys\STAT.H"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getcopyright.c -DEP_CPP_GETCO=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getcompiler.c -DEP_CPP_GETCOM=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getargs.c -DEP_CPP_GETAR=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\funcobject.c -DEP_CPP_FUNCO=\ - ".\./Include\allobjects.h"\ - ".\./Include\compile.h"\ - ".\./Include\structmember.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\frozen.c -DEP_CPP_FROZE=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\frameobject.c -DEP_CPP_FRAME=\ - ".\./Include\allobjects.h"\ - ".\./Include\compile.h"\ - ".\./Include\frameobject.h"\ - ".\./Include\opcode.h"\ - ".\./Include\structmember.h"\ - ".\./Include\bltinmodule.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\floatobject.c -DEP_CPP_FLOAT=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\mymath.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\fileobject.c -DEP_CPP_FILEO=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\structmember.h"\ - ".\./Include\ceval.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\errors.c -DEP_CPP_ERROR=\ - ".\./Include\allobjects.h"\ - ".\./Include\traceback.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\environment.c -DEP_CPP_ENVIR=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\PC\config.c -DEP_CPP_CONFI=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\complexobject.c -DEP_CPP_COMPL=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\mymath.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\compile.c -DEP_CPP_COMPI=\ - ".\./Include\allobjects.h"\ - ".\./Include\node.h"\ - ".\./Include\token.h"\ - ".\./Include\graminit.h"\ - ".\./Include\compile.h"\ - ".\./Include\opcode.h"\ - ".\./Include\structmember.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\cobject.c -DEP_CPP_COBJE=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\cmathmodule.c -DEP_CPP_CMATH=\ - ".\./Include\allobjects.h"\ - ".\./Include\complexobject.h"\ - ".\./Include\mymath.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\classobject.c -DEP_CPP_CLASS=\ - ".\./Include\allobjects.h"\ - ".\./Include\structmember.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\cgensupport.c -DEP_CPP_CGENS=\ - ".\./Include\allobjects.h"\ - ".\./Include\cgensupport.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\ceval.c -DEP_CPP_CEVAL=\ - ".\./Include\allobjects.h"\ - ".\./Include\compile.h"\ - ".\./Include\frameobject.h"\ - ".\./Include\eval.h"\ - ".\./Include\opcode.h"\ - ".\./Include\graminit.h"\ - ".\./Include\thread.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\bltinmodule.c -DEP_CPP_BLTIN=\ - ".\./Include\allobjects.h"\ - ".\./Include\node.h"\ - ".\./Include\graminit.h"\ - ".\./Include\bltinmodule.h"\ - ".\./Include\import.h"\ - ".\./Include\compile.h"\ - ".\./Include\eval.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\binascii.c -DEP_CPP_BINAS=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\audioop.c -DEP_CPP_AUDIO=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\mymath.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\arraymodule.c -DEP_CPP_ARRAY=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\accessobject.c -DEP_CPP_ACCES=\ - ".\./Include\allobjects.h"\ - ".\./Include\ceval.h"\ - ".\./Include\structmember.h"\ - ".\./Include\modsupport.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\acceler.c - -!IF "$(CFG)" == "vc40_nt - Win32 Release" - -DEP_CPP_ACCEL=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./Include\node.h"\ - ".\./Include\token.h"\ - ".\Parser\parser.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" - -DEP_CPP_ACCEL=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\grammar.h"\ - ".\./Include\node.h"\ - ".\./Include\token.h"\ - ".\Parser\parser.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\rename2.h"\ - ".\Include\bitset.h"\ - - -"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\abstract.c -DEP_CPP_ABSTR=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\yuvconvert.c -DEP_CPP_YUVCO=\ - ".\Modules\yuv.h"\ - - -"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\typeobject.c -DEP_CPP_TYPEO=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\tupleobject.c -DEP_CPP_TUPLE=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\traceback.c -DEP_CPP_TRACE=\ - ".\./Include\allobjects.h"\ - ".\./Include\sysmodule.h"\ - ".\./Include\compile.h"\ - ".\./Include\frameobject.h"\ - ".\./Include\traceback.h"\ - ".\./Include\structmember.h"\ - ".\./Include\osdefs.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\tokenizer.c - -!IF "$(CFG)" == "vc40_nt - Win32 Release" - -DEP_CPP_TOKEN=\ - ".\./Include\pgenheaders.h"\ - ".\Parser\tokenizer.h"\ - ".\./Include\errcode.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\token.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" - -DEP_CPP_TOKEN=\ - ".\./Include\pgenheaders.h"\ - ".\Parser\tokenizer.h"\ - ".\./Include\errcode.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\rename2.h"\ - ".\./Include\token.h"\ - - -"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\timemodule.c -DEP_CPP_TIMEM=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\unistd.h"\ - {$(INCLUDE)}"\sys\TIMEB.H"\ - {$(INCLUDE)}"\i86.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_TIMEM=\ - ".\Modules\myselect.h"\ - ".\Modules\mytime.h"\ - - -"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\threadmodule.c -DEP_CPP_THREA=\ - ".\./Include\allobjects.h"\ - ".\./Include\thread.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\thread.c -DEP_CPP_THREAD=\ - ".\./PC\config.h"\ - ".\./Include\thread.h"\ - ".\Python\thread_sgi.h"\ - ".\Python\thread_solaris.h"\ - ".\Python\thread_lwp.h"\ - ".\Python\thread_pthread.h"\ - ".\Python\thread_cthread.h"\ - ".\Python\thread_nt.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\unistd.h"\ - - -"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\structmodule.c -DEP_CPP_STRUC=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\structmember.c -DEP_CPP_STRUCT=\ - ".\./Include\allobjects.h"\ - ".\./Include\structmember.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\stropmodule.c -DEP_CPP_STROP=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\stringobject.c -DEP_CPP_STRIN=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\soundex.c -DEP_CPP_SOUND=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\signalmodule.c -DEP_CPP_SIGNA=\ - ".\./Include\Python.h"\ - ".\./Include\thread.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - -NODEP_CPP_SIGNA=\ - ".\Modules\intrcheck.h"\ - - -"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\rotormodule.c -DEP_CPP_ROTOR=\ - ".\./Include\Python.h"\ - ".\./Include\mymath.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\rgbimgmodule.c -DEP_CPP_RGBIM=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - {$(INCLUDE)}"\unistd.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\regexpr.c -DEP_CPP_REGEX=\ - ".\Modules\regexpr.h"\ - ".\./PC\config.h"\ - -NODEP_CPP_REGEX=\ - ".\Modules\myproto.h"\ - ".\Modules\lisp.h"\ - ".\Modules\buffer.h"\ - ".\Modules\syntax.h"\ - - -"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\regexmodule.c -DEP_CPP_REGEXM=\ - ".\./Include\Python.h"\ - ".\Modules\regexpr.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\rangeobject.c -DEP_CPP_RANGE=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\pythonrun.c -DEP_CPP_PYTHO=\ - ".\./Include\allobjects.h"\ - ".\./Include\grammar.h"\ - ".\./Include\node.h"\ - ".\./Include\graminit.h"\ - ".\./Include\errcode.h"\ - ".\./Include\sysmodule.h"\ - ".\./Include\bltinmodule.h"\ - ".\./Include\compile.h"\ - ".\./Include\eval.h"\ - ".\./Include\ceval.h"\ - ".\./Include\import.h"\ - ".\./Include\thread.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\Include\bitset.h"\ - -NODEP_CPP_PYTHO=\ - ".\Python\parsetok.h"\ - ".\Python\marshal.h"\ - - -"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\parsetok.c -DEP_CPP_PARSE=\ - ".\./Include\pgenheaders.h"\ - ".\Parser\tokenizer.h"\ - ".\./Include\node.h"\ - ".\./Include\grammar.h"\ - ".\Parser\parser.h"\ - ".\./Include\errcode.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\rename2.h"\ - ".\./Include\token.h"\ - ".\Include\bitset.h"\ - -NODEP_CPP_PARSE=\ - ".\Parser\parsetok.h"\ - - -"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\parser.c - -!IF "$(CFG)" == "vc40_nt - Win32 Release" - -DEP_CPP_PARSER=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\token.h"\ - ".\./Include\grammar.h"\ - ".\./Include\node.h"\ - ".\Parser\parser.h"\ - ".\./Include\errcode.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\Include\bitset.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" - -DEP_CPP_PARSER=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\token.h"\ - ".\./Include\grammar.h"\ - ".\./Include\node.h"\ - ".\Parser\parser.h"\ - ".\./Include\errcode.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\rename2.h"\ - ".\Include\bitset.h"\ - - -"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\object.c -DEP_CPP_OBJEC=\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\node.c -DEP_CPP_NODE_=\ - ".\./Include\pgenheaders.h"\ - ".\./Include\node.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pydebug.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\newmodule.c -DEP_CPP_NEWMO=\ - ".\./Include\allobjects.h"\ - ".\./Include\compile.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\mystrtoul.c -DEP_CPP_MYSTR=\ - ".\./PC\config.h"\ - ".\./Include\rename2.h"\ - - -"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Parser\myreadline.c -DEP_CPP_MYREA=\ - ".\./PC\config.h"\ - -NODEP_CPP_MYREA=\ - ".\Parser\myproto.h"\ - ".\Parser\mymalloc.h"\ - ".\Parser\intrcheck.h"\ - - -"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\moduleobject.c -DEP_CPP_MODUL=\ - ".\./Include\allobjects.h"\ - ".\./Include\ceval.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\modsupport.c -DEP_CPP_MODSU=\ - ".\./Include\allobjects.h"\ - ".\./Include\import.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\methodobject.c -DEP_CPP_METHO=\ - ".\./Include\allobjects.h"\ - ".\./Include\token.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\md5module.c -DEP_CPP_MD5MO=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\Modules\md5.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\md5c.c -DEP_CPP_MD5C_=\ - ".\./PC\config.h"\ - ".\Modules\md5.h"\ - - -"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\mathmodule.c -DEP_CPP_MATHM=\ - ".\./Include\allobjects.h"\ - ".\./Include\mymath.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\marshal.c -DEP_CPP_MARSH=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\longintrepr.h"\ - ".\./Include\compile.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_MARSH=\ - ".\Python\marshal.h"\ - - -"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Objects\mappingobject.c -DEP_CPP_MAPPI=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\main.c -DEP_CPP_MAIN_=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\getopt.c - -"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\sysmodule.c -DEP_CPP_SYSMO=\ - ".\./Include\allobjects.h"\ - ".\./Include\sysmodule.h"\ - ".\./Include\import.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\osdefs.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\socketmodule.c -DEP_CPP_SOCKE=\ - ".\./Include\Python.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_SOCKE=\ - ".\Modules\mytime.h"\ - - -"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\selectmodule.c -DEP_CPP_SELEC=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_SELEC=\ - ".\Modules\myselect.h"\ - - -"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Modules\posixmodule.c -DEP_CPP_POSIX=\ - ".\./Include\allobjects.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - {$(INCLUDE)}"\sys\TYPES.H"\ - {$(INCLUDE)}"\sys\STAT.H"\ - {$(INCLUDE)}"\unistd.h"\ - {$(INCLUDE)}"\sys\UTIME.H"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_POSIX=\ - ".\Modules\mytime.h"\ - - -"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -# End Source File -################################################################################ -# Begin Source File - -SOURCE=.\Python\import.c -DEP_CPP_IMPORT=\ - ".\./Include\allobjects.h"\ - ".\./Include\node.h"\ - ".\./Include\token.h"\ - ".\./Include\graminit.h"\ - ".\./Include\import.h"\ - ".\./Include\errcode.h"\ - ".\./Include\sysmodule.h"\ - ".\./Include\bltinmodule.h"\ - ".\./Include\compile.h"\ - ".\./Include\eval.h"\ - ".\./Include\osdefs.h"\ - ".\Python\importdl.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\Include\intrcheck.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - -NODEP_CPP_IMPORT=\ - ".\Python\pythonrun.h"\ - ".\Python\marshal.h"\ - ".\Python\macglue.h"\ - - -"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - +SOURCE=\TCL\bin\tk41.lib # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\operator.c -DEP_CPP_OPERA=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - +SOURCE=\TCL\bin\tcl75.lib # End Source File ################################################################################ # Begin Source File -SOURCE=.\Modules\errnomodule.c -DEP_CPP_ERRNO=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - +SOURCE=.\PC\_tkinter.def # End Source File ################################################################################ # Begin Source File -SOURCE=.\Objects\sliceobject.c - -!IF "$(CFG)" == "vc40_nt - Win32 Release" - -DEP_CPP_SLICE=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" - -DEP_CPP_SLICE=\ - ".\./Include\Python.h"\ - ".\./Include\allobjects.h"\ - ".\./PC\config.h"\ - ".\Include\myproto.h"\ - ".\Include\object.h"\ - ".\Include\objimpl.h"\ - ".\Include\pydebug.h"\ - ".\Include\accessobject.h"\ - ".\Include\intobject.h"\ - ".\Include\longobject.h"\ - ".\Include\floatobject.h"\ - ".\./Include\complexobject.h"\ - ".\Include\rangeobject.h"\ - ".\Include\stringobject.h"\ - ".\Include\tupleobject.h"\ - ".\Include\listobject.h"\ - ".\Include\mappingobject.h"\ - ".\Include\methodobject.h"\ - ".\Include\moduleobject.h"\ - ".\Include\funcobject.h"\ - ".\Include\classobject.h"\ - ".\Include\fileobject.h"\ - ".\Include\cobject.h"\ - ".\./Include\traceback.h"\ - ".\Include\sliceobject.h"\ - ".\Include\errors.h"\ - ".\Include\mymalloc.h"\ - ".\./Include\modsupport.h"\ - ".\./Include\ceval.h"\ - ".\Include\pythonrun.h"\ - ".\./Include\sysmodule.h"\ - ".\Include\intrcheck.h"\ - ".\./Include\import.h"\ - ".\./Include\bltinmodule.h"\ - ".\Include\abstract.h"\ - ".\./Include\rename2.h"\ - ".\./Include\thread.h"\ - - -"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)" - $(CPP) $(CPP_PROJ) $(SOURCE) - - -!ENDIF - +SOURCE=.\vc40\python14.lib # End Source File # End Target # End Project diff --git a/PC/vc40.mdp b/PC/vc40.mdp deleted file mode 100644 index 1609218..0000000 Binary files a/PC/vc40.mdp and /dev/null differ diff --git a/PC/vc40.ncb b/PC/vc40.ncb deleted file mode 100644 index 95ddb2d..0000000 Binary files a/PC/vc40.ncb and /dev/null differ -- cgit v0.12