]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
More changes for NT, Guido style
authorGuido van Rossum <guido@python.org>
Thu, 22 Aug 1996 00:06:59 +0000 (00:06 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 22 Aug 1996 00:06:59 +0000 (00:06 +0000)
PC/_tkinter.def [new file with mode: 0644]
PC/config.c
PC/config.h
PC/getpath_nt.c
PC/import_nt.c
PC/main_nt.c
PC/python.def
PC/vc40.mak
PC/vc40.mdp [deleted file]
PC/vc40.ncb [deleted file]

diff --git a/PC/_tkinter.def b/PC/_tkinter.def
new file mode 100644 (file)
index 0000000..c187838
--- /dev/null
@@ -0,0 +1,2 @@
+EXPORTS
+       init_tkinter
index e32e7a18f571339640706dfa54d3fb913929ad86..b128aaaa12779ec60645a7fbbb6a498bf62c1610 100644 (file)
@@ -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},
index 5a1c4fb17ddfff63130921f59ac2866f0f7899cb..0367e3b048477e81b47c79d6c794bae2ed4ba1c6 100644 (file)
@@ -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
 
index 045fc7c2d1a6f1010297dc0455f9f2f7a160b64d..039a39e0f65d8956f3626c65cfdf1809b298e0ef 100644 (file)
@@ -2,10 +2,6 @@
 #include "osdefs.h"
 #include <windows.h>
 
-#ifndef WIN32_PATCH_LEVEL
-#define WIN32_PATCH_LEVEL "000"
-#endif
-
 /* PREFIX and EXEC_PREFIX are meaningless on Windows */
 
 #ifndef PREFIX
index cac4734a8657d0fd481697a4dd339c5400325f47..b6609a942bf5a2469d14212637250938b0bfcc68 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
 
- importnt.c 
+ import_nt.c 
 
   Win32 specific import code.
 
 #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)
index 5b3db05b12c383b5c843ed23ea94768b2a7fed16..f475d9ac5cfecb8f7176fe85eca9e3ec17002a77 100644 (file)
@@ -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)
index 0f8e04dcadc5e703e4fb4441224cf73272a475d9..3ac4b907eeee6c227a3745d6f321eb4e9d0d9ba8 100644 (file)
@@ -231,3 +231,8 @@ EXPORTS
        PyTuple_GetItem
        PyTuple_SetItem
        PyTuple_GetSlice
+       Py_Main
+       PySlice_Type DATA
+       PySlice_New
+       PySlice_GetIndices
+       Py_GetProgramName
index ce8a45e98bd2d66cdc0e92de2f4bad536975f6f5..f52bcf1d9e127e3550b9b1606b5d859d6e08a163 100644 (file)
@@ -5,28 +5,25 @@
 # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102\r
 \r
 !IF "$(CFG)" == ""\r
-CFG=vc40_nt - Win32 Debug\r
-!MESSAGE No configuration specified.  Defaulting to vc40_nt - Win32 Debug.\r
+CFG=_tkinter - Win32 Release\r
+!MESSAGE No configuration specified.  Defaulting to _tkinter - Win32 Release.\r
 !ENDIF \r
 \r
-!IF "$(CFG)" != "vc40 - Win32 Release" && "$(CFG)" != "vc40 - Win32 Debug" &&\\r
- "$(CFG)" != "vc40_dll - Win32 Release" && "$(CFG)" != "vc40_dll - Win32 Debug"\\r
- && "$(CFG)" != "vc40_nt - Win32 Release" && "$(CFG)" != "vc40_nt - Win32 Debug"\r
+!IF "$(CFG)" != "python14 - Win32 Release" && "$(CFG)" !=\\r
+ "python - Win32 Release" && "$(CFG)" != "_tkinter - Win32 Release"\r
 !MESSAGE Invalid configuration "$(CFG)" specified.\r
 !MESSAGE You can specify a configuration when running NMAKE on this makefile\r
 !MESSAGE by defining the macro CFG on the command line.  For example:\r
 !MESSAGE \r
-!MESSAGE NMAKE /f "vc40.mak" CFG="vc40_nt - Win32 Debug"\r
+!MESSAGE NMAKE /f "vc40.mak" CFG="_tkinter - Win32 Release"\r
 !MESSAGE \r
 !MESSAGE Possible choices for configuration are:\r
 !MESSAGE \r
-!MESSAGE "vc40 - Win32 Release" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "vc40 - Win32 Debug" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "vc40_dll - Win32 Release" (based on\\r
+!MESSAGE "python14 - Win32 Release" (based on\\r
+ "Win32 (x86) Dynamic-Link Library")\r
+!MESSAGE "python - Win32 Release" (based on "Win32 (x86) Console Application")\r
+!MESSAGE "_tkinter - Win32 Release" (based on\\r
  "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "vc40_dll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "vc40_nt - Win32 Release" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "vc40_nt - Win32 Debug" (based on "Win32 (x86) Console Application")\r
 !MESSAGE \r
 !ERROR An invalid configuration is specified.\r
 !ENDIF \r
@@ -38,253 +35,125 @@ NULL=nul
 !ENDIF \r
 ################################################################################\r
 # Begin Project\r
-# PROP Target_Last_Scanned "vc40_nt - Win32 Debug"\r
+# PROP Target_Last_Scanned "_tkinter - Win32 Release"\r
 \r
-!IF  "$(CFG)" == "vc40 - Win32 Release"\r
+!IF  "$(CFG)" == "python14 - Win32 Release"\r
 \r
 # PROP BASE Use_MFC 0\r
 # PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
+# PROP BASE Output_Dir "python14\Release"\r
+# PROP BASE Intermediate_Dir "python14\Release"\r
+# PROP BASE Target_Dir "python14"\r
 # PROP Use_MFC 0\r
 # PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "pc\Release"\r
-# PROP Intermediate_Dir "pc\Release"\r
-# PROP Target_Dir ""\r
-OUTDIR=.\pc\Release\r
-INTDIR=.\pc\Release\r
-\r
-ALL : \r
-\r
-CLEAN : \r
-       -@erase \r
-\r
-"$(OUTDIR)" :\r
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
-\r
-CPP=cl.exe\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c\r
-CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\\r
- "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\\r
- /Fo"$(INTDIR)/" /c \r
-CPP_OBJS=.\pc\Release/\r
-CPP_SBRS=\r
-\r
-.c{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.c{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-RSC=rc.exe\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" \r
-BSC32_SBRS=\r
-LINK32=link.exe\r
-# 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\r
-# 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\r
-LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\\r
- comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\\r
- odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no\\r
- /pdb:"$(OUTDIR)/vc40.pdb" /machine:I386 /out:"$(OUTDIR)/vc40.exe" \r
-LINK32_OBJS=\r
-\r
-!ELSEIF  "$(CFG)" == "vc40 - Win32 Debug"\r
+# PROP Output_Dir "vc40"\r
+# PROP Intermediate_Dir "vc40/tmp"\r
+# PROP Target_Dir "python14"\r
+OUTDIR=.\vc40\r
+INTDIR=.\vc40/tmp\r
 \r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "pc\Debug"\r
-# PROP Intermediate_Dir "pc\Debug"\r
-# PROP Target_Dir ""\r
-OUTDIR=.\pc\Debug\r
-INTDIR=.\pc\Debug\r
-\r
-ALL : \r
+ALL : "$(OUTDIR)\python14.dll"\r
 \r
 CLEAN : \r
-       -@erase \r
+       -@erase ".\vc40\python14.dll"\r
+       -@erase ".\vc40\tmp\longobject.obj"\r
+       -@erase ".\vc40\tmp\listobject.obj"\r
+       -@erase ".\vc40\tmp\intobject.obj"\r
+       -@erase ".\vc40\tmp\importdl.obj"\r
+       -@erase ".\vc40\tmp\imageop.obj"\r
+       -@erase ".\vc40\tmp\grammar1.obj"\r
+       -@erase ".\vc40\tmp\graminit.obj"\r
+       -@erase ".\vc40\tmp\getversion.obj"\r
+       -@erase ".\vc40\tmp\getplatform.obj"\r
+       -@erase ".\vc40\tmp\getmtime.obj"\r
+       -@erase ".\vc40\tmp\getcopyright.obj"\r
+       -@erase ".\vc40\tmp\getcompiler.obj"\r
+       -@erase ".\vc40\tmp\getargs.obj"\r
+       -@erase ".\vc40\tmp\funcobject.obj"\r
+       -@erase ".\vc40\tmp\frozen.obj"\r
+       -@erase ".\vc40\tmp\frameobject.obj"\r
+       -@erase ".\vc40\tmp\floatobject.obj"\r
+       -@erase ".\vc40\tmp\fileobject.obj"\r
+       -@erase ".\vc40\tmp\errors.obj"\r
+       -@erase ".\vc40\tmp\config.obj"\r
+       -@erase ".\vc40\tmp\complexobject.obj"\r
+       -@erase ".\vc40\tmp\compile.obj"\r
+       -@erase ".\vc40\tmp\cobject.obj"\r
+       -@erase ".\vc40\tmp\cmathmodule.obj"\r
+       -@erase ".\vc40\tmp\classobject.obj"\r
+       -@erase ".\vc40\tmp\cgensupport.obj"\r
+       -@erase ".\vc40\tmp\ceval.obj"\r
+       -@erase ".\vc40\tmp\bltinmodule.obj"\r
+       -@erase ".\vc40\tmp\binascii.obj"\r
+       -@erase ".\vc40\tmp\audioop.obj"\r
+       -@erase ".\vc40\tmp\arraymodule.obj"\r
+       -@erase ".\vc40\tmp\accessobject.obj"\r
+       -@erase ".\vc40\tmp\acceler.obj"\r
+       -@erase ".\vc40\tmp\abstract.obj"\r
+       -@erase ".\vc40\tmp\yuvconvert.obj"\r
+       -@erase ".\vc40\tmp\typeobject.obj"\r
+       -@erase ".\vc40\tmp\tupleobject.obj"\r
+       -@erase ".\vc40\tmp\traceback.obj"\r
+       -@erase ".\vc40\tmp\tokenizer.obj"\r
+       -@erase ".\vc40\tmp\timemodule.obj"\r
+       -@erase ".\vc40\tmp\threadmodule.obj"\r
+       -@erase ".\vc40\tmp\thread.obj"\r
+       -@erase ".\vc40\tmp\structmodule.obj"\r
+       -@erase ".\vc40\tmp\structmember.obj"\r
+       -@erase ".\vc40\tmp\stropmodule.obj"\r
+       -@erase ".\vc40\tmp\stringobject.obj"\r
+       -@erase ".\vc40\tmp\soundex.obj"\r
+       -@erase ".\vc40\tmp\signalmodule.obj"\r
+       -@erase ".\vc40\tmp\rotormodule.obj"\r
+       -@erase ".\vc40\tmp\rgbimgmodule.obj"\r
+       -@erase ".\vc40\tmp\regexpr.obj"\r
+       -@erase ".\vc40\tmp\regexmodule.obj"\r
+       -@erase ".\vc40\tmp\rangeobject.obj"\r
+       -@erase ".\vc40\tmp\pythonrun.obj"\r
+       -@erase ".\vc40\tmp\parsetok.obj"\r
+       -@erase ".\vc40\tmp\parser.obj"\r
+       -@erase ".\vc40\tmp\object.obj"\r
+       -@erase ".\vc40\tmp\node.obj"\r
+       -@erase ".\vc40\tmp\newmodule.obj"\r
+       -@erase ".\vc40\tmp\marshal.obj"\r
+       -@erase ".\vc40\tmp\mystrtoul.obj"\r
+       -@erase ".\vc40\tmp\myreadline.obj"\r
+       -@erase ".\vc40\tmp\moduleobject.obj"\r
+       -@erase ".\vc40\tmp\modsupport.obj"\r
+       -@erase ".\vc40\tmp\methodobject.obj"\r
+       -@erase ".\vc40\tmp\md5module.obj"\r
+       -@erase ".\vc40\tmp\md5c.obj"\r
+       -@erase ".\vc40\tmp\mathmodule.obj"\r
+       -@erase ".\vc40\tmp\mappingobject.obj"\r
+       -@erase ".\vc40\tmp\socketmodule.obj"\r
+       -@erase ".\vc40\tmp\selectmodule.obj"\r
+       -@erase ".\vc40\tmp\sysmodule.obj"\r
+       -@erase ".\vc40\tmp\import.obj"\r
+       -@erase ".\vc40\tmp\posixmodule.obj"\r
+       -@erase ".\vc40\tmp\operator.obj"\r
+       -@erase ".\vc40\tmp\errnomodule.obj"\r
+       -@erase ".\vc40\tmp\sliceobject.obj"\r
+       -@erase ".\vc40\tmp\main.obj"\r
+       -@erase ".\vc40\tmp\getopt.obj"\r
+       -@erase ".\vc40\tmp\import_nt.obj"\r
+       -@erase ".\vc40\tmp\getpath_nt.obj"\r
+       -@erase ".\vc40\tmp\dl_nt.obj"\r
+       -@erase ".\vc40\python14.lib"\r
+       -@erase ".\vc40\python14.exp"\r
 \r
 "$(OUTDIR)" :\r
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
 \r
-CPP=cl.exe\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c\r
-# 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\r
-CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\\r
- /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\\r
- /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c \r
-CPP_OBJS=.\pc\Debug/\r
-CPP_SBRS=\r
-\r
-.c{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.c{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-RSC=rc.exe\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" \r
-BSC32_SBRS=\r
-LINK32=link.exe\r
-# 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\r
-# 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\r
-LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\\r
- comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\\r
- odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes\\r
- /pdb:"$(OUTDIR)/vc40.pdb" /debug /machine:I386 /out:"$(OUTDIR)/vc40.exe" \r
-LINK32_OBJS=\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "vc40_dll\Release"\r
-# PROP BASE Intermediate_Dir "vc40_dll\Release"\r
-# PROP BASE Target_Dir "vc40_dll"\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "vc40_dll\Release"\r
-# PROP Intermediate_Dir "vc40_dll\Release"\r
-# PROP Target_Dir "vc40_dll"\r
-OUTDIR=.\vc40_dll\Release\r
-INTDIR=.\vc40_dll\Release\r
-\r
-ALL : "$(OUTDIR)\py14an.dll"\r
-\r
-CLEAN : \r
-       -@erase ".\vc40_dll\Release\py14an.dll"\r
-       -@erase ".\vc40_dll\Release\thread.obj"\r
-       -@erase ".\vc40_dll\Release\classobject.obj"\r
-       -@erase ".\vc40_dll\Release\bltinmodule.obj"\r
-       -@erase ".\vc40_dll\Release\object.obj"\r
-       -@erase ".\vc40_dll\Release\getargs.obj"\r
-       -@erase ".\vc40_dll\Release\getcompiler.obj"\r
-       -@erase ".\vc40_dll\Release\graminit.obj"\r
-       -@erase ".\vc40_dll\Release\importdl.obj"\r
-       -@erase ".\vc40_dll\Release\structmodule.obj"\r
-       -@erase ".\vc40_dll\Release\mystrtoul.obj"\r
-       -@erase ".\vc40_dll\Release\errnomodule.obj"\r
-       -@erase ".\vc40_dll\Release\frameobject.obj"\r
-       -@erase ".\vc40_dll\Release\fileobject.obj"\r
-       -@erase ".\vc40_dll\Release\longobject.obj"\r
-       -@erase ".\vc40_dll\Release\regexmodule.obj"\r
-       -@erase ".\vc40_dll\Release\environment.obj"\r
-       -@erase ".\vc40_dll\Release\audioop.obj"\r
-       -@erase ".\vc40_dll\Release\floatobject.obj"\r
-       -@erase ".\vc40_dll\Release\cobject.obj"\r
-       -@erase ".\vc40_dll\Release\frozen.obj"\r
-       -@erase ".\vc40_dll\Release\moduleobject.obj"\r
-       -@erase ".\vc40_dll\Release\node.obj"\r
-       -@erase ".\vc40_dll\Release\cmathmodule.obj"\r
-       -@erase ".\vc40_dll\Release\grammar1.obj"\r
-       -@erase ".\vc40_dll\Release\abstract.obj"\r
-       -@erase ".\vc40_dll\Release\complexobject.obj"\r
-       -@erase ".\vc40_dll\Release\arraymodule.obj"\r
-       -@erase ".\vc40_dll\Release\selectmodule.obj"\r
-       -@erase ".\vc40_dll\Release\structmember.obj"\r
-       -@erase ".\vc40_dll\Release\acceler.obj"\r
-       -@erase ".\vc40_dll\Release\timemodule.obj"\r
-       -@erase ".\vc40_dll\Release\accessobject.obj"\r
-       -@erase ".\vc40_dll\Release\socketmodule.obj"\r
-       -@erase ".\vc40_dll\Release\soundex.obj"\r
-       -@erase ".\vc40_dll\Release\tokenizer.obj"\r
-       -@erase ".\vc40_dll\Release\stringobject.obj"\r
-       -@erase ".\vc40_dll\Release\stropmodule.obj"\r
-       -@erase ".\vc40_dll\Release\intobject.obj"\r
-       -@erase ".\vc40_dll\Release\parsetok.obj"\r
-       -@erase ".\vc40_dll\Release\getcopyright.obj"\r
-       -@erase ".\vc40_dll\Release\getpath.obj"\r
-       -@erase ".\vc40_dll\Release\listobject.obj"\r
-       -@erase ".\vc40_dll\Release\typeobject.obj"\r
-       -@erase ".\vc40_dll\Release\rangeobject.obj"\r
-       -@erase ".\vc40_dll\Release\md5module.obj"\r
-       -@erase ".\vc40_dll\Release\traceback.obj"\r
-       -@erase ".\vc40_dll\Release\sysmodule.obj"\r
-       -@erase ".\vc40_dll\Release\marshal.obj"\r
-       -@erase ".\vc40_dll\Release\yuvconvert.obj"\r
-       -@erase ".\vc40_dll\Release\pythonrun.obj"\r
-       -@erase ".\vc40_dll\Release\getversion.obj"\r
-       -@erase ".\vc40_dll\Release\threadmodule.obj"\r
-       -@erase ".\vc40_dll\Release\mathmodule.obj"\r
-       -@erase ".\vc40_dll\Release\ceval.obj"\r
-       -@erase ".\vc40_dll\Release\compile.obj"\r
-       -@erase ".\vc40_dll\Release\import.obj"\r
-       -@erase ".\vc40_dll\Release\md5c.obj"\r
-       -@erase ".\vc40_dll\Release\posixmodule.obj"\r
-       -@erase ".\vc40_dll\Release\errors.obj"\r
-       -@erase ".\vc40_dll\Release\binascii.obj"\r
-       -@erase ".\vc40_dll\Release\cgensupport.obj"\r
-       -@erase ".\vc40_dll\Release\methodobject.obj"\r
-       -@erase ".\vc40_dll\Release\rgbimgmodule.obj"\r
-       -@erase ".\vc40_dll\Release\getplatform.obj"\r
-       -@erase ".\vc40_dll\Release\signalmodule.obj"\r
-       -@erase ".\vc40_dll\Release\parser.obj"\r
-       -@erase ".\vc40_dll\Release\getmtime.obj"\r
-       -@erase ".\vc40_dll\Release\funcobject.obj"\r
-       -@erase ".\vc40_dll\Release\operator.obj"\r
-       -@erase ".\vc40_dll\Release\mappingobject.obj"\r
-       -@erase ".\vc40_dll\Release\myreadline.obj"\r
-       -@erase ".\vc40_dll\Release\config.obj"\r
-       -@erase ".\vc40_dll\Release\imageop.obj"\r
-       -@erase ".\vc40_dll\Release\rotormodule.obj"\r
-       -@erase ".\vc40_dll\Release\regexpr.obj"\r
-       -@erase ".\vc40_dll\Release\tupleobject.obj"\r
-       -@erase ".\vc40_dll\Release\modsupport.obj"\r
-       -@erase ".\vc40_dll\Release\newmodule.obj"\r
-       -@erase ".\vc40_dll\Release\sliceobject.obj"\r
-       -@erase ".\vc40_dll\Release\py14an.lib"\r
-       -@erase ".\vc40_dll\Release\py14an.exp"\r
-\r
-"$(OUTDIR)" :\r
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
+"$(INTDIR)" :\r
+    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"\r
 \r
 CPP=cl.exe\r
 # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c\r
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c\r
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\\r
"WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\\r
- /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /c \r
-CPP_OBJS=.\vc40_dll\Release/\r
+# 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\r
+CPP_PROJ=/nologo /MD /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32"\\r
/D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /Fp"$(INTDIR)/python14.pch"\\r
+ /YX /Fo"$(INTDIR)/" /c \r
+CPP_OBJS=.\vc40/tmp/\r
 CPP_SBRS=\r
 \r
 .c{$(CPP_OBJS)}.obj:\r
@@ -315,458 +184,141 @@ RSC=rc.exe
 BSC32=bscmake.exe\r
 # ADD BASE BSC32 /nologo\r
 # ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" \r
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/python14.bsc" \r
 BSC32_SBRS=\r
 LINK32=link.exe\r
 # 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\r
-# 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"\r
+# 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\r
 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\\r
  advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\\r
  odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:no\\r
- /pdb:"$(OUTDIR)/py14an.pdb" /machine:I386 /def:".\PC\python.def"\\r
- /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" \r
-DEF_FILE= \\r
-       ".\PC\python.def"\r
-LINK32_OBJS= \\r
-       ".\vc40_dll\Release\thread.obj" \\r
-       ".\vc40_dll\Release\classobject.obj" \\r
-       ".\vc40_dll\Release\bltinmodule.obj" \\r
-       ".\vc40_dll\Release\object.obj" \\r
-       ".\vc40_dll\Release\getargs.obj" \\r
-       ".\vc40_dll\Release\getcompiler.obj" \\r
-       ".\vc40_dll\Release\graminit.obj" \\r
-       ".\vc40_dll\Release\importdl.obj" \\r
-       ".\vc40_dll\Release\structmodule.obj" \\r
-       ".\vc40_dll\Release\mystrtoul.obj" \\r
-       ".\vc40_dll\Release\errnomodule.obj" \\r
-       ".\vc40_dll\Release\frameobject.obj" \\r
-       ".\vc40_dll\Release\fileobject.obj" \\r
-       ".\vc40_dll\Release\longobject.obj" \\r
-       ".\vc40_dll\Release\regexmodule.obj" \\r
-       ".\vc40_dll\Release\environment.obj" \\r
-       ".\vc40_dll\Release\audioop.obj" \\r
-       ".\vc40_dll\Release\floatobject.obj" \\r
-       ".\vc40_dll\Release\cobject.obj" \\r
-       ".\vc40_dll\Release\frozen.obj" \\r
-       ".\vc40_dll\Release\moduleobject.obj" \\r
-       ".\vc40_dll\Release\node.obj" \\r
-       ".\vc40_dll\Release\cmathmodule.obj" \\r
-       ".\vc40_dll\Release\grammar1.obj" \\r
-       ".\vc40_dll\Release\abstract.obj" \\r
-       ".\vc40_dll\Release\complexobject.obj" \\r
-       ".\vc40_dll\Release\arraymodule.obj" \\r
-       ".\vc40_dll\Release\selectmodule.obj" \\r
-       ".\vc40_dll\Release\structmember.obj" \\r
-       ".\vc40_dll\Release\acceler.obj" \\r
-       ".\vc40_dll\Release\timemodule.obj" \\r
-       ".\vc40_dll\Release\accessobject.obj" \\r
-       ".\vc40_dll\Release\socketmodule.obj" \\r
-       ".\vc40_dll\Release\soundex.obj" \\r
-       ".\vc40_dll\Release\tokenizer.obj" \\r
-       ".\vc40_dll\Release\stringobject.obj" \\r
-       ".\vc40_dll\Release\stropmodule.obj" \\r
-       ".\vc40_dll\Release\intobject.obj" \\r
-       ".\vc40_dll\Release\parsetok.obj" \\r
-       ".\vc40_dll\Release\getcopyright.obj" \\r
-       ".\vc40_dll\Release\getpath.obj" \\r
-       ".\vc40_dll\Release\listobject.obj" \\r
-       ".\vc40_dll\Release\typeobject.obj" \\r
-       ".\vc40_dll\Release\rangeobject.obj" \\r
-       ".\vc40_dll\Release\md5module.obj" \\r
-       ".\vc40_dll\Release\traceback.obj" \\r
-       ".\vc40_dll\Release\sysmodule.obj" \\r
-       ".\vc40_dll\Release\marshal.obj" \\r
-       ".\vc40_dll\Release\yuvconvert.obj" \\r
-       ".\vc40_dll\Release\pythonrun.obj" \\r
-       ".\vc40_dll\Release\getversion.obj" \\r
-       ".\vc40_dll\Release\threadmodule.obj" \\r
-       ".\vc40_dll\Release\mathmodule.obj" \\r
-       ".\vc40_dll\Release\ceval.obj" \\r
-       ".\vc40_dll\Release\compile.obj" \\r
-       ".\vc40_dll\Release\import.obj" \\r
-       ".\vc40_dll\Release\md5c.obj" \\r
-       ".\vc40_dll\Release\posixmodule.obj" \\r
-       ".\vc40_dll\Release\errors.obj" \\r
-       ".\vc40_dll\Release\binascii.obj" \\r
-       ".\vc40_dll\Release\cgensupport.obj" \\r
-       ".\vc40_dll\Release\methodobject.obj" \\r
-       ".\vc40_dll\Release\rgbimgmodule.obj" \\r
-       ".\vc40_dll\Release\getplatform.obj" \\r
-       ".\vc40_dll\Release\signalmodule.obj" \\r
-       ".\vc40_dll\Release\parser.obj" \\r
-       ".\vc40_dll\Release\getmtime.obj" \\r
-       ".\vc40_dll\Release\funcobject.obj" \\r
-       ".\vc40_dll\Release\operator.obj" \\r
-       ".\vc40_dll\Release\mappingobject.obj" \\r
-       ".\vc40_dll\Release\myreadline.obj" \\r
-       ".\vc40_dll\Release\config.obj" \\r
-       ".\vc40_dll\Release\imageop.obj" \\r
-       ".\vc40_dll\Release\rotormodule.obj" \\r
-       ".\vc40_dll\Release\regexpr.obj" \\r
-       ".\vc40_dll\Release\tupleobject.obj" \\r
-       ".\vc40_dll\Release\modsupport.obj" \\r
-       ".\vc40_dll\Release\newmodule.obj" \\r
-       ".\vc40_dll\Release\sliceobject.obj"\r
-\r
-"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
-    $(LINK32) @<<\r
-  $(LINK32_FLAGS) $(LINK32_OBJS)\r
-<<\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "vc40_dll\Debug"\r
-# PROP BASE Intermediate_Dir "vc40_dll\Debug"\r
-# PROP BASE Target_Dir "vc40_dll"\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "vc40_dll\Debug"\r
-# PROP Intermediate_Dir "vc40_dll\Debug"\r
-# PROP Target_Dir "vc40_dll"\r
-OUTDIR=.\vc40_dll\Debug\r
-INTDIR=.\vc40_dll\Debug\r
-\r
-ALL : "$(OUTDIR)\py14an.dll"\r
-\r
-CLEAN : \r
-       -@erase ".\vc40_dll\Debug\vc40.pdb"\r
-       -@erase ".\vc40_dll\Debug\vc40.idb"\r
-       -@erase ".\vc40_dll\Debug\py14an.dll"\r
-       -@erase ".\vc40_dll\Debug\threadmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\frameobject.obj"\r
-       -@erase ".\vc40_dll\Debug\fileobject.obj"\r
-       -@erase ".\vc40_dll\Debug\longobject.obj"\r
-       -@erase ".\vc40_dll\Debug\posixmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\cgensupport.obj"\r
-       -@erase ".\vc40_dll\Debug\soundex.obj"\r
-       -@erase ".\vc40_dll\Debug\tokenizer.obj"\r
-       -@erase ".\vc40_dll\Debug\selectmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\intobject.obj"\r
-       -@erase ".\vc40_dll\Debug\signalmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\getplatform.obj"\r
-       -@erase ".\vc40_dll\Debug\accessobject.obj"\r
-       -@erase ".\vc40_dll\Debug\md5c.obj"\r
-       -@erase ".\vc40_dll\Debug\imageop.obj"\r
-       -@erase ".\vc40_dll\Debug\getpath.obj"\r
-       -@erase ".\vc40_dll\Debug\timemodule.obj"\r
-       -@erase ".\vc40_dll\Debug\md5module.obj"\r
-       -@erase ".\vc40_dll\Debug\traceback.obj"\r
-       -@erase ".\vc40_dll\Debug\sysmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\marshal.obj"\r
-       -@erase ".\vc40_dll\Debug\stringobject.obj"\r
-       -@erase ".\vc40_dll\Debug\getmtime.obj"\r
-       -@erase ".\vc40_dll\Debug\import.obj"\r
-       -@erase ".\vc40_dll\Debug\pythonrun.obj"\r
-       -@erase ".\vc40_dll\Debug\mappingobject.obj"\r
-       -@erase ".\vc40_dll\Debug\operator.obj"\r
-       -@erase ".\vc40_dll\Debug\errors.obj"\r
-       -@erase ".\vc40_dll\Debug\getargs.obj"\r
-       -@erase ".\vc40_dll\Debug\rotormodule.obj"\r
-       -@erase ".\vc40_dll\Debug\tupleobject.obj"\r
-       -@erase ".\vc40_dll\Debug\ceval.obj"\r
-       -@erase ".\vc40_dll\Debug\modsupport.obj"\r
-       -@erase ".\vc40_dll\Debug\listobject.obj"\r
-       -@erase ".\vc40_dll\Debug\typeobject.obj"\r
-       -@erase ".\vc40_dll\Debug\classobject.obj"\r
-       -@erase ".\vc40_dll\Debug\parser.obj"\r
-       -@erase ".\vc40_dll\Debug\yuvconvert.obj"\r
-       -@erase ".\vc40_dll\Debug\getversion.obj"\r
-       -@erase ".\vc40_dll\Debug\bltinmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\structmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\getcompiler.obj"\r
-       -@erase ".\vc40_dll\Debug\mathmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\methodobject.obj"\r
-       -@erase ".\vc40_dll\Debug\rgbimgmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\importdl.obj"\r
-       -@erase ".\vc40_dll\Debug\errnomodule.obj"\r
-       -@erase ".\vc40_dll\Debug\regexmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\environment.obj"\r
-       -@erase ".\vc40_dll\Debug\binascii.obj"\r
-       -@erase ".\vc40_dll\Debug\floatobject.obj"\r
-       -@erase ".\vc40_dll\Debug\moduleobject.obj"\r
-       -@erase ".\vc40_dll\Debug\acceler.obj"\r
-       -@erase ".\vc40_dll\Debug\thread.obj"\r
-       -@erase ".\vc40_dll\Debug\cmathmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\regexpr.obj"\r
-       -@erase ".\vc40_dll\Debug\newmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\funcobject.obj"\r
-       -@erase ".\vc40_dll\Debug\object.obj"\r
-       -@erase ".\vc40_dll\Debug\structmember.obj"\r
-       -@erase ".\vc40_dll\Debug\arraymodule.obj"\r
-       -@erase ".\vc40_dll\Debug\complexobject.obj"\r
-       -@erase ".\vc40_dll\Debug\grammar1.obj"\r
-       -@erase ".\vc40_dll\Debug\abstract.obj"\r
-       -@erase ".\vc40_dll\Debug\myreadline.obj"\r
-       -@erase ".\vc40_dll\Debug\node.obj"\r
-       -@erase ".\vc40_dll\Debug\socketmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\mystrtoul.obj"\r
-       -@erase ".\vc40_dll\Debug\frozen.obj"\r
-       -@erase ".\vc40_dll\Debug\stropmodule.obj"\r
-       -@erase ".\vc40_dll\Debug\getcopyright.obj"\r
-       -@erase ".\vc40_dll\Debug\audioop.obj"\r
-       -@erase ".\vc40_dll\Debug\compile.obj"\r
-       -@erase ".\vc40_dll\Debug\cobject.obj"\r
-       -@erase ".\vc40_dll\Debug\parsetok.obj"\r
-       -@erase ".\vc40_dll\Debug\rangeobject.obj"\r
-       -@erase ".\vc40_dll\Debug\config.obj"\r
-       -@erase ".\vc40_dll\Debug\graminit.obj"\r
-       -@erase ".\vc40_dll\Debug\sliceobject.obj"\r
-       -@erase ".\vc40_dll\Debug\py14an.ilk"\r
-       -@erase ".\vc40_dll\Debug\py14an.lib"\r
-       -@erase ".\vc40_dll\Debug\py14an.exp"\r
-       -@erase ".\vc40_dll\Debug\py14an.pdb"\r
-\r
-"$(OUTDIR)" :\r
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
-\r
-CPP=cl.exe\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c\r
-# 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\r
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\\r
- /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\\r
- /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c \r
-CPP_OBJS=.\vc40_dll\Debug/\r
-CPP_SBRS=\r
-\r
-.c{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_OBJS)}.obj:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.c{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cpp{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-.cxx{$(CPP_SBRS)}.sbr:\r
-   $(CPP) $(CPP_PROJ) $<  \r
-\r
-MTL=mktyplib.exe\r
-# ADD BASE MTL /nologo /D "_DEBUG" /win32\r
-# ADD MTL /nologo /D "_DEBUG" /win32\r
-MTL_PROJ=/nologo /D "_DEBUG" /win32 \r
-RSC=rc.exe\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" \r
-BSC32_SBRS=\r
-LINK32=link.exe\r
-# 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\r
-# 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"\r
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\\r
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\\r
- odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:yes\\r
- /pdb:"$(OUTDIR)/py14an.pdb" /debug /machine:I386 /def:".\PC\python.def"\\r
- /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" \r
+ /pdb:"$(OUTDIR)/python14.pdb" /machine:I386 /def:".\PC\python_nt.def"\\r
+ /out:"$(OUTDIR)/python14.dll" /implib:"$(OUTDIR)/python14.lib" \r
 DEF_FILE= \\r
-       ".\PC\python.def"\r
+       ".\PC\python_nt.def"\r
 LINK32_OBJS= \\r
-       ".\vc40_dll\Debug\threadmodule.obj" \\r
-       ".\vc40_dll\Debug\frameobject.obj" \\r
-       ".\vc40_dll\Debug\fileobject.obj" \\r
-       ".\vc40_dll\Debug\longobject.obj" \\r
-       ".\vc40_dll\Debug\posixmodule.obj" \\r
-       ".\vc40_dll\Debug\cgensupport.obj" \\r
-       ".\vc40_dll\Debug\soundex.obj" \\r
-       ".\vc40_dll\Debug\tokenizer.obj" \\r
-       ".\vc40_dll\Debug\selectmodule.obj" \\r
-       ".\vc40_dll\Debug\intobject.obj" \\r
-       ".\vc40_dll\Debug\signalmodule.obj" \\r
-       ".\vc40_dll\Debug\getplatform.obj" \\r
-       ".\vc40_dll\Debug\accessobject.obj" \\r
-       ".\vc40_dll\Debug\md5c.obj" \\r
-       ".\vc40_dll\Debug\imageop.obj" \\r
-       ".\vc40_dll\Debug\getpath.obj" \\r
-       ".\vc40_dll\Debug\timemodule.obj" \\r
-       ".\vc40_dll\Debug\md5module.obj" \\r
-       ".\vc40_dll\Debug\traceback.obj" \\r
-       ".\vc40_dll\Debug\sysmodule.obj" \\r
-       ".\vc40_dll\Debug\marshal.obj" \\r
-       ".\vc40_dll\Debug\stringobject.obj" \\r
-       ".\vc40_dll\Debug\getmtime.obj" \\r
-       ".\vc40_dll\Debug\import.obj" \\r
-       ".\vc40_dll\Debug\pythonrun.obj" \\r
-       ".\vc40_dll\Debug\mappingobject.obj" \\r
-       ".\vc40_dll\Debug\operator.obj" \\r
-       ".\vc40_dll\Debug\errors.obj" \\r
-       ".\vc40_dll\Debug\getargs.obj" \\r
-       ".\vc40_dll\Debug\rotormodule.obj" \\r
-       ".\vc40_dll\Debug\tupleobject.obj" \\r
-       ".\vc40_dll\Debug\ceval.obj" \\r
-       ".\vc40_dll\Debug\modsupport.obj" \\r
-       ".\vc40_dll\Debug\listobject.obj" \\r
-       ".\vc40_dll\Debug\typeobject.obj" \\r
-       ".\vc40_dll\Debug\classobject.obj" \\r
-       ".\vc40_dll\Debug\parser.obj" \\r
-       ".\vc40_dll\Debug\yuvconvert.obj" \\r
-       ".\vc40_dll\Debug\getversion.obj" \\r
-       ".\vc40_dll\Debug\bltinmodule.obj" \\r
-       ".\vc40_dll\Debug\structmodule.obj" \\r
-       ".\vc40_dll\Debug\getcompiler.obj" \\r
-       ".\vc40_dll\Debug\mathmodule.obj" \\r
-       ".\vc40_dll\Debug\methodobject.obj" \\r
-       ".\vc40_dll\Debug\rgbimgmodule.obj" \\r
-       ".\vc40_dll\Debug\importdl.obj" \\r
-       ".\vc40_dll\Debug\errnomodule.obj" \\r
-       ".\vc40_dll\Debug\regexmodule.obj" \\r
-       ".\vc40_dll\Debug\environment.obj" \\r
-       ".\vc40_dll\Debug\binascii.obj" \\r
-       ".\vc40_dll\Debug\floatobject.obj" \\r
-       ".\vc40_dll\Debug\moduleobject.obj" \\r
-       ".\vc40_dll\Debug\acceler.obj" \\r
-       ".\vc40_dll\Debug\thread.obj" \\r
-       ".\vc40_dll\Debug\cmathmodule.obj" \\r
-       ".\vc40_dll\Debug\regexpr.obj" \\r
-       ".\vc40_dll\Debug\newmodule.obj" \\r
-       ".\vc40_dll\Debug\funcobject.obj" \\r
-       ".\vc40_dll\Debug\object.obj" \\r
-       ".\vc40_dll\Debug\structmember.obj" \\r
-       ".\vc40_dll\Debug\arraymodule.obj" \\r
-       ".\vc40_dll\Debug\complexobject.obj" \\r
-       ".\vc40_dll\Debug\grammar1.obj" \\r
-       ".\vc40_dll\Debug\abstract.obj" \\r
-       ".\vc40_dll\Debug\myreadline.obj" \\r
-       ".\vc40_dll\Debug\node.obj" \\r
-       ".\vc40_dll\Debug\socketmodule.obj" \\r
-       ".\vc40_dll\Debug\mystrtoul.obj" \\r
-       ".\vc40_dll\Debug\frozen.obj" \\r
-       ".\vc40_dll\Debug\stropmodule.obj" \\r
-       ".\vc40_dll\Debug\getcopyright.obj" \\r
-       ".\vc40_dll\Debug\audioop.obj" \\r
-       ".\vc40_dll\Debug\compile.obj" \\r
-       ".\vc40_dll\Debug\cobject.obj" \\r
-       ".\vc40_dll\Debug\parsetok.obj" \\r
-       ".\vc40_dll\Debug\rangeobject.obj" \\r
-       ".\vc40_dll\Debug\config.obj" \\r
-       ".\vc40_dll\Debug\graminit.obj" \\r
-       ".\vc40_dll\Debug\sliceobject.obj"\r
-\r
-"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+       ".\vc40\tmp\longobject.obj" \\r
+       ".\vc40\tmp\listobject.obj" \\r
+       ".\vc40\tmp\intobject.obj" \\r
+       ".\vc40\tmp\importdl.obj" \\r
+       ".\vc40\tmp\imageop.obj" \\r
+       ".\vc40\tmp\grammar1.obj" \\r
+       ".\vc40\tmp\graminit.obj" \\r
+       ".\vc40\tmp\getversion.obj" \\r
+       ".\vc40\tmp\getplatform.obj" \\r
+       ".\vc40\tmp\getmtime.obj" \\r
+       ".\vc40\tmp\getcopyright.obj" \\r
+       ".\vc40\tmp\getcompiler.obj" \\r
+       ".\vc40\tmp\getargs.obj" \\r
+       ".\vc40\tmp\funcobject.obj" \\r
+       ".\vc40\tmp\frozen.obj" \\r
+       ".\vc40\tmp\frameobject.obj" \\r
+       ".\vc40\tmp\floatobject.obj" \\r
+       ".\vc40\tmp\fileobject.obj" \\r
+       ".\vc40\tmp\errors.obj" \\r
+       ".\vc40\tmp\config.obj" \\r
+       ".\vc40\tmp\complexobject.obj" \\r
+       ".\vc40\tmp\compile.obj" \\r
+       ".\vc40\tmp\cobject.obj" \\r
+       ".\vc40\tmp\cmathmodule.obj" \\r
+       ".\vc40\tmp\classobject.obj" \\r
+       ".\vc40\tmp\cgensupport.obj" \\r
+       ".\vc40\tmp\ceval.obj" \\r
+       ".\vc40\tmp\bltinmodule.obj" \\r
+       ".\vc40\tmp\binascii.obj" \\r
+       ".\vc40\tmp\audioop.obj" \\r
+       ".\vc40\tmp\arraymodule.obj" \\r
+       ".\vc40\tmp\accessobject.obj" \\r
+       ".\vc40\tmp\acceler.obj" \\r
+       ".\vc40\tmp\abstract.obj" \\r
+       ".\vc40\tmp\yuvconvert.obj" \\r
+       ".\vc40\tmp\typeobject.obj" \\r
+       ".\vc40\tmp\tupleobject.obj" \\r
+       ".\vc40\tmp\traceback.obj" \\r
+       ".\vc40\tmp\tokenizer.obj" \\r
+       ".\vc40\tmp\timemodule.obj" \\r
+       ".\vc40\tmp\threadmodule.obj" \\r
+       ".\vc40\tmp\thread.obj" \\r
+       ".\vc40\tmp\structmodule.obj" \\r
+       ".\vc40\tmp\structmember.obj" \\r
+       ".\vc40\tmp\stropmodule.obj" \\r
+       ".\vc40\tmp\stringobject.obj" \\r
+       ".\vc40\tmp\soundex.obj" \\r
+       ".\vc40\tmp\signalmodule.obj" \\r
+       ".\vc40\tmp\rotormodule.obj" \\r
+       ".\vc40\tmp\rgbimgmodule.obj" \\r
+       ".\vc40\tmp\regexpr.obj" \\r
+       ".\vc40\tmp\regexmodule.obj" \\r
+       ".\vc40\tmp\rangeobject.obj" \\r
+       ".\vc40\tmp\pythonrun.obj" \\r
+       ".\vc40\tmp\parsetok.obj" \\r
+       ".\vc40\tmp\parser.obj" \\r
+       ".\vc40\tmp\object.obj" \\r
+       ".\vc40\tmp\node.obj" \\r
+       ".\vc40\tmp\newmodule.obj" \\r
+       ".\vc40\tmp\marshal.obj" \\r
+       ".\vc40\tmp\mystrtoul.obj" \\r
+       ".\vc40\tmp\myreadline.obj" \\r
+       ".\vc40\tmp\moduleobject.obj" \\r
+       ".\vc40\tmp\modsupport.obj" \\r
+       ".\vc40\tmp\methodobject.obj" \\r
+       ".\vc40\tmp\md5module.obj" \\r
+       ".\vc40\tmp\md5c.obj" \\r
+       ".\vc40\tmp\mathmodule.obj" \\r
+       ".\vc40\tmp\mappingobject.obj" \\r
+       ".\vc40\tmp\socketmodule.obj" \\r
+       ".\vc40\tmp\selectmodule.obj" \\r
+       ".\vc40\tmp\sysmodule.obj" \\r
+       ".\vc40\tmp\import.obj" \\r
+       ".\vc40\tmp\posixmodule.obj" \\r
+       ".\vc40\tmp\operator.obj" \\r
+       ".\vc40\tmp\errnomodule.obj" \\r
+       ".\vc40\tmp\sliceobject.obj" \\r
+       ".\vc40\tmp\main.obj" \\r
+       ".\vc40\tmp\getopt.obj" \\r
+       ".\vc40\tmp\import_nt.obj" \\r
+       ".\vc40\tmp\getpath_nt.obj" \\r
+       ".\vc40\tmp\dl_nt.obj"\r
+\r
+"$(OUTDIR)\python14.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
     $(LINK32) @<<\r
   $(LINK32_FLAGS) $(LINK32_OBJS)\r
 <<\r
 \r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+!ELSEIF  "$(CFG)" == "python - Win32 Release"\r
 \r
 # PROP BASE Use_MFC 0\r
 # PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "vc40_nt\Release"\r
-# PROP BASE Intermediate_Dir "vc40_nt\Release"\r
-# PROP BASE Target_Dir "vc40_nt"\r
+# PROP BASE Output_Dir "python\Release"\r
+# PROP BASE Intermediate_Dir "python\Release"\r
+# PROP BASE Target_Dir "python"\r
 # PROP Use_MFC 0\r
 # PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "vc40_nt\Release"\r
-# PROP Intermediate_Dir "vc40_nt\Release"\r
-# PROP Target_Dir "vc40_nt"\r
-OUTDIR=.\vc40_nt\Release\r
-INTDIR=.\vc40_nt\Release\r
+# PROP Output_Dir "vc40"\r
+# PROP Intermediate_Dir "vc40/tmp"\r
+# PROP Target_Dir "python"\r
+OUTDIR=.\vc40\r
+INTDIR=.\vc40/tmp\r
 \r
-ALL : "$(OUTDIR)\pyth_nt.exe"\r
+ALL : "$(OUTDIR)\python.exe"\r
 \r
 CLEAN : \r
-       -@erase ".\vc40_nt\Release\pyth_nt.exe"\r
-       -@erase ".\vc40_nt\Release\importdl.obj"\r
-       -@erase ".\vc40_nt\Release\sysmodule.obj"\r
-       -@erase ".\vc40_nt\Release\mystrtoul.obj"\r
-       -@erase ".\vc40_nt\Release\myreadline.obj"\r
-       -@erase ".\vc40_nt\Release\getcopyright.obj"\r
-       -@erase ".\vc40_nt\Release\binascii.obj"\r
-       -@erase ".\vc40_nt\Release\errnomodule.obj"\r
-       -@erase ".\vc40_nt\Release\import.obj"\r
-       -@erase ".\vc40_nt\Release\frameobject.obj"\r
-       -@erase ".\vc40_nt\Release\regexmodule.obj"\r
-       -@erase ".\vc40_nt\Release\environment.obj"\r
-       -@erase ".\vc40_nt\Release\errors.obj"\r
-       -@erase ".\vc40_nt\Release\floatobject.obj"\r
-       -@erase ".\vc40_nt\Release\cmathmodule.obj"\r
-       -@erase ".\vc40_nt\Release\grammar1.obj"\r
-       -@erase ".\vc40_nt\Release\getmtime.obj"\r
-       -@erase ".\vc40_nt\Release\operator.obj"\r
-       -@erase ".\vc40_nt\Release\parser.obj"\r
-       -@erase ".\vc40_nt\Release\arraymodule.obj"\r
-       -@erase ".\vc40_nt\Release\acceler.obj"\r
-       -@erase ".\vc40_nt\Release\regexpr.obj"\r
-       -@erase ".\vc40_nt\Release\selectmodule.obj"\r
-       -@erase ".\vc40_nt\Release\fileobject.obj"\r
-       -@erase ".\vc40_nt\Release\longobject.obj"\r
-       -@erase ".\vc40_nt\Release\tokenizer.obj"\r
-       -@erase ".\vc40_nt\Release\accessobject.obj"\r
-       -@erase ".\vc40_nt\Release\stropmodule.obj"\r
-       -@erase ".\vc40_nt\Release\socketmodule.obj"\r
-       -@erase ".\vc40_nt\Release\ceval.obj"\r
-       -@erase ".\vc40_nt\Release\thread.obj"\r
-       -@erase ".\vc40_nt\Release\graminit.obj"\r
-       -@erase ".\vc40_nt\Release\stringobject.obj"\r
-       -@erase ".\vc40_nt\Release\md5module.obj"\r
-       -@erase ".\vc40_nt\Release\traceback.obj"\r
-       -@erase ".\vc40_nt\Release\rangeobject.obj"\r
-       -@erase ".\vc40_nt\Release\main.obj"\r
-       -@erase ".\vc40_nt\Release\object.obj"\r
-       -@erase ".\vc40_nt\Release\pythonrun.obj"\r
-       -@erase ".\vc40_nt\Release\timemodule.obj"\r
-       -@erase ".\vc40_nt\Release\audioop.obj"\r
-       -@erase ".\vc40_nt\Release\mappingobject.obj"\r
-       -@erase ".\vc40_nt\Release\compile.obj"\r
-       -@erase ".\vc40_nt\Release\cobject.obj"\r
-       -@erase ".\vc40_nt\Release\posixmodule.obj"\r
-       -@erase ".\vc40_nt\Release\cgensupport.obj"\r
-       -@erase ".\vc40_nt\Release\threadmodule.obj"\r
-       -@erase ".\vc40_nt\Release\abstract.obj"\r
-       -@erase ".\vc40_nt\Release\frozen.obj"\r
-       -@erase ".\vc40_nt\Release\structmodule.obj"\r
-       -@erase ".\vc40_nt\Release\getopt.obj"\r
-       -@erase ".\vc40_nt\Release\getplatform.obj"\r
-       -@erase ".\vc40_nt\Release\modsupport.obj"\r
-       -@erase ".\vc40_nt\Release\listobject.obj"\r
-       -@erase ".\vc40_nt\Release\typeobject.obj"\r
-       -@erase ".\vc40_nt\Release\methodobject.obj"\r
-       -@erase ".\vc40_nt\Release\md5c.obj"\r
-       -@erase ".\vc40_nt\Release\rgbimgmodule.obj"\r
-       -@erase ".\vc40_nt\Release\yuvconvert.obj"\r
-       -@erase ".\vc40_nt\Release\getversion.obj"\r
-       -@erase ".\vc40_nt\Release\config.obj"\r
-       -@erase ".\vc40_nt\Release\signalmodule.obj"\r
-       -@erase ".\vc40_nt\Release\moduleobject.obj"\r
-       -@erase ".\vc40_nt\Release\mathmodule.obj"\r
-       -@erase ".\vc40_nt\Release\soundex.obj"\r
-       -@erase ".\vc40_nt\Release\node.obj"\r
-       -@erase ".\vc40_nt\Release\parsetok.obj"\r
-       -@erase ".\vc40_nt\Release\imageop.obj"\r
-       -@erase ".\vc40_nt\Release\getpath.obj"\r
-       -@erase ".\vc40_nt\Release\rotormodule.obj"\r
-       -@erase ".\vc40_nt\Release\tupleobject.obj"\r
-       -@erase ".\vc40_nt\Release\newmodule.obj"\r
-       -@erase ".\vc40_nt\Release\structmember.obj"\r
-       -@erase ".\vc40_nt\Release\intobject.obj"\r
-       -@erase ".\vc40_nt\Release\classobject.obj"\r
-       -@erase ".\vc40_nt\Release\marshal.obj"\r
-       -@erase ".\vc40_nt\Release\bltinmodule.obj"\r
-       -@erase ".\vc40_nt\Release\complexobject.obj"\r
-       -@erase ".\vc40_nt\Release\funcobject.obj"\r
-       -@erase ".\vc40_nt\Release\getargs.obj"\r
-       -@erase ".\vc40_nt\Release\getcompiler.obj"\r
-       -@erase ".\vc40_nt\Release\sliceobject.obj"\r
+       -@erase ".\vc40\python.exe"\r
+       -@erase ".\vc40\tmp\main_nt.obj"\r
 \r
 "$(OUTDIR)" :\r
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
 \r
+"$(INTDIR)" :\r
+    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"\r
+\r
 CPP=cl.exe\r
 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c\r
-CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\\r
"WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\\r
- /Fo"$(INTDIR)/" /\r
-CPP_OBJS=.\vc40_nt\Release/\r
+# ADD CPP /nologo /MT /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /YX /c\r
+CPP_PROJ=/nologo /MT /W3 /O2 /I "./PC" /I "./Include" /I "./Python" /D "WIN32"\\r
/D "_WINDOWS" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/python.pch" /YX /Fo"$(INTDIR)/"\\r
+ /c \r
+CPP_OBJS=.\vc40/tmp/\r
 CPP_SBRS=\r
 \r
 .c{$(CPP_OBJS)}.obj:\r
@@ -793,218 +345,60 @@ RSC=rc.exe
 BSC32=bscmake.exe\r
 # ADD BASE BSC32 /nologo\r
 # ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" \r
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/python.bsc" \r
 BSC32_SBRS=\r
 LINK32=link.exe\r
 # 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\r
-# 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"\r
+# 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\r
 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\\r
  advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\\r
- odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\\r
- /pdb:"$(OUTDIR)/pyth_nt.pdb" /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" \r
+ odbccp32.lib /nologo /subsystem:console /incremental:no\\r
+ /pdb:"$(OUTDIR)/python.pdb" /machine:I386 /out:"$(OUTDIR)/python.exe" \r
 LINK32_OBJS= \\r
-       ".\vc40_nt\Release\importdl.obj" \\r
-       ".\vc40_nt\Release\sysmodule.obj" \\r
-       ".\vc40_nt\Release\mystrtoul.obj" \\r
-       ".\vc40_nt\Release\myreadline.obj" \\r
-       ".\vc40_nt\Release\getcopyright.obj" \\r
-       ".\vc40_nt\Release\binascii.obj" \\r
-       ".\vc40_nt\Release\errnomodule.obj" \\r
-       ".\vc40_nt\Release\import.obj" \\r
-       ".\vc40_nt\Release\frameobject.obj" \\r
-       ".\vc40_nt\Release\regexmodule.obj" \\r
-       ".\vc40_nt\Release\environment.obj" \\r
-       ".\vc40_nt\Release\errors.obj" \\r
-       ".\vc40_nt\Release\floatobject.obj" \\r
-       ".\vc40_nt\Release\cmathmodule.obj" \\r
-       ".\vc40_nt\Release\grammar1.obj" \\r
-       ".\vc40_nt\Release\getmtime.obj" \\r
-       ".\vc40_nt\Release\operator.obj" \\r
-       ".\vc40_nt\Release\parser.obj" \\r
-       ".\vc40_nt\Release\arraymodule.obj" \\r
-       ".\vc40_nt\Release\acceler.obj" \\r
-       ".\vc40_nt\Release\regexpr.obj" \\r
-       ".\vc40_nt\Release\selectmodule.obj" \\r
-       ".\vc40_nt\Release\fileobject.obj" \\r
-       ".\vc40_nt\Release\longobject.obj" \\r
-       ".\vc40_nt\Release\tokenizer.obj" \\r
-       ".\vc40_nt\Release\accessobject.obj" \\r
-       ".\vc40_nt\Release\stropmodule.obj" \\r
-       ".\vc40_nt\Release\socketmodule.obj" \\r
-       ".\vc40_nt\Release\ceval.obj" \\r
-       ".\vc40_nt\Release\thread.obj" \\r
-       ".\vc40_nt\Release\graminit.obj" \\r
-       ".\vc40_nt\Release\stringobject.obj" \\r
-       ".\vc40_nt\Release\md5module.obj" \\r
-       ".\vc40_nt\Release\traceback.obj" \\r
-       ".\vc40_nt\Release\rangeobject.obj" \\r
-       ".\vc40_nt\Release\main.obj" \\r
-       ".\vc40_nt\Release\object.obj" \\r
-       ".\vc40_nt\Release\pythonrun.obj" \\r
-       ".\vc40_nt\Release\timemodule.obj" \\r
-       ".\vc40_nt\Release\audioop.obj" \\r
-       ".\vc40_nt\Release\mappingobject.obj" \\r
-       ".\vc40_nt\Release\compile.obj" \\r
-       ".\vc40_nt\Release\cobject.obj" \\r
-       ".\vc40_nt\Release\posixmodule.obj" \\r
-       ".\vc40_nt\Release\cgensupport.obj" \\r
-       ".\vc40_nt\Release\threadmodule.obj" \\r
-       ".\vc40_nt\Release\abstract.obj" \\r
-       ".\vc40_nt\Release\frozen.obj" \\r
-       ".\vc40_nt\Release\structmodule.obj" \\r
-       ".\vc40_nt\Release\getopt.obj" \\r
-       ".\vc40_nt\Release\getplatform.obj" \\r
-       ".\vc40_nt\Release\modsupport.obj" \\r
-       ".\vc40_nt\Release\listobject.obj" \\r
-       ".\vc40_nt\Release\typeobject.obj" \\r
-       ".\vc40_nt\Release\methodobject.obj" \\r
-       ".\vc40_nt\Release\md5c.obj" \\r
-       ".\vc40_nt\Release\rgbimgmodule.obj" \\r
-       ".\vc40_nt\Release\yuvconvert.obj" \\r
-       ".\vc40_nt\Release\getversion.obj" \\r
-       ".\vc40_nt\Release\config.obj" \\r
-       ".\vc40_nt\Release\signalmodule.obj" \\r
-       ".\vc40_nt\Release\moduleobject.obj" \\r
-       ".\vc40_nt\Release\mathmodule.obj" \\r
-       ".\vc40_nt\Release\soundex.obj" \\r
-       ".\vc40_nt\Release\node.obj" \\r
-       ".\vc40_nt\Release\parsetok.obj" \\r
-       ".\vc40_nt\Release\imageop.obj" \\r
-       ".\vc40_nt\Release\getpath.obj" \\r
-       ".\vc40_nt\Release\rotormodule.obj" \\r
-       ".\vc40_nt\Release\tupleobject.obj" \\r
-       ".\vc40_nt\Release\newmodule.obj" \\r
-       ".\vc40_nt\Release\structmember.obj" \\r
-       ".\vc40_nt\Release\intobject.obj" \\r
-       ".\vc40_nt\Release\classobject.obj" \\r
-       ".\vc40_nt\Release\marshal.obj" \\r
-       ".\vc40_nt\Release\bltinmodule.obj" \\r
-       ".\vc40_nt\Release\complexobject.obj" \\r
-       ".\vc40_nt\Release\funcobject.obj" \\r
-       ".\vc40_nt\Release\getargs.obj" \\r
-       ".\vc40_nt\Release\getcompiler.obj" \\r
-       ".\vc40_nt\Release\sliceobject.obj"\r
-\r
-"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+       ".\vc40\tmp\main_nt.obj" \\r
+       ".\vc40\python14.lib"\r
+\r
+"$(OUTDIR)\python.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
     $(LINK32) @<<\r
   $(LINK32_FLAGS) $(LINK32_OBJS)\r
 <<\r
 \r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+!ELSEIF  "$(CFG)" == "_tkinter - Win32 Release"\r
 \r
 # PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "vc40_nt\Debug"\r
-# PROP BASE Intermediate_Dir "vc40_nt\Debug"\r
-# PROP BASE Target_Dir "vc40_nt"\r
+# PROP BASE Use_Debug_Libraries 0\r
+# PROP BASE Output_Dir "_tkinter\Release"\r
+# PROP BASE Intermediate_Dir "_tkinter\Release"\r
+# PROP BASE Target_Dir "_tkinter"\r
 # PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "vc40_nt\Debug"\r
-# PROP Intermediate_Dir "vc40_nt\Debug"\r
-# PROP Target_Dir "vc40_nt"\r
-OUTDIR=.\vc40_nt\Debug\r
-INTDIR=.\vc40_nt\Debug\r
+# PROP Use_Debug_Libraries 0\r
+# PROP Output_Dir "vc40"\r
+# PROP Intermediate_Dir "vc40/tmp"\r
+# PROP Target_Dir "_tkinter"\r
+OUTDIR=.\vc40\r
+INTDIR=.\vc40/tmp\r
 \r
-ALL : "$(OUTDIR)\pyth_nt.exe"\r
+ALL : "$(OUTDIR)\_tkinter.dll"\r
 \r
 CLEAN : \r
-       -@erase ".\vc40_nt\Debug\vc40.pdb"\r
-       -@erase ".\vc40_nt\Debug\vc40.idb"\r
-       -@erase ".\vc40_nt\Debug\pyth_nt.exe"\r
-       -@erase ".\vc40_nt\Debug\binascii.obj"\r
-       -@erase ".\vc40_nt\Debug\getcopyright.obj"\r
-       -@erase ".\vc40_nt\Debug\newmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\marshal.obj"\r
-       -@erase ".\vc40_nt\Debug\getplatform.obj"\r
-       -@erase ".\vc40_nt\Debug\intobject.obj"\r
-       -@erase ".\vc40_nt\Debug\myreadline.obj"\r
-       -@erase ".\vc40_nt\Debug\compile.obj"\r
-       -@erase ".\vc40_nt\Debug\cobject.obj"\r
-       -@erase ".\vc40_nt\Debug\grammar1.obj"\r
-       -@erase ".\vc40_nt\Debug\abstract.obj"\r
-       -@erase ".\vc40_nt\Debug\threadmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\mystrtoul.obj"\r
-       -@erase ".\vc40_nt\Debug\mappingobject.obj"\r
-       -@erase ".\vc40_nt\Debug\methodobject.obj"\r
-       -@erase ".\vc40_nt\Debug\rotormodule.obj"\r
-       -@erase ".\vc40_nt\Debug\tupleobject.obj"\r
-       -@erase ".\vc40_nt\Debug\rgbimgmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\selectmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\typeobject.obj"\r
-       -@erase ".\vc40_nt\Debug\classobject.obj"\r
-       -@erase ".\vc40_nt\Debug\signalmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\accessobject.obj"\r
-       -@erase ".\vc40_nt\Debug\md5c.obj"\r
-       -@erase ".\vc40_nt\Debug\bltinmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\getversion.obj"\r
-       -@erase ".\vc40_nt\Debug\getcompiler.obj"\r
-       -@erase ".\vc40_nt\Debug\longobject.obj"\r
-       -@erase ".\vc40_nt\Debug\graminit.obj"\r
-       -@erase ".\vc40_nt\Debug\imageop.obj"\r
-       -@erase ".\vc40_nt\Debug\regexpr.obj"\r
-       -@erase ".\vc40_nt\Debug\errnomodule.obj"\r
-       -@erase ".\vc40_nt\Debug\parser.obj"\r
-       -@erase ".\vc40_nt\Debug\getopt.obj"\r
-       -@erase ".\vc40_nt\Debug\frameobject.obj"\r
-       -@erase ".\vc40_nt\Debug\regexmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\environment.obj"\r
-       -@erase ".\vc40_nt\Debug\floatobject.obj"\r
-       -@erase ".\vc40_nt\Debug\tokenizer.obj"\r
-       -@erase ".\vc40_nt\Debug\posixmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\cmathmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\getargs.obj"\r
-       -@erase ".\vc40_nt\Debug\main.obj"\r
-       -@erase ".\vc40_nt\Debug\config.obj"\r
-       -@erase ".\vc40_nt\Debug\timemodule.obj"\r
-       -@erase ".\vc40_nt\Debug\arraymodule.obj"\r
-       -@erase ".\vc40_nt\Debug\funcobject.obj"\r
-       -@erase ".\vc40_nt\Debug\md5module.obj"\r
-       -@erase ".\vc40_nt\Debug\traceback.obj"\r
-       -@erase ".\vc40_nt\Debug\sysmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\structmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\complexobject.obj"\r
-       -@erase ".\vc40_nt\Debug\pythonrun.obj"\r
-       -@erase ".\vc40_nt\Debug\audioop.obj"\r
-       -@erase ".\vc40_nt\Debug\thread.obj"\r
-       -@erase ".\vc40_nt\Debug\getmtime.obj"\r
-       -@erase ".\vc40_nt\Debug\operator.obj"\r
-       -@erase ".\vc40_nt\Debug\object.obj"\r
-       -@erase ".\vc40_nt\Debug\modsupport.obj"\r
-       -@erase ".\vc40_nt\Debug\listobject.obj"\r
-       -@erase ".\vc40_nt\Debug\moduleobject.obj"\r
-       -@erase ".\vc40_nt\Debug\stropmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\parsetok.obj"\r
-       -@erase ".\vc40_nt\Debug\yuvconvert.obj"\r
-       -@erase ".\vc40_nt\Debug\acceler.obj"\r
-       -@erase ".\vc40_nt\Debug\ceval.obj"\r
-       -@erase ".\vc40_nt\Debug\mathmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\rangeobject.obj"\r
-       -@erase ".\vc40_nt\Debug\structmember.obj"\r
-       -@erase ".\vc40_nt\Debug\import.obj"\r
-       -@erase ".\vc40_nt\Debug\frozen.obj"\r
-       -@erase ".\vc40_nt\Debug\soundex.obj"\r
-       -@erase ".\vc40_nt\Debug\errors.obj"\r
-       -@erase ".\vc40_nt\Debug\node.obj"\r
-       -@erase ".\vc40_nt\Debug\socketmodule.obj"\r
-       -@erase ".\vc40_nt\Debug\fileobject.obj"\r
-       -@erase ".\vc40_nt\Debug\importdl.obj"\r
-       -@erase ".\vc40_nt\Debug\getpath.obj"\r
-       -@erase ".\vc40_nt\Debug\stringobject.obj"\r
-       -@erase ".\vc40_nt\Debug\cgensupport.obj"\r
-       -@erase ".\vc40_nt\Debug\sliceobject.obj"\r
-       -@erase ".\vc40_nt\Debug\pyth_nt.ilk"\r
-       -@erase ".\vc40_nt\Debug\pyth_nt.pdb"\r
+       -@erase ".\vc40\_tkinter.dll"\r
+       -@erase ".\vc40\tmp\_tkinter.obj"\r
+       -@erase ".\vc40\_tkinter.lib"\r
+       -@erase ".\vc40\_tkinter.exp"\r
 \r
 "$(OUTDIR)" :\r
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"\r
 \r
+"$(INTDIR)" :\r
+    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"\r
+\r
 CPP=cl.exe\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c\r
-# 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\r
-CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\\r
- /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\\r
- /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c \r
-CPP_OBJS=.\vc40_nt\Debug/\r
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c\r
+# 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\r
+CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /I "C:\tcl\include"\\r
+ /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "HAVE_CONFIG_H"\\r
+ /Fp"$(INTDIR)/_tkinter.pch" /YX /Fo"$(INTDIR)/" /c \r
+CPP_OBJS=.\vc40/tmp/\r
 CPP_SBRS=\r
 \r
 .c{$(CPP_OBJS)}.obj:\r
@@ -1025,105 +419,35 @@ CPP_SBRS=
 .cxx{$(CPP_SBRS)}.sbr:\r
    $(CPP) $(CPP_PROJ) $<  \r
 \r
+MTL=mktyplib.exe\r
+# ADD BASE MTL /nologo /D "NDEBUG" /win32\r
+# ADD MTL /nologo /D "NDEBUG" /win32\r
+MTL_PROJ=/nologo /D "NDEBUG" /win32 \r
 RSC=rc.exe\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
+# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
+# ADD RSC /l 0x409 /d "NDEBUG"\r
 BSC32=bscmake.exe\r
 # ADD BASE BSC32 /nologo\r
 # ADD BSC32 /nologo\r
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" \r
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/_tkinter.bsc" \r
 BSC32_SBRS=\r
 LINK32=link.exe\r
-# 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\r
-# 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"\r
+# 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\r
+# 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\r
 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\\r
  advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\\r
- odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:yes\\r
- /pdb:"$(OUTDIR)/pyth_nt.pdb" /debug /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" \r
+ odbccp32.lib /nologo /subsystem:windows /dll /incremental:no\\r
+ /pdb:"$(OUTDIR)/_tkinter.pdb" /machine:I386 /def:".\PC\_tkinter.def"\\r
+ /out:"$(OUTDIR)/_tkinter.dll" /implib:"$(OUTDIR)/_tkinter.lib" \r
+DEF_FILE= \\r
+       ".\PC\_tkinter.def"\r
 LINK32_OBJS= \\r
-       ".\vc40_nt\Debug\binascii.obj" \\r
-       ".\vc40_nt\Debug\getcopyright.obj" \\r
-       ".\vc40_nt\Debug\newmodule.obj" \\r
-       ".\vc40_nt\Debug\marshal.obj" \\r
-       ".\vc40_nt\Debug\getplatform.obj" \\r
-       ".\vc40_nt\Debug\intobject.obj" \\r
-       ".\vc40_nt\Debug\myreadline.obj" \\r
-       ".\vc40_nt\Debug\compile.obj" \\r
-       ".\vc40_nt\Debug\cobject.obj" \\r
-       ".\vc40_nt\Debug\grammar1.obj" \\r
-       ".\vc40_nt\Debug\abstract.obj" \\r
-       ".\vc40_nt\Debug\threadmodule.obj" \\r
-       ".\vc40_nt\Debug\mystrtoul.obj" \\r
-       ".\vc40_nt\Debug\mappingobject.obj" \\r
-       ".\vc40_nt\Debug\methodobject.obj" \\r
-       ".\vc40_nt\Debug\rotormodule.obj" \\r
-       ".\vc40_nt\Debug\tupleobject.obj" \\r
-       ".\vc40_nt\Debug\rgbimgmodule.obj" \\r
-       ".\vc40_nt\Debug\selectmodule.obj" \\r
-       ".\vc40_nt\Debug\typeobject.obj" \\r
-       ".\vc40_nt\Debug\classobject.obj" \\r
-       ".\vc40_nt\Debug\signalmodule.obj" \\r
-       ".\vc40_nt\Debug\accessobject.obj" \\r
-       ".\vc40_nt\Debug\md5c.obj" \\r
-       ".\vc40_nt\Debug\bltinmodule.obj" \\r
-       ".\vc40_nt\Debug\getversion.obj" \\r
-       ".\vc40_nt\Debug\getcompiler.obj" \\r
-       ".\vc40_nt\Debug\longobject.obj" \\r
-       ".\vc40_nt\Debug\graminit.obj" \\r
-       ".\vc40_nt\Debug\imageop.obj" \\r
-       ".\vc40_nt\Debug\regexpr.obj" \\r
-       ".\vc40_nt\Debug\errnomodule.obj" \\r
-       ".\vc40_nt\Debug\parser.obj" \\r
-       ".\vc40_nt\Debug\getopt.obj" \\r
-       ".\vc40_nt\Debug\frameobject.obj" \\r
-       ".\vc40_nt\Debug\regexmodule.obj" \\r
-       ".\vc40_nt\Debug\environment.obj" \\r
-       ".\vc40_nt\Debug\floatobject.obj" \\r
-       ".\vc40_nt\Debug\tokenizer.obj" \\r
-       ".\vc40_nt\Debug\posixmodule.obj" \\r
-       ".\vc40_nt\Debug\cmathmodule.obj" \\r
-       ".\vc40_nt\Debug\getargs.obj" \\r
-       ".\vc40_nt\Debug\main.obj" \\r
-       ".\vc40_nt\Debug\config.obj" \\r
-       ".\vc40_nt\Debug\timemodule.obj" \\r
-       ".\vc40_nt\Debug\arraymodule.obj" \\r
-       ".\vc40_nt\Debug\funcobject.obj" \\r
-       ".\vc40_nt\Debug\md5module.obj" \\r
-       ".\vc40_nt\Debug\traceback.obj" \\r
-       ".\vc40_nt\Debug\sysmodule.obj" \\r
-       ".\vc40_nt\Debug\structmodule.obj" \\r
-       ".\vc40_nt\Debug\complexobject.obj" \\r
-       ".\vc40_nt\Debug\pythonrun.obj" \\r
-       ".\vc40_nt\Debug\audioop.obj" \\r
-       ".\vc40_nt\Debug\thread.obj" \\r
-       ".\vc40_nt\Debug\getmtime.obj" \\r
-       ".\vc40_nt\Debug\operator.obj" \\r
-       ".\vc40_nt\Debug\object.obj" \\r
-       ".\vc40_nt\Debug\modsupport.obj" \\r
-       ".\vc40_nt\Debug\listobject.obj" \\r
-       ".\vc40_nt\Debug\moduleobject.obj" \\r
-       ".\vc40_nt\Debug\stropmodule.obj" \\r
-       ".\vc40_nt\Debug\parsetok.obj" \\r
-       ".\vc40_nt\Debug\yuvconvert.obj" \\r
-       ".\vc40_nt\Debug\acceler.obj" \\r
-       ".\vc40_nt\Debug\ceval.obj" \\r
-       ".\vc40_nt\Debug\mathmodule.obj" \\r
-       ".\vc40_nt\Debug\rangeobject.obj" \\r
-       ".\vc40_nt\Debug\structmember.obj" \\r
-       ".\vc40_nt\Debug\import.obj" \\r
-       ".\vc40_nt\Debug\frozen.obj" \\r
-       ".\vc40_nt\Debug\soundex.obj" \\r
-       ".\vc40_nt\Debug\errors.obj" \\r
-       ".\vc40_nt\Debug\node.obj" \\r
-       ".\vc40_nt\Debug\socketmodule.obj" \\r
-       ".\vc40_nt\Debug\fileobject.obj" \\r
-       ".\vc40_nt\Debug\importdl.obj" \\r
-       ".\vc40_nt\Debug\getpath.obj" \\r
-       ".\vc40_nt\Debug\stringobject.obj" \\r
-       ".\vc40_nt\Debug\cgensupport.obj" \\r
-       ".\vc40_nt\Debug\sliceobject.obj"\r
-\r
-"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+       ".\vc40\tmp\_tkinter.obj" \\r
+       "..\..\..\..\TCL\bin\tcl75.lib" \\r
+       "..\..\..\..\TCL\bin\tk41.lib" \\r
+       ".\vc40\python14.lib"\r
+\r
+"$(OUTDIR)\_tkinter.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
     $(LINK32) @<<\r
   $(LINK32_FLAGS) $(LINK32_OBJS)\r
 <<\r
@@ -1133,28 +457,7 @@ LINK32_OBJS= \
 ################################################################################\r
 # Begin Target\r
 \r
-# Name "vc40 - Win32 Release"\r
-# Name "vc40 - Win32 Debug"\r
-\r
-!IF  "$(CFG)" == "vc40 - Win32 Release"\r
-\r
-!ELSEIF  "$(CFG)" == "vc40 - Win32 Debug"\r
-\r
-!ENDIF \r
-\r
-# End Target\r
-################################################################################\r
-# Begin Target\r
-\r
-# Name "vc40_dll - Win32 Release"\r
-# Name "vc40_dll - Win32 Debug"\r
-\r
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
-\r
-!ENDIF \r
-\r
+# Name "python14 - Win32 Release"\r
 ################################################################################\r
 # Begin Source File\r
 \r
@@ -1164,7 +467,7 @@ DEP_CPP_LONGO=\
        ".\./Include\longintrepr.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1186,18 +489,19 @@ DEP_CPP_LONGO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
@@ -1215,7 +519,7 @@ DEP_CPP_LISTO=\
        ".\./Include\ceval.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1237,16 +541,17 @@ DEP_CPP_LISTO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
@@ -1262,7 +567,7 @@ DEP_CPP_INTOB=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1284,17 +589,18 @@ DEP_CPP_INTOB=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
@@ -1309,11 +615,11 @@ SOURCE=.\Python\importdl.c
 DEP_CPP_IMPOR=\\r
        ".\./Include\allobjects.h"\\r
        ".\./Include\osdefs.h"\\r
-       ".\Python\importdl.h"\\r
+       ".\./Python\importdl.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        {$(INCLUDE)}"\sys\STAT.H"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1335,18 +641,19 @@ DEP_CPP_IMPOR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 NODEP_CPP_IMPOR=\\r
        ".\Python\dl.h"\\r
@@ -1367,7 +674,7 @@ DEP_CPP_IMAGE=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1389,17 +696,18 @@ DEP_CPP_IMAGE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
@@ -1411,34 +719,13 @@ DEP_CPP_IMAGE=\
 # Begin Source File\r
 \r
 SOURCE=.\Parser\grammar1.c\r
-\r
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
-\r
-DEP_CPP_GRAMM=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
-\r
 DEP_CPP_GRAMM=\\r
        ".\./Include\pgenheaders.h"\\r
        ".\./Include\grammar.h"\\r
        ".\./Include\token.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\Include\bitset.h"\\r
@@ -1448,39 +735,17 @@ DEP_CPP_GRAMM=\
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
 SOURCE=.\Python\graminit.c\r
-\r
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
-\r
-DEP_CPP_GRAMI=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
-\r
 DEP_CPP_GRAMI=\\r
        ".\./Include\pgenheaders.h"\\r
        ".\./Include\grammar.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\Include\bitset.h"\\r
@@ -1490,8 +755,6 @@ DEP_CPP_GRAMI=\
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
@@ -1502,7 +765,7 @@ DEP_CPP_GETVE=\
        ".\./Include\patchlevel.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1524,13 +787,13 @@ DEP_CPP_GETVE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
@@ -1551,7 +814,7 @@ DEP_CPP_GETPL=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1573,74 +836,25 @@ DEP_CPP_GETPL=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\getpath.c\r
-DEP_CPP_GETPA=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\osdefs.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
@@ -1666,7 +880,7 @@ DEP_CPP_GETCO=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1688,18 +902,19 @@ DEP_CPP_GETCO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"\r
@@ -1715,7 +930,7 @@ DEP_CPP_GETCOM=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1737,18 +952,19 @@ DEP_CPP_GETCOM=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"\r
@@ -1763,7 +979,7 @@ SOURCE=.\Python\getargs.c
 DEP_CPP_GETAR=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1785,18 +1001,19 @@ DEP_CPP_GETAR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"\r
@@ -1813,7 +1030,7 @@ DEP_CPP_FUNCO=\
        ".\./Include\compile.h"\\r
        ".\./Include\structmember.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1835,18 +1052,19 @@ DEP_CPP_FUNCO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
@@ -1862,7 +1080,7 @@ DEP_CPP_FROZE=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1884,18 +1102,19 @@ DEP_CPP_FROZE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"\r
@@ -1915,7 +1134,7 @@ DEP_CPP_FRAME=\
        ".\./Include\structmember.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1937,17 +1156,18 @@ DEP_CPP_FRAME=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"\r
@@ -1964,7 +1184,7 @@ DEP_CPP_FLOAT=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -1986,17 +1206,18 @@ DEP_CPP_FLOAT=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"\r
@@ -2014,7 +1235,7 @@ DEP_CPP_FILEO=\
        ".\./Include\structmember.h"\\r
        ".\./Include\ceval.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2036,16 +1257,17 @@ DEP_CPP_FILEO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
@@ -2061,7 +1283,7 @@ DEP_CPP_ERROR=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\traceback.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2082,18 +1304,19 @@ DEP_CPP_ERROR=\
        ".\Include\fileobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\r
@@ -2104,11 +1327,12 @@ DEP_CPP_ERROR=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\environment.c\r
-DEP_CPP_ENVIR=\\r
+SOURCE=.\PC\config.c\r
+DEP_CPP_CONFI=\\r
+       ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2130,67 +1354,19 @@ DEP_CPP_ENVIR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\PC\config.c\r
-DEP_CPP_CONFI=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\r
@@ -2207,7 +1383,7 @@ DEP_CPP_COMPL=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2229,17 +1405,18 @@ DEP_CPP_COMPL=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"\r
@@ -2260,7 +1437,7 @@ DEP_CPP_COMPI=\
        ".\./Include\opcode.h"\\r
        ".\./Include\structmember.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2282,18 +1459,19 @@ DEP_CPP_COMPI=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"\r
@@ -2309,7 +1487,7 @@ DEP_CPP_COBJE=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2331,18 +1509,19 @@ DEP_CPP_COBJE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"\r
@@ -2359,7 +1538,7 @@ DEP_CPP_CMATH=\
        ".\./Include\complexobject.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2380,18 +1559,19 @@ DEP_CPP_CMATH=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
@@ -2407,7 +1587,7 @@ DEP_CPP_CLASS=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\structmember.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2429,18 +1609,19 @@ DEP_CPP_CLASS=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
@@ -2456,7 +1637,7 @@ DEP_CPP_CGENS=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\cgensupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2478,18 +1659,19 @@ DEP_CPP_CGENS=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"\r
@@ -2510,7 +1692,7 @@ DEP_CPP_CEVAL=\
        ".\./Include\graminit.h"\\r
        ".\./Include\thread.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2532,17 +1714,18 @@ DEP_CPP_CEVAL=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
@@ -2562,8 +1745,9 @@ DEP_CPP_BLTIN=\
        ".\./Include\import.h"\\r
        ".\./Include\compile.h"\\r
        ".\./Include\eval.h"\\r
+       ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2585,16 +1769,17 @@ DEP_CPP_BLTIN=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"\r
@@ -2610,7 +1795,7 @@ DEP_CPP_BINAS=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2632,18 +1817,19 @@ DEP_CPP_BINAS=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"\r
@@ -2660,7 +1846,7 @@ DEP_CPP_AUDIO=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2682,17 +1868,18 @@ DEP_CPP_AUDIO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"\r
@@ -2710,7 +1897,7 @@ DEP_CPP_ARRAY=\
        ".\./Include\ceval.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2732,16 +1919,17 @@ DEP_CPP_ARRAY=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"\r
@@ -2759,7 +1947,7 @@ DEP_CPP_ACCES=\
        ".\./Include\structmember.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2781,16 +1969,17 @@ DEP_CPP_ACCES=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"\r
@@ -2809,8 +1998,8 @@ DEP_CPP_ACCEL=\
        ".\./Include\token.h"\\r
        ".\Parser\parser.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\Include\bitset.h"\\r
@@ -2829,7 +2018,7 @@ DEP_CPP_ABSTR=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2851,18 +2040,19 @@ DEP_CPP_ABSTR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"\r
@@ -2890,7 +2080,7 @@ SOURCE=.\Objects\typeobject.c
 DEP_CPP_TYPEO=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2912,18 +2102,19 @@ DEP_CPP_TYPEO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"\r
@@ -2938,7 +2129,7 @@ SOURCE=.\Objects\tupleobject.c
 DEP_CPP_TUPLE=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -2960,18 +2151,19 @@ DEP_CPP_TUPLE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"\r
@@ -2992,7 +2184,7 @@ DEP_CPP_TRACE=\
        ".\./Include\structmember.h"\\r
        ".\./Include\osdefs.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3013,17 +2205,18 @@ DEP_CPP_TRACE=\
        ".\Include\fileobject.h"\\r
        ".\Include\cobject.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
@@ -3040,8 +2233,8 @@ DEP_CPP_TOKEN=\
        ".\Parser\tokenizer.h"\\r
        ".\./Include\errcode.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\token.h"\\r
@@ -3060,12 +2253,13 @@ DEP_CPP_TIMEM=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
+       ".\./Include\mymath.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
+       ".\./Include\myselect.h"\\r
+       ".\./Include\mytime.h"\\r
        {$(INCLUDE)}"\sys\TIMEB.H"\\r
-       {$(INCLUDE)}"\i86.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3087,20 +2281,17 @@ DEP_CPP_TIMEM=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_TIMEM=\\r
-       ".\Modules\myselect.h"\\r
-       ".\Modules\mytime.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
@@ -3116,7 +2307,7 @@ DEP_CPP_THREA=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\thread.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3138,17 +2329,18 @@ DEP_CPP_THREA=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
@@ -3169,8 +2361,11 @@ DEP_CPP_THREAD=\
        ".\Python\thread_pthread.h"\\r
        ".\Python\thread_cthread.h"\\r
        ".\Python\thread_nt.h"\\r
+       ".\Python\thread_foobar.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
+       \r
+NODEP_CPP_THREAD=\\r
+       "..\..\..\..\usr\include\thread.h"\\r
        \r
 \r
 "$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"\r
@@ -3186,7 +2381,7 @@ DEP_CPP_STRUC=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3208,17 +2403,18 @@ DEP_CPP_STRUC=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"\r
@@ -3234,7 +2430,7 @@ DEP_CPP_STRUCT=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\structmember.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3256,18 +2452,19 @@ DEP_CPP_STRUCT=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"\r
@@ -3283,7 +2480,7 @@ DEP_CPP_STROP=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3305,17 +2502,18 @@ DEP_CPP_STROP=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"\r
@@ -3330,7 +2528,7 @@ SOURCE=.\Objects\stringobject.c
 DEP_CPP_STRIN=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3352,18 +2550,19 @@ DEP_CPP_STRIN=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\r
@@ -3379,7 +2578,7 @@ DEP_CPP_SOUND=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3401,18 +2600,19 @@ DEP_CPP_SOUND=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"\r
@@ -3426,10 +2626,11 @@ DEP_CPP_SOUND=\
 SOURCE=.\Modules\signalmodule.c\r
 DEP_CPP_SIGNA=\\r
        ".\./Include\Python.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\thread.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3451,20 +2652,17 @@ DEP_CPP_SIGNA=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
-       \r
-NODEP_CPP_SIGNA=\\r
-       ".\Modules\intrcheck.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
@@ -3481,7 +2679,7 @@ DEP_CPP_ROTOR=\
        ".\./Include\mymath.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3503,18 +2701,19 @@ DEP_CPP_ROTOR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"\r
@@ -3529,9 +2728,8 @@ SOURCE=.\Modules\rgbimgmodule.c
 DEP_CPP_RGBIM=\\r
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3553,17 +2751,18 @@ DEP_CPP_RGBIM=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"\r
@@ -3576,11 +2775,12 @@ DEP_CPP_RGBIM=\
 \r
 SOURCE=.\Modules\regexpr.c\r
 DEP_CPP_REGEX=\\r
-       ".\Modules\regexpr.h"\\r
        ".\./PC\config.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\Modules\regexpr.h"\\r
+       ".\./Include\rename2.h"\\r
        \r
 NODEP_CPP_REGEX=\\r
-       ".\Modules\myproto.h"\\r
        ".\Modules\lisp.h"\\r
        ".\Modules\buffer.h"\\r
        ".\Modules\syntax.h"\\r
@@ -3600,7 +2800,7 @@ DEP_CPP_REGEXM=\
        ".\Modules\regexpr.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3622,18 +2822,19 @@ DEP_CPP_REGEXM=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"\r
@@ -3648,7 +2849,7 @@ SOURCE=.\Objects\rangeobject.c
 DEP_CPP_RANGE=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3670,18 +2871,19 @@ DEP_CPP_RANGE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"\r
@@ -3697,6 +2899,7 @@ DEP_CPP_PYTHO=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\grammar.h"\\r
        ".\./Include\node.h"\\r
+       ".\./Include\parsetok.h"\\r
        ".\./Include\graminit.h"\\r
        ".\./Include\errcode.h"\\r
        ".\./Include\sysmodule.h"\\r
@@ -3705,9 +2908,10 @@ DEP_CPP_PYTHO=\
        ".\./Include\eval.h"\\r
        ".\./Include\ceval.h"\\r
        ".\./Include\import.h"\\r
+       ".\./Include\marshal.h"\\r
        ".\./Include\thread.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3729,19 +2933,16 @@ DEP_CPP_PYTHO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
+       ".\./Include\patchlevel.h"\\r
        ".\Include\bitset.h"\\r
        \r
-NODEP_CPP_PYTHO=\\r
-       ".\Python\parsetok.h"\\r
-       ".\Python\marshal.h"\\r
-       \r
 \r
 "$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
@@ -3758,18 +2959,16 @@ DEP_CPP_PARSE=\
        ".\./Include\node.h"\\r
        ".\./Include\grammar.h"\\r
        ".\Parser\parser.h"\\r
+       ".\./Include\parsetok.h"\\r
        ".\./Include\errcode.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\token.h"\\r
        ".\Include\bitset.h"\\r
        \r
-NODEP_CPP_PARSE=\\r
-       ".\Parser\parsetok.h"\\r
-       \r
 \r
 "$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
@@ -3788,8 +2987,8 @@ DEP_CPP_PARSER=\
        ".\Parser\parser.h"\\r
        ".\./Include\errcode.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        ".\Include\bitset.h"\\r
@@ -3807,7 +3006,7 @@ SOURCE=.\Objects\object.c
 DEP_CPP_OBJEC=\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3829,18 +3028,19 @@ DEP_CPP_OBJEC=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"\r
@@ -3856,8 +3056,8 @@ DEP_CPP_NODE_=\
        ".\./Include\pgenheaders.h"\\r
        ".\./Include\node.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\Include\pydebug.h"\\r
        ".\./Include\rename2.h"\\r
        \r
@@ -3875,7 +3075,7 @@ DEP_CPP_NEWMO=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\compile.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3897,18 +3097,19 @@ DEP_CPP_NEWMO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"\r
@@ -3925,8 +3126,9 @@ DEP_CPP_MARSH=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\longintrepr.h"\\r
        ".\./Include\compile.h"\\r
+       ".\./Include\marshal.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -3948,20 +3150,18 @@ DEP_CPP_MARSH=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_MARSH=\\r
-       ".\Python\marshal.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
@@ -3989,11 +3189,10 @@ DEP_CPP_MYSTR=\
 SOURCE=.\Parser\myreadline.c\r
 DEP_CPP_MYREA=\\r
        ".\./PC\config.h"\\r
-       \r
-NODEP_CPP_MYREA=\\r
-       ".\Parser\myproto.h"\\r
-       ".\Parser\mymalloc.h"\\r
-       ".\Parser\intrcheck.h"\\r
+       ".\./Include\myproto.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
        \r
 \r
 "$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"\r
@@ -4009,7 +3208,7 @@ DEP_CPP_MODUL=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\ceval.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4031,17 +3230,18 @@ DEP_CPP_MODUL=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"\r
@@ -4057,7 +3257,7 @@ DEP_CPP_MODSU=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\import.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4079,17 +3279,18 @@ DEP_CPP_MODSU=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
@@ -4105,7 +3306,7 @@ DEP_CPP_METHO=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\token.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4127,18 +3328,19 @@ DEP_CPP_METHO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"\r
@@ -4155,7 +3357,7 @@ DEP_CPP_MD5MO=\
        ".\./Include\modsupport.h"\\r
        ".\Modules\md5.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4177,17 +3379,18 @@ DEP_CPP_MD5MO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"\r
@@ -4217,7 +3420,7 @@ DEP_CPP_MATHM=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4239,18 +3442,19 @@ DEP_CPP_MATHM=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"\r
@@ -4266,7 +3470,7 @@ DEP_CPP_MAPPI=\
        ".\./Include\allobjects.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4288,35 +3492,24 @@ DEP_CPP_MAPPI=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\PC\python.def\r
-\r
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
-\r
-!ENDIF \r
-\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
@@ -4325,9 +3518,10 @@ SOURCE=.\Modules\socketmodule.c
 DEP_CPP_SOCKE=\\r
        ".\./Include\Python.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
+       ".\./Include\mytime.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4349,21 +3543,19 @@ DEP_CPP_SOCKE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_SOCKE=\\r
-       ".\Modules\mytime.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
@@ -4380,8 +3572,9 @@ DEP_CPP_SELEC=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
+       ".\./Include\myselect.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4403,19 +3596,18 @@ DEP_CPP_SELEC=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_SELEC=\\r
-       ".\Modules\myselect.h"\\r
+       ".\./Include\patchlevel.h"\\r
+       ".\./Include\mytime.h"\\r
        \r
 \r
 "$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
@@ -4434,7 +3626,7 @@ DEP_CPP_SYSMO=\
        ".\./Include\modsupport.h"\\r
        ".\./Include\osdefs.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4456,15 +3648,16 @@ DEP_CPP_SYSMO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
@@ -4485,12 +3678,14 @@ DEP_CPP_IMPORT=\
        ".\./Include\errcode.h"\\r
        ".\./Include\sysmodule.h"\\r
        ".\./Include\bltinmodule.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\marshal.h"\\r
        ".\./Include\compile.h"\\r
        ".\./Include\eval.h"\\r
        ".\./Include\osdefs.h"\\r
-       ".\Python\importdl.h"\\r
+       ".\./Python\importdl.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4512,19 +3707,17 @@ DEP_CPP_IMPORT=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 NODEP_CPP_IMPORT=\\r
-       ".\Python\pythonrun.h"\\r
-       ".\Python\marshal.h"\\r
        ".\Python\macglue.h"\\r
        \r
 \r
@@ -4543,10 +3736,10 @@ DEP_CPP_POSIX=\
        ".\./Include\ceval.h"\\r
        {$(INCLUDE)}"\sys\TYPES.H"\\r
        {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
+       ".\./Include\mytime.h"\\r
        {$(INCLUDE)}"\sys\UTIME.H"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4568,19 +3761,17 @@ DEP_CPP_POSIX=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_POSIX=\\r
-       ".\Modules\mytime.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
@@ -4596,7 +3787,7 @@ DEP_CPP_OPERA=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4618,18 +3809,19 @@ DEP_CPP_OPERA=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"\r
@@ -4645,7 +3837,7 @@ DEP_CPP_ERRNO=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4667,18 +3859,19 @@ DEP_CPP_ERRNO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\r
@@ -4694,7 +3887,7 @@ DEP_CPP_SLICE=\
        ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4716,18 +3909,19 @@ DEP_CPP_SLICE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
 "$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
@@ -4735,29 +3929,15 @@ DEP_CPP_SLICE=\
 \r
 \r
 # End Source File\r
-# End Target\r
-################################################################################\r
-# Begin Target\r
-\r
-# Name "vc40_nt - Win32 Release"\r
-# Name "vc40_nt - Win32 Debug"\r
-\r
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
-\r
-!ENDIF \r
-\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\longobject.c\r
-DEP_CPP_LONGO=\\r
+SOURCE=.\Modules\main.c\r
+DEP_CPP_MAIN_=\\r
+       ".\./Include\Python.h"\\r
        ".\./Include\allobjects.h"\\r
-       ".\./Include\longintrepr.h"\\r
-       ".\./Include\mymath.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4779,21 +3959,22 @@ DEP_CPP_LONGO=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -4801,48 +3982,9 @@ DEP_CPP_LONGO=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\listobject.c\r
-DEP_CPP_LISTO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
+SOURCE=.\Python\getopt.c\r
 \r
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -4850,12 +3992,14 @@ DEP_CPP_LISTO=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\intobject.c\r
-DEP_CPP_INTOB=\\r
+SOURCE=.\PC\import_nt.c\r
+DEP_CPP_IMPORT_=\\r
        ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
+       ".\./Include\osdefs.h"\\r
+       ".\./Include\import.h"\\r
+       ".\./Python\importdl.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4877,20 +4021,21 @@ DEP_CPP_INTOB=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+"$(INTDIR)\import_nt.obj" : $(SOURCE) $(DEP_CPP_IMPORT_) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -4898,15 +4043,13 @@ DEP_CPP_INTOB=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\importdl.c\r
-DEP_CPP_IMPOR=\\r
-       ".\./Include\allobjects.h"\\r
+SOURCE=.\PC\getpath_nt.c\r
+DEP_CPP_GETPA=\\r
+       ".\./Include\Python.h"\\r
        ".\./Include\osdefs.h"\\r
-       ".\Python\importdl.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
+       ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4928,26 +4071,22 @@ DEP_CPP_IMPOR=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_IMPOR=\\r
-       ".\Python\dl.h"\\r
-       ".\Python\macdefs.h"\\r
-       ".\Python\macglue.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+"$(INTDIR)\getpath_nt.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -4955,12 +4094,11 @@ NODEP_CPP_IMPOR=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\imageop.c\r
-DEP_CPP_IMAGE=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
+SOURCE=.\PC\dl_nt.c\r
+DEP_CPP_DL_NT=\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -4982,20 +4120,22 @@ DEP_CPP_IMAGE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
        \r
 \r
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+"$(INTDIR)\dl_nt.obj" : $(SOURCE) $(DEP_CPP_DL_NT) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -5003,40 +4143,19 @@ DEP_CPP_IMAGE=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Parser\grammar1.c\r
-DEP_CPP_GRAMM=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
+SOURCE=.\PC\python_nt.def\r
 # End Source File\r
+# End Target\r
+################################################################################\r
+# Begin Target\r
+\r
+# Name "python - Win32 Release"\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\graminit.c\r
-DEP_CPP_GRAMI=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
+SOURCE=.\PC\main_nt.c\r
 \r
-"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
+"$(INTDIR)\main_nt.obj" : $(SOURCE) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -5044,13 +4163,24 @@ DEP_CPP_GRAMI=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getversion.c\r
-DEP_CPP_GETVE=\\r
+SOURCE=.\vc40\python14.lib\r
+# End Source File\r
+# End Target\r
+################################################################################\r
+# Begin Target\r
+\r
+# Name "_tkinter - Win32 Release"\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\_tkinter.c\r
+DEP_CPP__TKIN=\\r
        ".\./Include\Python.h"\\r
-       ".\./Include\patchlevel.h"\\r
+       "\tcl\include\tcl.h"\\r
+       "\tcl\include\tk.h"\\r
        ".\./Include\allobjects.h"\\r
        ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
+       ".\./Include\myproto.h"\\r
        ".\Include\object.h"\\r
        ".\Include\objimpl.h"\\r
        ".\Include\pydebug.h"\\r
@@ -5072,21 +4202,25 @@ DEP_CPP_GETVE=\
        ".\Include\cobject.h"\\r
        ".\./Include\traceback.h"\\r
        ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
+       ".\Include\pyerrors.h"\\r
+       ".\./Include\mymalloc.h"\\r
        ".\./Include\modsupport.h"\\r
        ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
+       ".\./Include\pythonrun.h"\\r
        ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
+       ".\./Include\intrcheck.h"\\r
        ".\./Include\import.h"\\r
        ".\./Include\bltinmodule.h"\\r
        ".\Include\abstract.h"\\r
        ".\./Include\rename2.h"\\r
        ".\./Include\thread.h"\\r
+       ".\./Include\patchlevel.h"\\r
+       "\tcl\include\X11/Xlib.h"\\r
+       "\tcl\include\X11/X.h"\\r
+       "\tcl\include\X11/Xfuncproto.h"\\r
        \r
 \r
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+"$(INTDIR)\_tkinter.obj" : $(SOURCE) $(DEP_CPP__TKIN) "$(INTDIR)"\r
    $(CPP) $(CPP_PROJ) $(SOURCE)\r
 \r
 \r
@@ -5094,3366 +4228,22 @@ DEP_CPP_GETVE=\
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Python\getplatform.c\r
-DEP_CPP_GETPL=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\getpath.c\r
-DEP_CPP_GETPA=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\osdefs.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getmtime.c\r
-DEP_CPP_GETMT=\\r
-       ".\./PC\config.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getcopyright.c\r
-DEP_CPP_GETCO=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getcompiler.c\r
-DEP_CPP_GETCOM=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getargs.c\r
-DEP_CPP_GETAR=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\funcobject.c\r
-DEP_CPP_FUNCO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\frozen.c\r
-DEP_CPP_FROZE=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\frameobject.c\r
-DEP_CPP_FRAME=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\frameobject.h"\\r
-       ".\./Include\opcode.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\floatobject.c\r
-DEP_CPP_FLOAT=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\fileobject.c\r
-DEP_CPP_FILEO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\errors.c\r
-DEP_CPP_ERROR=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\environment.c\r
-DEP_CPP_ENVIR=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\PC\config.c\r
-DEP_CPP_CONFI=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\complexobject.c\r
-DEP_CPP_COMPL=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\compile.c\r
-DEP_CPP_COMPI=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./Include\graminit.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\opcode.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\cobject.c\r
-DEP_CPP_COBJE=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\cmathmodule.c\r
-DEP_CPP_CMATH=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\classobject.c\r
-DEP_CPP_CLASS=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\cgensupport.c\r
-DEP_CPP_CGENS=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\cgensupport.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\ceval.c\r
-DEP_CPP_CEVAL=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\frameobject.h"\\r
-       ".\./Include\eval.h"\\r
-       ".\./Include\opcode.h"\\r
-       ".\./Include\graminit.h"\\r
-       ".\./Include\thread.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\bltinmodule.c\r
-DEP_CPP_BLTIN=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\graminit.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\eval.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\binascii.c\r
-DEP_CPP_BINAS=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\audioop.c\r
-DEP_CPP_AUDIO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\arraymodule.c\r
-DEP_CPP_ARRAY=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\accessobject.c\r
-DEP_CPP_ACCES=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\acceler.c\r
-\r
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
-\r
-DEP_CPP_ACCEL=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\token.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
-\r
-DEP_CPP_ACCEL=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\token.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\Include\bitset.h"\\r
-       \r
-\r
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\abstract.c\r
-DEP_CPP_ABSTR=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\yuvconvert.c\r
-DEP_CPP_YUVCO=\\r
-       ".\Modules\yuv.h"\\r
-       \r
-\r
-"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\typeobject.c\r
-DEP_CPP_TYPEO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\tupleobject.c\r
-DEP_CPP_TUPLE=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\traceback.c\r
-DEP_CPP_TRACE=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\frameobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./Include\osdefs.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\tokenizer.c\r
-\r
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
-\r
-DEP_CPP_TOKEN=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\Parser\tokenizer.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
-\r
-DEP_CPP_TOKEN=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\Parser\tokenizer.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\token.h"\\r
-       \r
-\r
-"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\timemodule.c\r
-DEP_CPP_TIMEM=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
-       {$(INCLUDE)}"\sys\TIMEB.H"\\r
-       {$(INCLUDE)}"\i86.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_TIMEM=\\r
-       ".\Modules\myselect.h"\\r
-       ".\Modules\mytime.h"\\r
-       \r
-\r
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\threadmodule.c\r
-DEP_CPP_THREA=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\thread.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\thread.c\r
-DEP_CPP_THREAD=\\r
-       ".\./PC\config.h"\\r
-       ".\./Include\thread.h"\\r
-       ".\Python\thread_sgi.h"\\r
-       ".\Python\thread_solaris.h"\\r
-       ".\Python\thread_lwp.h"\\r
-       ".\Python\thread_pthread.h"\\r
-       ".\Python\thread_cthread.h"\\r
-       ".\Python\thread_nt.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
-       \r
-\r
-"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\structmodule.c\r
-DEP_CPP_STRUC=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\structmember.c\r
-DEP_CPP_STRUCT=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\structmember.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\stropmodule.c\r
-DEP_CPP_STROP=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\stringobject.c\r
-DEP_CPP_STRIN=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\soundex.c\r
-DEP_CPP_SOUND=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\signalmodule.c\r
-DEP_CPP_SIGNA=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\thread.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-NODEP_CPP_SIGNA=\\r
-       ".\Modules\intrcheck.h"\\r
-       \r
-\r
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\rotormodule.c\r
-DEP_CPP_ROTOR=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\rgbimgmodule.c\r
-DEP_CPP_RGBIM=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\regexpr.c\r
-DEP_CPP_REGEX=\\r
-       ".\Modules\regexpr.h"\\r
-       ".\./PC\config.h"\\r
-       \r
-NODEP_CPP_REGEX=\\r
-       ".\Modules\myproto.h"\\r
-       ".\Modules\lisp.h"\\r
-       ".\Modules\buffer.h"\\r
-       ".\Modules\syntax.h"\\r
-       \r
-\r
-"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\regexmodule.c\r
-DEP_CPP_REGEXM=\\r
-       ".\./Include\Python.h"\\r
-       ".\Modules\regexpr.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\rangeobject.c\r
-DEP_CPP_RANGE=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\pythonrun.c\r
-DEP_CPP_PYTHO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\graminit.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\eval.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\thread.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\Include\bitset.h"\\r
-       \r
-NODEP_CPP_PYTHO=\\r
-       ".\Python\parsetok.h"\\r
-       ".\Python\marshal.h"\\r
-       \r
-\r
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\parsetok.c\r
-DEP_CPP_PARSE=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\Parser\tokenizer.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\token.h"\\r
-       ".\Include\bitset.h"\\r
-       \r
-NODEP_CPP_PARSE=\\r
-       ".\Parser\parsetok.h"\\r
-       \r
-\r
-"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\parser.c\r
-\r
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
-\r
-DEP_CPP_PARSER=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\node.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\bitset.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
-\r
-DEP_CPP_PARSER=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./Include\grammar.h"\\r
-       ".\./Include\node.h"\\r
-       ".\Parser\parser.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\Include\bitset.h"\\r
-       \r
-\r
-"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\object.c\r
-DEP_CPP_OBJEC=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\node.c\r
-DEP_CPP_NODE_=\\r
-       ".\./Include\pgenheaders.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\newmodule.c\r
-DEP_CPP_NEWMO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\mystrtoul.c\r
-DEP_CPP_MYSTR=\\r
-       ".\./PC\config.h"\\r
-       ".\./Include\rename2.h"\\r
-       \r
-\r
-"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Parser\myreadline.c\r
-DEP_CPP_MYREA=\\r
-       ".\./PC\config.h"\\r
-       \r
-NODEP_CPP_MYREA=\\r
-       ".\Parser\myproto.h"\\r
-       ".\Parser\mymalloc.h"\\r
-       ".\Parser\intrcheck.h"\\r
-       \r
-\r
-"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\moduleobject.c\r
-DEP_CPP_MODUL=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\modsupport.c\r
-DEP_CPP_MODSU=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\methodobject.c\r
-DEP_CPP_METHO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\md5module.c\r
-DEP_CPP_MD5MO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\Modules\md5.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\md5c.c\r
-DEP_CPP_MD5C_=\\r
-       ".\./PC\config.h"\\r
-       ".\Modules\md5.h"\\r
-       \r
-\r
-"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\mathmodule.c\r
-DEP_CPP_MATHM=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\mymath.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\marshal.c\r
-DEP_CPP_MARSH=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\longintrepr.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_MARSH=\\r
-       ".\Python\marshal.h"\\r
-       \r
-\r
-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Objects\mappingobject.c\r
-DEP_CPP_MAPPI=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\main.c\r
-DEP_CPP_MAIN_=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\getopt.c\r
-\r
-"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\sysmodule.c\r
-DEP_CPP_SYSMO=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\osdefs.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\socketmodule.c\r
-DEP_CPP_SOCKE=\\r
-       ".\./Include\Python.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_SOCKE=\\r
-       ".\Modules\mytime.h"\\r
-       \r
-\r
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\selectmodule.c\r
-DEP_CPP_SELEC=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_SELEC=\\r
-       ".\Modules\myselect.h"\\r
-       \r
-\r
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Modules\posixmodule.c\r
-DEP_CPP_POSIX=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       {$(INCLUDE)}"\sys\TYPES.H"\\r
-       {$(INCLUDE)}"\sys\STAT.H"\\r
-       {$(INCLUDE)}"\unistd.h"\\r
-       {$(INCLUDE)}"\sys\UTIME.H"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_POSIX=\\r
-       ".\Modules\mytime.h"\\r
-       \r
-\r
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-# End Source File\r
-################################################################################\r
-# Begin Source File\r
-\r
-SOURCE=.\Python\import.c\r
-DEP_CPP_IMPORT=\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./Include\node.h"\\r
-       ".\./Include\token.h"\\r
-       ".\./Include\graminit.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\errcode.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\./Include\compile.h"\\r
-       ".\./Include\eval.h"\\r
-       ".\./Include\osdefs.h"\\r
-       ".\Python\importdl.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-NODEP_CPP_IMPORT=\\r
-       ".\Python\pythonrun.h"\\r
-       ".\Python\marshal.h"\\r
-       ".\Python\macglue.h"\\r
-       \r
-\r
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
+SOURCE=\TCL\bin\tk41.lib\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\operator.c\r
-DEP_CPP_OPERA=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\operator.obj" : $(SOURCE) $(DEP_CPP_OPERA) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
+SOURCE=\TCL\bin\tcl75.lib\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Modules\errnomodule.c\r
-DEP_CPP_ERRNO=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\errnomodule.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
+SOURCE=.\PC\_tkinter.def\r
 # End Source File\r
 ################################################################################\r
 # Begin Source File\r
 \r
-SOURCE=.\Objects\sliceobject.c\r
-\r
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
-\r
-DEP_CPP_SLICE=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
-\r
-DEP_CPP_SLICE=\\r
-       ".\./Include\Python.h"\\r
-       ".\./Include\allobjects.h"\\r
-       ".\./PC\config.h"\\r
-       ".\Include\myproto.h"\\r
-       ".\Include\object.h"\\r
-       ".\Include\objimpl.h"\\r
-       ".\Include\pydebug.h"\\r
-       ".\Include\accessobject.h"\\r
-       ".\Include\intobject.h"\\r
-       ".\Include\longobject.h"\\r
-       ".\Include\floatobject.h"\\r
-       ".\./Include\complexobject.h"\\r
-       ".\Include\rangeobject.h"\\r
-       ".\Include\stringobject.h"\\r
-       ".\Include\tupleobject.h"\\r
-       ".\Include\listobject.h"\\r
-       ".\Include\mappingobject.h"\\r
-       ".\Include\methodobject.h"\\r
-       ".\Include\moduleobject.h"\\r
-       ".\Include\funcobject.h"\\r
-       ".\Include\classobject.h"\\r
-       ".\Include\fileobject.h"\\r
-       ".\Include\cobject.h"\\r
-       ".\./Include\traceback.h"\\r
-       ".\Include\sliceobject.h"\\r
-       ".\Include\errors.h"\\r
-       ".\Include\mymalloc.h"\\r
-       ".\./Include\modsupport.h"\\r
-       ".\./Include\ceval.h"\\r
-       ".\Include\pythonrun.h"\\r
-       ".\./Include\sysmodule.h"\\r
-       ".\Include\intrcheck.h"\\r
-       ".\./Include\import.h"\\r
-       ".\./Include\bltinmodule.h"\\r
-       ".\Include\abstract.h"\\r
-       ".\./Include\rename2.h"\\r
-       ".\./Include\thread.h"\\r
-       \r
-\r
-"$(INTDIR)\sliceobject.obj" : $(SOURCE) $(DEP_CPP_SLICE) "$(INTDIR)"\r
-   $(CPP) $(CPP_PROJ) $(SOURCE)\r
-\r
-\r
-!ENDIF \r
-\r
+SOURCE=.\vc40\python14.lib\r
 # End Source File\r
 # End Target\r
 # End Project\r
diff --git a/PC/vc40.mdp b/PC/vc40.mdp
deleted file mode 100644 (file)
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 (file)
index 95ddb2d..0000000
Binary files a/PC/vc40.ncb and /dev/null differ