]> granicus.if.org Git - python/commitdiff
New versions of almost all files.
authorGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 17:38:17 +0000 (17:38 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 17:38:17 +0000 (17:38 +0000)
23 files changed:
PC/config.c
PC/config.h
PC/make8x3.py [new file with mode: 0644]
PC/pyth_w31.def
PC/python.def
PC/python.mk
PC/python.wpj
PC/utils/makesrc.lk1
PC/utils/makesrc.mk1
PC/utils/makesrc.tgt
PC/utils/utils.mk
PC/utils/utils.wpj
PC/vc15_lib/python.mak
PC/vc15_lib/python.vcw
PC/vc15_w31/pyth_w31.mak
PC/vc15_w31/pyth_w31.vcw
PC/vc40.mak
PC/wat_dos/pyth_dos.lk1
PC/wat_dos/pyth_dos.mk1
PC/wat_dos/pyth_dos.tgt
PC/wat_os2/pyth_os2.lk1
PC/wat_os2/pyth_os2.mk1
PC/wat_os2/pyth_os2.tgt

index f8f0cb514d1643dc066b180170f489f092803dcb..e32e7a18f571339640706dfa54d3fb913929ad86 100644 (file)
@@ -34,11 +34,13 @@ extern void initaudioop();
 extern void initbinascii();
 extern void initcmath();
 extern void initenvironment();
+extern void initerrno();
 extern void initimageop();
 extern void initmath();
 extern void initmd5();
 extern void initnew();
 extern void initnt();
+extern void initoperator();
 extern void initregex();
 extern void initrgbimg();
 extern void initrotor();
@@ -64,11 +66,13 @@ struct _inittab inittab[] = {
         {"binascii", initbinascii},
         {"cmath", initcmath},
         {"environment", initenvironment},
+        {"errno", initerrno},
         {"imageop", initimageop},
         {"math", initmath},
         {"md5", initmd5},
         {"new", initnew},
         {"nt", initnt},        /* Use the NT os functions, not posix */
+        {"operator", initoperator},
         {"regex", initregex},
         {"rgbimg", initrgbimg},
         {"rotor", initrotor},
index a6cd6f794ac6b23144f1736b1fdce74b5f27ffdf..5a1c4fb17ddfff63130921f59ac2866f0f7899cb 100644 (file)
@@ -10,6 +10,22 @@ This is a manually maintained version used for the Watcom,
 Borland and and Microsoft Visual C++ compilers.  It is a
 standard part of the Python distribution.
 
+WINDOWS DEFINES:
+The code specific to Windows should be wrapped around one of
+the following #defines
+
+MS_WIN32 - Code specific to the MS Win32 API
+MS_WIN16 - Code specific to the old 16 bit Windows API.
+MS_WINDOWS - Code specific to Windows, but all versions.
+MS_COREDLL - Code if the Python core is built as a DLL.
+
+Note that the old defines "NT" and "WIN32" are still supported, but
+will soon be dropped.
+
+Also note that neither "_M_IX86" or "_MSC_VER" should be used for
+any purpose other than "Windows Intel x86 specific" and "Microsoft
+compiler specific".  Therefore, these should be very rare.
+
 */
 
 /*
@@ -25,6 +41,8 @@ standard part of the Python distribution.
 #define DONT_HAVE_SIG_ALARM
 #define DONT_HAVE_SIG_PAUSE
 #define LONG_BIT       32
+#define PREFIX ""
+#define EXEC_PREFIX ""
 
 /* Microsoft C defines _MSC_VER */
 
@@ -33,12 +51,20 @@ standard part of the Python distribution.
 #define NT     /* NT is obsolete - please use MS_WIN32 instead */
 #define MS_WIN32
 #define MS_WINDOWS
+
+#ifdef 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 */
+
 #ifdef _M_IX86
 #define COMPILER "[MSC 32 bit (Intel)]"
 #else
 #define COMPILER "[MSC (Unknown)]"
 #endif
-#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win"
+#define PYTHONPATH ".\\lib;.\\lib\\win"
 typedef int pid_t;
 #define WORD_BIT 32
 #pragma warning(disable:4113)
@@ -48,7 +74,6 @@ typedef int pid_t;
 #define HAVE_STRFTIME
 #define NT_THREADS
 #define WITH_THREAD
-#define _COMPLEX_DEFINED
 #ifndef NETSCAPE_PI
 #define USE_SOCKET
 #endif
@@ -58,7 +83,8 @@ typedef int pid_t;
 #ifdef USE_DL_EXPORT
 #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
 #endif
-#endif /* MS_WIN32 */
+
+#endif /* _MSC_VER && > 850 */
 
 #if defined(_MSC_VER) && _MSC_VER <= 850
 /* Start of defines for 16-bit Windows using VC++ 1.5 */
@@ -67,11 +93,10 @@ typedef int pid_t;
 #define MS_WIN16
 #define MS_WINDOWS
 #endif
-#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
+#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
 #define IMPORT_8x3_NAMES
 typedef int pid_t;
 #define WORD_BIT 16
-#define _COMPLEX_DEFINED
 #pragma warning(disable:4113)
 #define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
 #define hypot _hypot
@@ -109,7 +134,7 @@ int sscanf(const char *, const char *, ...);
 /* The Watcom compiler defines __WATCOMC__ */
 #ifdef __WATCOMC__
 #define COMPILER "[Watcom]"
-#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
+#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
 #define IMPORT_8x3_NAMES
 #include <ctype.h>
 #include <direct.h>
@@ -144,7 +169,7 @@ typedef int pid_t;
 /* The Borland compiler defines __BORLANDC__ */
 #ifdef __BORLANDC__
 #define COMPILER "[Borland]"
-#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
+#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
 #define IMPORT_8x3_NAMES
 #define HAVE_CLOCK
 #define HAVE_STRFTIME
@@ -153,6 +178,18 @@ typedef int pid_t;
 #endif
 #endif /* BORLANDC */
 
+/* End of compilers - finish up */
+
+#ifdef MS_WIN32
+#define PLATFORM "win32"
+#else
+#ifdef MS_WIN16
+#define PLATFORM "win16"
+#else
+#define PLATFORM "dos"
+#endif /* !MS_WIN16 */
+#endif /* !MS_WIN32 */
+
 /* Fairly standard from here! */
 
 /* Define if on AIX 3.
@@ -257,7 +294,7 @@ typedef int pid_t;
    This requires the "dl" library by Jack Jansen,
    ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
    Don't bother on IRIX 5, it already has dynamic linking using SunOS
-   style shared libraries */ 
+   style shared libraries */
 /* #undef WITH_SGI_DL */
 
 /* Define if you want to emulate SGI (IRIX 4) dynamic linking.
@@ -268,7 +305,7 @@ typedef int pid_t;
    as well as the "GNU dld" library,
    ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
    Don't bother on SunOS 4 or 5, they already have dynamic linking using
-   shared libraries */ 
+   shared libraries */
 /* #undef WITH_DL_DLD */
 
 /* Define if you want to compile in rudimentary thread support */
diff --git a/PC/make8x3.py b/PC/make8x3.py
new file mode 100644 (file)
index 0000000..d894c70
--- /dev/null
@@ -0,0 +1,68 @@
+#! /usr/local/bin/python
+
+# This program reads all *.py and test/*.py in "libDir", and
+# copies those files with illegal DOS names to libDir/dos_8x3.
+# Names are illegal if they are longer than 8x3 chars or if they
+# contain uppercase chars.  It also tests for name collisions.
+# You must first create the directory libDir/dos_8x3 yourself.
+# You should remove all files in dos_8x3 if you run it again.
+
+# CHANGE libDir TO THE CORRECT DIRECTORY.  RM dos_8x3/* FIRST.
+
+import sys, os, regex, string
+
+libDir = "./Lib"       # Location of Python Lib
+
+def make8x3():
+  reg_uppercase = regex.compile("[A-Z]")
+  collisions = {}      # See if all names are unique in first 8 chars.
+  destDir = os.path.join(libDir, "dos_8x3")
+  if not os.path.isdir(destDir):
+    print "Please create the directory", destDir, "first."
+    err()
+  while 1:
+    ans = raw_input("Ok to copy to " + destDir + " [yn]? ")
+    if not ans:
+      continue
+    elif ans[0] == "n":
+      err()
+    elif ans[0] == "y":
+      break
+  for dirname in libDir, os.path.join(libDir, "test"):
+    for filename in os.listdir(dirname):
+      if filename[-3:] == ".py":
+        name = filename[0:-3]
+        if len(name) > 8 or reg_uppercase.search(name) >= 0:
+          shortName = string.lower(name[0:8])
+          if collisions.has_key(shortName):
+            print "Name not unique in first 8 chars:", collisions[shortName], name
+          else:
+            collisions[shortName] = name
+            fin = open(os.path.join(dirname, filename), "r")
+            dest = os.path.join(destDir, shortName + ".py")
+            fout = open(dest, "w")
+            fout.write(fin.read())
+            fin.close()
+            fout.close()
+            os.chmod(dest, 0644)
+      elif filename == "." or filename == "..":
+        continue
+      elif filename[-4:] == ".pyc":
+        continue
+      elif filename == "Makefile":
+        continue
+      else:
+        parts = string.splitfields(filename, ".")
+        if len(parts) > 2 or \
+           len(parts[0]) > 8 or \
+           reg_uppercase.search(filename) >= 0 or \
+           (len(parts) > 1 and len(parts[1]) > 3):
+                 print "Illegal DOS name", os.path.join(dirname, filename)
+  sys.exit(0)
+def err():
+  print "No files copied."
+  sys.exit(1)
+            
+
+if __name__ == "__main__":
+  make8x3()
index 4fe063c69b794b76f76ff0fc19183be56f89ea8f..753e8f80035664397bc964f8941a82ebc668390b 100644 (file)
@@ -1,5 +1,5 @@
-NAME 
-EXETYPE        WINDOWS
-CODE           PRELOAD MOVABLE DISCARDABLE
-DATA           PRELOAD MOVABLE
-HEAPSIZE       4096
+NAME \r
+EXETYPE        WINDOWS\r
+CODE           PRELOAD MOVABLE DISCARDABLE\r
+DATA           PRELOAD MOVABLE\r
+HEAPSIZE       4096\r
index 77f26d3ca6c237c3b796bae3a6c8321a8a887851..0f8e04dcadc5e703e4fb4441224cf73272a475d9 100644 (file)
@@ -121,6 +121,8 @@ EXPORTS
        PyImport_GetModuleDict
        PyImport_AddModule
        PyImport_ImportModule
+       PyImport_ImportFrozenModule
+       PyImport_FrozenModules
        PyImport_ReloadModule
        PyImport_Cleanup
        PyInt_FromLong
index 91be0ad527b9f029f8f0e1cc0e587a0188937d11..27ad30c72e0dba948144cdb4acdb7ba00235ea2f 100644 (file)
@@ -1,5 +1,5 @@
-project : n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe n:\python\python-1&
-.4b0b\pc\wat_dos\pyth_dos.exe .SYMBOLIC
-
-!include n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.mk1
-!include n:\python\python-1.4b0b\pc\wat_dos\pyth_dos.mk1
+project : n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe n:\python\python-1.&\r
+4b2\pc\wat_dos\pyth_dos.exe .SYMBOLIC\r
+\r
+!include n:\python\python-1.4b2\pc\wat_os2\pyth_os2.mk1\r
+!include n:\python\python-1.4b2\pc\wat_dos\pyth_dos.mk1\r
index afc8221264b678427414fed28d2200d1516252d8..2810158e37181171dd68df4bba064f66ac6a4a53 100644 (file)
@@ -1,63 +1,63 @@
-40
-projectIdent
-0
-VpeMain
-1
-WRect
-0
-0
-9920
-8704
-2
-MProject
-3
-MCommand
-0
-4
-MCommand
-0
-2
-5
-WFileName
-20
-wat_os2\pyth_os2.tgt
-6
-WFileName
-20
-wat_dos\pyth_dos.tgt
-7
-WVList
-2
-8
-VComponent
-9
-WRect
-832
-256
-5632
-4096
-1
-0
-10
-WFileName
-20
-wat_os2\pyth_os2.tgt
-0
-0
-11
-VComponent
-12
-WRect
-0
-0
-5632
-4147
-0
-0
-13
-WFileName
-20
-wat_dos\pyth_dos.tgt
-0
-0
-11
+40\r
+projectIdent\r
+0\r
+VpeMain\r
+1\r
+WRect\r
+0\r
+0\r
+9920\r
+8704\r
+2\r
+MProject\r
+3\r
+MCommand\r
+0\r
+4\r
+MCommand\r
+0\r
+2\r
+5\r
+WFileName\r
+20\r
+wat_os2\pyth_os2.tgt\r
+6\r
+WFileName\r
+20\r
+wat_dos\pyth_dos.tgt\r
+7\r
+WVList\r
+2\r
+8\r
+VComponent\r
+9\r
+WRect\r
+832\r
+256\r
+5632\r
+4096\r
+0\r
+0\r
+10\r
+WFileName\r
+20\r
+wat_os2\pyth_os2.tgt\r
+12\r
+74\r
+11\r
+VComponent\r
+12\r
+WRect\r
+128\r
+85\r
+5632\r
+4113\r
+0\r
+0\r
+13\r
+WFileName\r
+20\r
+wat_dos\pyth_dos.tgt\r
+9\r
+9\r
+11\r
index a1759fc7086b9257e846314772bc8ab1ca5da34e..18fddb7d8a4258dfad9f5f157ef2d9254325db23 100755 (executable)
@@ -1,3 +1,3 @@
-NAME makesrc
-FIL makesrc.obj
-
+NAME makesrc\r
+FIL makesrc.obj\r
+\r
index c722c379c89ccb9e8393d8cda10b4b1d8ea0fea1..8c3eb5c479cdf6f02b7de52c8eca59e3864b2e44 100755 (executable)
@@ -1,24 +1,24 @@
-!define BLANK ""
-n:\python\python-1.4b0b\pc\utils\makesrc.obj : n:\python\python-1.4b0b\pc\ut&
-ils\makesrc.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\utils
- *wcc386 makesrc.c -i=C:\WATCOM\h;C:\WATCOM\h\nt -w4 -e25 -ei -zp4 -zq -otex&
-an -d1 -5r -bt=nt -mf
-
-n:\python\python-1.4b0b\pc\utils\makesrc.exe : n:\python\python-1.4b0b\pc\ut&
-ils\makesrc.obj .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\utils
- @%write makesrc.lk1 NAME makesrc
- @%append makesrc.lk1 FIL makesrc.obj
- @%append makesrc.lk1 
-!ifneq BLANK ""
- *wlib -q -n -b makesrc.imp 
- @%append makesrc.lk1 LIBR makesrc.imp
-!endif
- *wlink SYS nt op m op st=20k op maxe=25 op q op symf @makesrc.lk1
-!ifneq BLANK ""
- wrc -q -ad  makesrc.exe
-!endif
-
+!define BLANK ""\r
+n:\python\python-1.4b0b\pc\utils\makesrc.obj : n:\python\python-1.4b0b\pc\ut&\r
+ils\makesrc.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b0b\pc\utils\r
+ *wcc386 makesrc.c -i=C:\WATCOM\h;C:\WATCOM\h\nt -w4 -e25 -ei -zp4 -zq -otex&\r
+an -d1 -5r -bt=nt -mf\r
+\r
+n:\python\python-1.4b0b\pc\utils\makesrc.exe : n:\python\python-1.4b0b\pc\ut&\r
+ils\makesrc.obj .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b0b\pc\utils\r
+ @%write makesrc.lk1 NAME makesrc\r
+ @%append makesrc.lk1 FIL makesrc.obj\r
+ @%append makesrc.lk1 \r
+!ifneq BLANK ""\r
+ *wlib -q -n -b makesrc.imp \r
+ @%append makesrc.lk1 LIBR makesrc.imp\r
+!endif\r
+ *wlink SYS nt op m op st=20k op maxe=25 op q op symf @makesrc.lk1\r
+!ifneq BLANK ""\r
+ wrc -q -ad  makesrc.exe\r
+!endif\r
+\r
index f35173c64229336d60e337b403eb89e4d708181b..fd2abc77a322902ee2b486121ce37eac10c3ed44 100755 (executable)
-40
-targetIdent
-0
-MProject
-1
-MComponent
-0
-2
-WString
-4
-NEXE
-3
-WString
-5
-nc2en
-1
-0
-0
-4
-MCommand
-0
-5
-MCommand
-0
-6
-MItem
-11
-makesrc.exe
-7
-WString
-4
-NEXE
-8
-WVList
-2
-9
-MVState
-10
-WString
-7
-WINLINK
-11
-WString
-11
-?????Stack:
-1
-12
-WString
-3
-20k
-0
-13
-MVState
-14
-WString
-7
-WINLINK
-15
-WString
-11
-?????Stack:
-0
-16
-WString
-3
-20k
-0
-17
-WVList
-0
--1
-1
-1
-0
-18
-WPickList
-2
-19
-MItem
-3
-*.c
-20
-WString
-4
-COBJ
-21
-WVList
-6
-22
-MCState
-23
-WString
-3
-WCC
-24
-WString
-31
-?????Force enums to be type int
-1
-1
-25
-MRState
-26
-WString
-3
-WCC
-27
-WString
-20
-?????Pack structures
-1
-0
-28
-MRState
-29
-WString
-3
-WCC
-30
-WString
-21
-?????4 byte alignment
-1
-1
-31
-MCState
-32
-WString
-3
-WCC
-33
-WString
-31
-?????Force enums to be type int
-0
-1
-34
-MRState
-35
-WString
-3
-WCC
-36
-WString
-20
-?????Pack structures
-0
-0
-37
-MRState
-38
-WString
-3
-WCC
-39
-WString
-21
-?????4 byte alignment
-0
-1
-40
-WVList
-0
--1
-1
-1
-0
-41
-MItem
-9
-makesrc.c
-42
-WString
-4
-COBJ
-43
-WVList
-0
-44
-WVList
-0
-19
-1
-1
-0
+40\r
+targetIdent\r
+0\r
+MProject\r
+1\r
+MComponent\r
+0\r
+2\r
+WString\r
+4\r
+NEXE\r
+3\r
+WString\r
+5\r
+nc2en\r
+1\r
+0\r
+0\r
+4\r
+MCommand\r
+0\r
+5\r
+MCommand\r
+0\r
+6\r
+MItem\r
+11\r
+makesrc.exe\r
+7\r
+WString\r
+4\r
+NEXE\r
+8\r
+WVList\r
+2\r
+9\r
+MVState\r
+10\r
+WString\r
+7\r
+WINLINK\r
+11\r
+WString\r
+11\r
+?????Stack:\r
+1\r
+12\r
+WString\r
+3\r
+20k\r
+0\r
+13\r
+MVState\r
+14\r
+WString\r
+7\r
+WINLINK\r
+15\r
+WString\r
+11\r
+?????Stack:\r
+0\r
+16\r
+WString\r
+3\r
+20k\r
+0\r
+17\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+18\r
+WPickList\r
+2\r
+19\r
+MItem\r
+3\r
+*.c\r
+20\r
+WString\r
+4\r
+COBJ\r
+21\r
+WVList\r
+6\r
+22\r
+MCState\r
+23\r
+WString\r
+3\r
+WCC\r
+24\r
+WString\r
+31\r
+?????Force enums to be type int\r
+1\r
+1\r
+25\r
+MRState\r
+26\r
+WString\r
+3\r
+WCC\r
+27\r
+WString\r
+20\r
+?????Pack structures\r
+1\r
+0\r
+28\r
+MRState\r
+29\r
+WString\r
+3\r
+WCC\r
+30\r
+WString\r
+21\r
+?????4 byte alignment\r
+1\r
+1\r
+31\r
+MCState\r
+32\r
+WString\r
+3\r
+WCC\r
+33\r
+WString\r
+31\r
+?????Force enums to be type int\r
+0\r
+1\r
+34\r
+MRState\r
+35\r
+WString\r
+3\r
+WCC\r
+36\r
+WString\r
+20\r
+?????Pack structures\r
+0\r
+0\r
+37\r
+MRState\r
+38\r
+WString\r
+3\r
+WCC\r
+39\r
+WString\r
+21\r
+?????4 byte alignment\r
+0\r
+1\r
+40\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+41\r
+MItem\r
+9\r
+makesrc.c\r
+42\r
+WString\r
+4\r
+COBJ\r
+43\r
+WVList\r
+0\r
+44\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
index 033c92c161674b906d1821905c7af7a7a1f46e82..b357ef60d4b088c5a13a0cc67c63e86cdac28be9 100755 (executable)
@@ -1,3 +1,3 @@
-project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC
-
-!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1
+project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC\r
+\r
+!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1\r
index 5bbff04a85d586ca676264470a0e42bc845a3669..f66dd581688b9aab14c73423f7d561d3e7ce1750 100755 (executable)
@@ -1,43 +1,43 @@
-40
-projectIdent
-0
-VpeMain
-1
-WRect
-0
-0
-9920
-8704
-2
-MProject
-3
-MCommand
-0
-4
-MCommand
-0
-1
-5
-WFileName
-11
-makesrc.tgt
-6
-WVList
-1
-7
-VComponent
-8
-WRect
-332
-324
-5670
-4215
-0
-0
-9
-WFileName
-11
-makesrc.tgt
-0
-1
-7
+40\r
+projectIdent\r
+0\r
+VpeMain\r
+1\r
+WRect\r
+0\r
+0\r
+9920\r
+8704\r
+2\r
+MProject\r
+3\r
+MCommand\r
+0\r
+4\r
+MCommand\r
+0\r
+1\r
+5\r
+WFileName\r
+11\r
+makesrc.tgt\r
+6\r
+WVList\r
+1\r
+7\r
+VComponent\r
+8\r
+WRect\r
+332\r
+324\r
+5670\r
+4215\r
+0\r
+0\r
+9\r
+WFileName\r
+11\r
+makesrc.tgt\r
+0\r
+1\r
+7\r
index 761445ac1f8c517f8aa409a5354d652f5ad41a3c..af25cedea68faa00c3acc41a2e494f6cb328958a 100644 (file)
-# Microsoft Visual C++ generated build script - Do not modify
-
-PROJ = PYTHON
-DEBUG = 0
-PROGTYPE = 4
-CALLER = 
-ARGS = 
-DLLS = 
-D_RCDEFINES = -d_DEBUG
-R_RCDEFINES = -dNDEBUG
-ORIGIN = MSVC
-ORIGIN_VER = 1.00
-PROJPATH = N:\PYTHON\PYTHO~HA.4B0\PC\VC15_LIB\
-USEMFC = 0
-CC = cl
-CPP = cl
-CXX = cl
-CCREATEPCHFLAG = 
-CPPCREATEPCHFLAG = 
-CUSEPCHFLAG = 
-CPPUSEPCHFLAG = 
-FIRSTC = ABSTRACT.C  
-FIRSTCPP =             
-RC = rc
-CFLAGS_D_LIB = /nologo /G3 /W3 /Z7 /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /FR 
-CFLAGS_R_LIB = /nologo /G3 /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /FR 
-RCFLAGS = /nologo
-RESFLAGS = /nologo
-RUNFLAGS = 
-OBJS_EXT = 
-LIBS_EXT = 
-!if "$(DEBUG)" == "1"
-CFLAGS = $(CFLAGS_D_LIB)
-LFLAGS = 
-LIBS = 
-MAPFILE = nul
-RCDEFINES = $(D_RCDEFINES)
-!else
-CFLAGS = $(CFLAGS_R_LIB)
-LFLAGS = 
-LIBS = 
-MAPFILE = nul
-RCDEFINES = $(R_RCDEFINES)
-!endif
-!if [if exist MSVC.BND del MSVC.BND]
-!endif
-SBRS = ABSTRACT.SBR \
-               ACCELER.SBR \
-               ACCESSOB.SBR \
-               ARRAYMOD.SBR \
-               AUDIOOP.SBR \
-               BINASCII.SBR \
-               BLTINMOD.SBR \
-               CEVAL.SBR \
-               CGENSUPP.SBR \
-               CLASSOBJ.SBR \
-               COMPILE.SBR \
-               CONFIG.SBR \
-               ENVIRONM.SBR \
-               ERRORS.SBR \
-               FILEOBJE.SBR \
-               FLOATOBJ.SBR \
-               FRAMEOBJ.SBR \
-               FROZEN.SBR \
-               FUNCOBJE.SBR \
-               GETARGS.SBR \
-               GETCOMPI.SBR \
-               GETCOPYR.SBR \
-               GETMTIME.SBR \
-               GETPATH.SBR \
-               GETPLATF.SBR \
-               GETVERSI.SBR \
-               GRAMINIT.SBR \
-               GRAMMAR1.SBR \
-               IMAGEOP.SBR \
-               IMPORT.SBR \
-               IMPORTDL.SBR \
-               INTOBJEC.SBR \
-               LISTOBJE.SBR \
-               LONGOBJE.SBR \
-               MAPPINGO.SBR \
-               MARSHAL.SBR \
-               MATHMODU.SBR \
-               MD5C.SBR \
-               MD5MODUL.SBR \
-               METHODOB.SBR \
-               MODSUPPO.SBR \
-               MODULEOB.SBR \
-               MYREADLI.SBR \
-               MYSTRTOU.SBR \
-               NEWMODUL.SBR \
-               NODE.SBR \
-               OBJECT.SBR \
-               PARSER.SBR \
-               PARSETOK.SBR \
-               POSIXMOD.SBR \
-               PYTHONRU.SBR \
-               RANGEOBJ.SBR \
-               REGEXMOD.SBR \
-               REGEXPR.SBR \
-               RGBIMGMO.SBR \
-               ROTORMOD.SBR \
-               SIGNALMO.SBR \
-               SOUNDEX.SBR \
-               STRINGOB.SBR \
-               STROPMOD.SBR \
-               STRUCTME.SBR \
-               STRUCTMO.SBR \
-               SYSMODUL.SBR \
-               TIMEMODU.SBR \
-               TOKENIZE.SBR \
-               TRACEBAC.SBR \
-               TUPLEOBJ.SBR \
-               TYPEOBJE.SBR \
-               YUVCONVE.SBR \
-               COBJECT.SBR \
-               COMPLEXO.SBR \
-               CMATHMOD.SBR
-
-
-ABSTRACT_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-ACCELER_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\parser.h
-
-
-ACCESSOB_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-ARRAYMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-AUDIOOP_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-BINASCII_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-BLTINMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\graminit.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\eval.h
-
-
-CEVAL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\frameobj.h \
-       n:\python\pytho~ha.4b0\pc\src\eval.h \
-       n:\python\pytho~ha.4b0\pc\src\opcode.h \
-       n:\python\pytho~ha.4b0\pc\src\graminit.h
-
-
-CGENSUPP_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\cgensupp.h
-
-
-CLASSOBJ_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-COMPILE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\graminit.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\opcode.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-CONFIG_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-ENVIRONM_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-ERRORS_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-FILEOBJE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-FLOATOBJ_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-FRAMEOBJ_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\frameobj.h \
-       n:\python\pytho~ha.4b0\pc\src\opcode.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-FROZEN_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-FUNCOBJE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-GETARGS_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-GETCOMPI_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-GETCOPYR_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-GETMTIME_DEP = n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h
-
-
-GETPATH_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\osdefs.h
-
-
-GETPLATF_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-GETVERSI_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\patchlev.h
-
-
-GRAMINIT_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h
-
-
-GRAMMAR1_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h
-
-
-IMAGEOP_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-IMPORT_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\graminit.h \
-       n:\python\pytho~ha.4b0\pc\src\errcode.h \
-       n:\python\pytho~ha.4b0\pc\src\marshal.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\eval.h \
-       n:\python\pytho~ha.4b0\pc\src\osdefs.h \
-       n:\python\pytho~ha.4b0\pc\src\importdl.h
-
-
-IMPORTDL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\osdefs.h \
-       n:\python\pytho~ha.4b0\pc\src\importdl.h
-
-
-INTOBJEC_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-LISTOBJE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-LONGOBJE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\longintr.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-MAPPINGO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-MARSHAL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\longintr.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\marshal.h
-
-
-MATHMODU_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-MD5C_DEP = n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\md5.h
-
-
-MD5MODUL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\md5.h
-
-
-METHODOB_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h
-
-
-MODSUPPO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-MODULEOB_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-MYREADLI_DEP = n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h
-
-
-MYSTRTOU_DEP = n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h
-
-
-NEWMODUL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h
-
-
-NODE_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h
-
-
-OBJECT_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-PARSER_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\parser.h \
-       n:\python\pytho~ha.4b0\pc\src\errcode.h
-
-
-PARSETOK_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\tokenize.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h \
-       n:\python\pytho~ha.4b0\pc\src\parser.h \
-       n:\python\pytho~ha.4b0\pc\src\parsetok.h \
-       n:\python\pytho~ha.4b0\pc\src\errcode.h
-
-
-POSIXMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mytime.h
-
-
-PYTHONRU_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\grammar.h \
-       n:\python\pytho~ha.4b0\pc\src\bitset.h \
-       n:\python\pytho~ha.4b0\pc\src\node.h \
-       n:\python\pytho~ha.4b0\pc\src\parsetok.h \
-       n:\python\pytho~ha.4b0\pc\src\graminit.h \
-       n:\python\pytho~ha.4b0\pc\src\errcode.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\eval.h \
-       n:\python\pytho~ha.4b0\pc\src\marshal.h
-
-
-RANGEOBJ_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-REGEXMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\regexpr.h
-
-
-REGEXPR_DEP = n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\regexpr.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h
-
-
-RGBIMGMO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-ROTORMOD_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-SIGNALMO_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-SOUNDEX_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-STRINGOB_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-STROPMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-STRUCTME_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h
-
-
-STRUCTMO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-SYSMODUL_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\osdefs.h
-
-
-TIMEMODU_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\myselect.h \
-       n:\python\pytho~ha.4b0\pc\src\mytime.h
-
-
-TOKENIZE_DEP = n:\python\pytho~ha.4b0\pc\src\pgenhead.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\tokenize.h \
-       n:\python\pytho~ha.4b0\pc\src\token.h \
-       n:\python\pytho~ha.4b0\pc\src\errcode.h
-
-
-TRACEBAC_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\compile.h \
-       n:\python\pytho~ha.4b0\pc\src\frameobj.h \
-       n:\python\pytho~ha.4b0\pc\src\structme.h \
-       n:\python\pytho~ha.4b0\pc\src\osdefs.h
-
-
-TUPLEOBJ_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-TYPEOBJE_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-YUVCONVE_DEP = n:\python\pytho~ha.4b0\pc\src\yuv.h
-
-
-COBJECT_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-COMPLEXO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-CMATHMOD_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mymath.h
-
-
-all:   $(PROJ).LIB $(PROJ).BSC
-
-ABSTRACT.OBJ:  ..\SRC\ABSTRACT.C $(ABSTRACT_DEP)
-       $(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\ABSTRACT.C
-
-ACCELER.OBJ:   ..\SRC\ACCELER.C $(ACCELER_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ACCELER.C
-
-ACCESSOB.OBJ:  ..\SRC\ACCESSOB.C $(ACCESSOB_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ACCESSOB.C
-
-ARRAYMOD.OBJ:  ..\SRC\ARRAYMOD.C $(ARRAYMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ARRAYMOD.C
-
-AUDIOOP.OBJ:   ..\SRC\AUDIOOP.C $(AUDIOOP_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\AUDIOOP.C
-
-BINASCII.OBJ:  ..\SRC\BINASCII.C $(BINASCII_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\BINASCII.C
-
-BLTINMOD.OBJ:  ..\SRC\BLTINMOD.C $(BLTINMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\BLTINMOD.C
-
-CEVAL.OBJ:     ..\SRC\CEVAL.C $(CEVAL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CEVAL.C
-
-CGENSUPP.OBJ:  ..\SRC\CGENSUPP.C $(CGENSUPP_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CGENSUPP.C
-
-CLASSOBJ.OBJ:  ..\SRC\CLASSOBJ.C $(CLASSOBJ_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CLASSOBJ.C
-
-COMPILE.OBJ:   ..\SRC\COMPILE.C $(COMPILE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COMPILE.C
-
-CONFIG.OBJ:    ..\SRC\CONFIG.C $(CONFIG_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CONFIG.C
-
-ENVIRONM.OBJ:  ..\SRC\ENVIRONM.C $(ENVIRONM_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ENVIRONM.C
-
-ERRORS.OBJ:    ..\SRC\ERRORS.C $(ERRORS_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ERRORS.C
-
-FILEOBJE.OBJ:  ..\SRC\FILEOBJE.C $(FILEOBJE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FILEOBJE.C
-
-FLOATOBJ.OBJ:  ..\SRC\FLOATOBJ.C $(FLOATOBJ_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FLOATOBJ.C
-
-FRAMEOBJ.OBJ:  ..\SRC\FRAMEOBJ.C $(FRAMEOBJ_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FRAMEOBJ.C
-
-FROZEN.OBJ:    ..\SRC\FROZEN.C $(FROZEN_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FROZEN.C
-
-FUNCOBJE.OBJ:  ..\SRC\FUNCOBJE.C $(FUNCOBJE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FUNCOBJE.C
-
-GETARGS.OBJ:   ..\SRC\GETARGS.C $(GETARGS_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETARGS.C
-
-GETCOMPI.OBJ:  ..\SRC\GETCOMPI.C $(GETCOMPI_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETCOMPI.C
-
-GETCOPYR.OBJ:  ..\SRC\GETCOPYR.C $(GETCOPYR_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETCOPYR.C
-
-GETMTIME.OBJ:  ..\SRC\GETMTIME.C $(GETMTIME_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETMTIME.C
-
-GETPATH.OBJ:   ..\SRC\GETPATH.C $(GETPATH_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETPATH.C
-
-GETPLATF.OBJ:  ..\SRC\GETPLATF.C $(GETPLATF_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETPLATF.C
-
-GETVERSI.OBJ:  ..\SRC\GETVERSI.C $(GETVERSI_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETVERSI.C
-
-GRAMINIT.OBJ:  ..\SRC\GRAMINIT.C $(GRAMINIT_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GRAMINIT.C
-
-GRAMMAR1.OBJ:  ..\SRC\GRAMMAR1.C $(GRAMMAR1_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GRAMMAR1.C
-
-IMAGEOP.OBJ:   ..\SRC\IMAGEOP.C $(IMAGEOP_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMAGEOP.C
-
-IMPORT.OBJ:    ..\SRC\IMPORT.C $(IMPORT_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMPORT.C
-
-IMPORTDL.OBJ:  ..\SRC\IMPORTDL.C $(IMPORTDL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMPORTDL.C
-
-INTOBJEC.OBJ:  ..\SRC\INTOBJEC.C $(INTOBJEC_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\INTOBJEC.C
-
-LISTOBJE.OBJ:  ..\SRC\LISTOBJE.C $(LISTOBJE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\LISTOBJE.C
-
-LONGOBJE.OBJ:  ..\SRC\LONGOBJE.C $(LONGOBJE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\LONGOBJE.C
-
-MAPPINGO.OBJ:  ..\SRC\MAPPINGO.C $(MAPPINGO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MAPPINGO.C
-
-MARSHAL.OBJ:   ..\SRC\MARSHAL.C $(MARSHAL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MARSHAL.C
-
-MATHMODU.OBJ:  ..\SRC\MATHMODU.C $(MATHMODU_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MATHMODU.C
-
-MD5C.OBJ:      ..\SRC\MD5C.C $(MD5C_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MD5C.C
-
-MD5MODUL.OBJ:  ..\SRC\MD5MODUL.C $(MD5MODUL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MD5MODUL.C
-
-METHODOB.OBJ:  ..\SRC\METHODOB.C $(METHODOB_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\METHODOB.C
-
-MODSUPPO.OBJ:  ..\SRC\MODSUPPO.C $(MODSUPPO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MODSUPPO.C
-
-MODULEOB.OBJ:  ..\SRC\MODULEOB.C $(MODULEOB_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MODULEOB.C
-
-MYREADLI.OBJ:  ..\SRC\MYREADLI.C $(MYREADLI_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MYREADLI.C
-
-MYSTRTOU.OBJ:  ..\SRC\MYSTRTOU.C $(MYSTRTOU_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MYSTRTOU.C
-
-NEWMODUL.OBJ:  ..\SRC\NEWMODUL.C $(NEWMODUL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\NEWMODUL.C
-
-NODE.OBJ:      ..\SRC\NODE.C $(NODE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\NODE.C
-
-OBJECT.OBJ:    ..\SRC\OBJECT.C $(OBJECT_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\OBJECT.C
-
-PARSER.OBJ:    ..\SRC\PARSER.C $(PARSER_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PARSER.C
-
-PARSETOK.OBJ:  ..\SRC\PARSETOK.C $(PARSETOK_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PARSETOK.C
-
-POSIXMOD.OBJ:  ..\SRC\POSIXMOD.C $(POSIXMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\POSIXMOD.C
-
-PYTHONRU.OBJ:  ..\SRC\PYTHONRU.C $(PYTHONRU_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PYTHONRU.C
-
-RANGEOBJ.OBJ:  ..\SRC\RANGEOBJ.C $(RANGEOBJ_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\RANGEOBJ.C
-
-REGEXMOD.OBJ:  ..\SRC\REGEXMOD.C $(REGEXMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\REGEXMOD.C
-
-REGEXPR.OBJ:   ..\SRC\REGEXPR.C $(REGEXPR_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\REGEXPR.C
-
-RGBIMGMO.OBJ:  ..\SRC\RGBIMGMO.C $(RGBIMGMO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\RGBIMGMO.C
-
-ROTORMOD.OBJ:  ..\SRC\ROTORMOD.C $(ROTORMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ROTORMOD.C
-
-SIGNALMO.OBJ:  ..\SRC\SIGNALMO.C $(SIGNALMO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SIGNALMO.C
-
-SOUNDEX.OBJ:   ..\SRC\SOUNDEX.C $(SOUNDEX_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOUNDEX.C
-
-STRINGOB.OBJ:  ..\SRC\STRINGOB.C $(STRINGOB_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRINGOB.C
-
-STROPMOD.OBJ:  ..\SRC\STROPMOD.C $(STROPMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STROPMOD.C
-
-STRUCTME.OBJ:  ..\SRC\STRUCTME.C $(STRUCTME_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRUCTME.C
-
-STRUCTMO.OBJ:  ..\SRC\STRUCTMO.C $(STRUCTMO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRUCTMO.C
-
-SYSMODUL.OBJ:  ..\SRC\SYSMODUL.C $(SYSMODUL_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SYSMODUL.C
-
-TIMEMODU.OBJ:  ..\SRC\TIMEMODU.C $(TIMEMODU_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TIMEMODU.C
-
-TOKENIZE.OBJ:  ..\SRC\TOKENIZE.C $(TOKENIZE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TOKENIZE.C
-
-TRACEBAC.OBJ:  ..\SRC\TRACEBAC.C $(TRACEBAC_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TRACEBAC.C
-
-TUPLEOBJ.OBJ:  ..\SRC\TUPLEOBJ.C $(TUPLEOBJ_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TUPLEOBJ.C
-
-TYPEOBJE.OBJ:  ..\SRC\TYPEOBJE.C $(TYPEOBJE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TYPEOBJE.C
-
-YUVCONVE.OBJ:  ..\SRC\YUVCONVE.C $(YUVCONVE_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\YUVCONVE.C
-
-COBJECT.OBJ:   ..\SRC\COBJECT.C $(COBJECT_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COBJECT.C
-
-COMPLEXO.OBJ:  ..\SRC\COMPLEXO.C $(COMPLEXO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COMPLEXO.C
-
-CMATHMOD.OBJ:  ..\SRC\CMATHMOD.C $(CMATHMOD_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CMATHMOD.C
-
-$(PROJ).LIB::  ABSTRACT.OBJ ACCELER.OBJ ACCESSOB.OBJ ARRAYMOD.OBJ AUDIOOP.OBJ BINASCII.OBJ \
-       BLTINMOD.OBJ CEVAL.OBJ CGENSUPP.OBJ CLASSOBJ.OBJ COMPILE.OBJ CONFIG.OBJ ENVIRONM.OBJ \
-       ERRORS.OBJ FILEOBJE.OBJ FLOATOBJ.OBJ FRAMEOBJ.OBJ FROZEN.OBJ FUNCOBJE.OBJ GETARGS.OBJ \
-       GETCOMPI.OBJ GETCOPYR.OBJ GETMTIME.OBJ GETPATH.OBJ GETPLATF.OBJ GETVERSI.OBJ GRAMINIT.OBJ \
-       GRAMMAR1.OBJ IMAGEOP.OBJ IMPORT.OBJ IMPORTDL.OBJ INTOBJEC.OBJ LISTOBJE.OBJ LONGOBJE.OBJ \
-       MAPPINGO.OBJ MARSHAL.OBJ MATHMODU.OBJ MD5C.OBJ MD5MODUL.OBJ METHODOB.OBJ MODSUPPO.OBJ \
-       MODULEOB.OBJ MYREADLI.OBJ MYSTRTOU.OBJ NEWMODUL.OBJ NODE.OBJ OBJECT.OBJ PARSER.OBJ \
-       PARSETOK.OBJ POSIXMOD.OBJ PYTHONRU.OBJ RANGEOBJ.OBJ REGEXMOD.OBJ REGEXPR.OBJ RGBIMGMO.OBJ \
-       ROTORMOD.OBJ SIGNALMO.OBJ SOUNDEX.OBJ STRINGOB.OBJ STROPMOD.OBJ STRUCTME.OBJ STRUCTMO.OBJ \
-       SYSMODUL.OBJ TIMEMODU.OBJ TOKENIZE.OBJ TRACEBAC.OBJ TUPLEOBJ.OBJ TYPEOBJE.OBJ YUVCONVE.OBJ \
-       COBJECT.OBJ COMPLEXO.OBJ CMATHMOD.OBJ $(OBJS_EXT)
-       echo >NUL @<<$(PROJ).CRF
-$@ /PAGESIZE:64
-y
-+ABSTRACT.OBJ &
-+ACCELER.OBJ &
-+ACCESSOB.OBJ &
-+ARRAYMOD.OBJ &
-+AUDIOOP.OBJ &
-+BINASCII.OBJ &
-+BLTINMOD.OBJ &
-+CEVAL.OBJ &
-+CGENSUPP.OBJ &
-+CLASSOBJ.OBJ &
-+COMPILE.OBJ &
-+CONFIG.OBJ &
-+ENVIRONM.OBJ &
-+ERRORS.OBJ &
-+FILEOBJE.OBJ &
-+FLOATOBJ.OBJ &
-+FRAMEOBJ.OBJ &
-+FROZEN.OBJ &
-+FUNCOBJE.OBJ &
-+GETARGS.OBJ &
-+GETCOMPI.OBJ &
-+GETCOPYR.OBJ &
-+GETMTIME.OBJ &
-+GETPATH.OBJ &
-+GETPLATF.OBJ &
-+GETVERSI.OBJ &
-+GRAMINIT.OBJ &
-+GRAMMAR1.OBJ &
-+IMAGEOP.OBJ &
-+IMPORT.OBJ &
-+IMPORTDL.OBJ &
-+INTOBJEC.OBJ &
-+LISTOBJE.OBJ &
-+LONGOBJE.OBJ &
-+MAPPINGO.OBJ &
-+MARSHAL.OBJ &
-+MATHMODU.OBJ &
-+MD5C.OBJ &
-+MD5MODUL.OBJ &
-+METHODOB.OBJ &
-+MODSUPPO.OBJ &
-+MODULEOB.OBJ &
-+MYREADLI.OBJ &
-+MYSTRTOU.OBJ &
-+NEWMODUL.OBJ &
-+NODE.OBJ &
-+OBJECT.OBJ &
-+PARSER.OBJ &
-+PARSETOK.OBJ &
-+POSIXMOD.OBJ &
-+PYTHONRU.OBJ &
-+RANGEOBJ.OBJ &
-+REGEXMOD.OBJ &
-+REGEXPR.OBJ &
-+RGBIMGMO.OBJ &
-+ROTORMOD.OBJ &
-+SIGNALMO.OBJ &
-+SOUNDEX.OBJ &
-+STRINGOB.OBJ &
-+STROPMOD.OBJ &
-+STRUCTME.OBJ &
-+STRUCTMO.OBJ &
-+SYSMODUL.OBJ &
-+TIMEMODU.OBJ &
-+TOKENIZE.OBJ &
-+TRACEBAC.OBJ &
-+TUPLEOBJ.OBJ &
-+TYPEOBJE.OBJ &
-+YUVCONVE.OBJ &
-+COBJECT.OBJ &
-+COMPLEXO.OBJ &
-+CMATHMOD.OBJ &
-;
-<<
-       if exist $@ del $@
-       lib @$(PROJ).CRF
-
-$(PROJ).BSC: $(SBRS)
-       bscmake @<<
-/o$@ $(SBRS)
-<<
+# Microsoft Visual C++ generated build script - Do not modify\r
+\r
+PROJ = PYTHON\r
+DEBUG = 0\r
+PROGTYPE = 4\r
+CALLER = \r
+ARGS = \r
+DLLS = \r
+D_RCDEFINES = -d_DEBUG\r
+R_RCDEFINES = -dNDEBUG\r
+ORIGIN = MSVC\r
+ORIGIN_VER = 1.00\r
+PROJPATH = N:\PYTHON\PYTHON-1.4B2\PC\VC15_LIB\\r
+USEMFC = 0\r
+CC = cl\r
+CPP = cl\r
+CXX = cl\r
+CCREATEPCHFLAG = \r
+CPPCREATEPCHFLAG = \r
+CUSEPCHFLAG = \r
+CPPUSEPCHFLAG = \r
+FIRSTC = ABSTRACT.C  \r
+FIRSTCPP =             \r
+RC = rc\r
+CFLAGS_D_LIB = /nologo /G3 /W3 /Z7 /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /FR \r
+CFLAGS_R_LIB = /nologo /G3 /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /FR \r
+RCFLAGS = /nologo\r
+RESFLAGS = /nologo\r
+RUNFLAGS = \r
+OBJS_EXT = \r
+LIBS_EXT = \r
+!if "$(DEBUG)" == "1"\r
+CFLAGS = $(CFLAGS_D_LIB)\r
+LFLAGS = \r
+LIBS = \r
+MAPFILE = nul\r
+RCDEFINES = $(D_RCDEFINES)\r
+!else\r
+CFLAGS = $(CFLAGS_R_LIB)\r
+LFLAGS = \r
+LIBS = \r
+MAPFILE = nul\r
+RCDEFINES = $(R_RCDEFINES)\r
+!endif\r
+!if [if exist MSVC.BND del MSVC.BND]\r
+!endif\r
+SBRS = ABSTRACT.SBR \\r
+               ACCELER.SBR \\r
+               ACCESSOB.SBR \\r
+               ARRAYMOD.SBR \\r
+               AUDIOOP.SBR \\r
+               BINASCII.SBR \\r
+               BLTINMOD.SBR \\r
+               CEVAL.SBR \\r
+               CGENSUPP.SBR \\r
+               CLASSOBJ.SBR \\r
+               COMPILE.SBR \\r
+               CONFIG.SBR \\r
+               ENVIRONM.SBR \\r
+               ERRORS.SBR \\r
+               FILEOBJE.SBR \\r
+               FLOATOBJ.SBR \\r
+               FRAMEOBJ.SBR \\r
+               FROZEN.SBR \\r
+               FUNCOBJE.SBR \\r
+               GETARGS.SBR \\r
+               GETCOMPI.SBR \\r
+               GETCOPYR.SBR \\r
+               GETMTIME.SBR \\r
+               GETPATH.SBR \\r
+               GETPLATF.SBR \\r
+               GETVERSI.SBR \\r
+               GRAMINIT.SBR \\r
+               GRAMMAR1.SBR \\r
+               IMAGEOP.SBR \\r
+               IMPORT.SBR \\r
+               IMPORTDL.SBR \\r
+               INTOBJEC.SBR \\r
+               LISTOBJE.SBR \\r
+               LONGOBJE.SBR \\r
+               MAPPINGO.SBR \\r
+               MARSHAL.SBR \\r
+               MATHMODU.SBR \\r
+               MD5C.SBR \\r
+               MD5MODUL.SBR \\r
+               METHODOB.SBR \\r
+               MODSUPPO.SBR \\r
+               MODULEOB.SBR \\r
+               MYREADLI.SBR \\r
+               MYSTRTOU.SBR \\r
+               NEWMODUL.SBR \\r
+               NODE.SBR \\r
+               OBJECT.SBR \\r
+               PARSER.SBR \\r
+               PARSETOK.SBR \\r
+               POSIXMOD.SBR \\r
+               PYTHONRU.SBR \\r
+               RANGEOBJ.SBR \\r
+               REGEXMOD.SBR \\r
+               REGEXPR.SBR \\r
+               RGBIMGMO.SBR \\r
+               ROTORMOD.SBR \\r
+               SIGNALMO.SBR \\r
+               SOUNDEX.SBR \\r
+               STRINGOB.SBR \\r
+               STROPMOD.SBR \\r
+               STRUCTME.SBR \\r
+               STRUCTMO.SBR \\r
+               SYSMODUL.SBR \\r
+               TIMEMODU.SBR \\r
+               TOKENIZE.SBR \\r
+               TRACEBAC.SBR \\r
+               TUPLEOBJ.SBR \\r
+               TYPEOBJE.SBR \\r
+               YUVCONVE.SBR \\r
+               COBJECT.SBR \\r
+               COMPLEXO.SBR \\r
+               CMATHMOD.SBR \\r
+               ERRNOMOD.SBR \\r
+               OPERATOR.SBR\r
+\r
+\r
+ABSTRACT_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+ACCELER_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\parser.h\r
+\r
+\r
+ACCESSOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+ARRAYMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+AUDIOOP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+BINASCII_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+BLTINMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\graminit.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\eval.h\r
+\r
+\r
+CEVAL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\frameobj.h \\r
+       n:\python\python-1.4b2\pc\src\eval.h \\r
+       n:\python\python-1.4b2\pc\src\opcode.h \\r
+       n:\python\python-1.4b2\pc\src\graminit.h\r
+\r
+\r
+CGENSUPP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\cgensupp.h\r
+\r
+\r
+CLASSOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+COMPILE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\graminit.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\opcode.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+CONFIG_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+ENVIRONM_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+ERRORS_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+FILEOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+FLOATOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+FRAMEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\frameobj.h \\r
+       n:\python\python-1.4b2\pc\src\opcode.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+FROZEN_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+FUNCOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+GETARGS_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+GETCOMPI_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+GETCOPYR_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+GETMTIME_DEP = n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h\r
+\r
+\r
+GETPATH_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\osdefs.h\r
+\r
+\r
+GETPLATF_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+GETVERSI_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\patchlev.h\r
+\r
+\r
+GRAMINIT_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h\r
+\r
+\r
+GRAMMAR1_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h \\r
+       n:\python\python-1.4b2\pc\src\token.h\r
+\r
+\r
+IMAGEOP_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+IMPORT_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\graminit.h \\r
+       n:\python\python-1.4b2\pc\src\errcode.h \\r
+       n:\python\python-1.4b2\pc\src\marshal.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\eval.h \\r
+       n:\python\python-1.4b2\pc\src\osdefs.h \\r
+       n:\python\python-1.4b2\pc\src\importdl.h\r
+\r
+\r
+IMPORTDL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\osdefs.h \\r
+       n:\python\python-1.4b2\pc\src\importdl.h\r
+\r
+\r
+INTOBJEC_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+LISTOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+LONGOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\longintr.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+MAPPINGO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+MARSHAL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\longintr.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\marshal.h\r
+\r
+\r
+MATHMODU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+MD5C_DEP = n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\md5.h\r
+\r
+\r
+MD5MODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\md5.h\r
+\r
+\r
+METHODOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\token.h\r
+\r
+\r
+MODSUPPO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+MODULEOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+MYREADLI_DEP = n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h\r
+\r
+\r
+MYSTRTOU_DEP = n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h\r
+\r
+\r
+NEWMODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h\r
+\r
+\r
+NODE_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\node.h\r
+\r
+\r
+OBJECT_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+PARSER_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\parser.h \\r
+       n:\python\python-1.4b2\pc\src\errcode.h\r
+\r
+\r
+PARSETOK_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\tokenize.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h \\r
+       n:\python\python-1.4b2\pc\src\parser.h \\r
+       n:\python\python-1.4b2\pc\src\parsetok.h \\r
+       n:\python\python-1.4b2\pc\src\errcode.h\r
+\r
+\r
+POSIXMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mytime.h\r
+\r
+\r
+PYTHONRU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\grammar.h \\r
+       n:\python\python-1.4b2\pc\src\bitset.h \\r
+       n:\python\python-1.4b2\pc\src\node.h \\r
+       n:\python\python-1.4b2\pc\src\parsetok.h \\r
+       n:\python\python-1.4b2\pc\src\graminit.h \\r
+       n:\python\python-1.4b2\pc\src\errcode.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\eval.h \\r
+       n:\python\python-1.4b2\pc\src\marshal.h\r
+\r
+\r
+RANGEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+REGEXMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\regexpr.h\r
+\r
+\r
+REGEXPR_DEP = n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\regexpr.h \\r
+       n:\python\python-1.4b2\pc\src\config.h\r
+\r
+\r
+RGBIMGMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+ROTORMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+SIGNALMO_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+SOUNDEX_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+STRINGOB_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+STROPMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+STRUCTME_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h\r
+\r
+\r
+STRUCTMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+SYSMODUL_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\osdefs.h\r
+\r
+\r
+TIMEMODU_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\myselect.h \\r
+       n:\python\python-1.4b2\pc\src\mytime.h\r
+\r
+\r
+TOKENIZE_DEP = n:\python\python-1.4b2\pc\src\pgenhead.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\tokenize.h \\r
+       n:\python\python-1.4b2\pc\src\token.h \\r
+       n:\python\python-1.4b2\pc\src\errcode.h\r
+\r
+\r
+TRACEBAC_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\compile.h \\r
+       n:\python\python-1.4b2\pc\src\frameobj.h \\r
+       n:\python\python-1.4b2\pc\src\structme.h \\r
+       n:\python\python-1.4b2\pc\src\osdefs.h\r
+\r
+\r
+TUPLEOBJ_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+TYPEOBJE_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+YUVCONVE_DEP = n:\python\python-1.4b2\pc\src\yuv.h\r
+\r
+\r
+COBJECT_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+COMPLEXO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+CMATHMOD_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mymath.h\r
+\r
+\r
+ERRNOMOD_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+OPERATOR_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+all:   $(PROJ).LIB $(PROJ).BSC\r
+\r
+ABSTRACT.OBJ:  ..\SRC\ABSTRACT.C $(ABSTRACT_DEP)\r
+       $(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\ABSTRACT.C\r
+\r
+ACCELER.OBJ:   ..\SRC\ACCELER.C $(ACCELER_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ACCELER.C\r
+\r
+ACCESSOB.OBJ:  ..\SRC\ACCESSOB.C $(ACCESSOB_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ACCESSOB.C\r
+\r
+ARRAYMOD.OBJ:  ..\SRC\ARRAYMOD.C $(ARRAYMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ARRAYMOD.C\r
+\r
+AUDIOOP.OBJ:   ..\SRC\AUDIOOP.C $(AUDIOOP_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\AUDIOOP.C\r
+\r
+BINASCII.OBJ:  ..\SRC\BINASCII.C $(BINASCII_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\BINASCII.C\r
+\r
+BLTINMOD.OBJ:  ..\SRC\BLTINMOD.C $(BLTINMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\BLTINMOD.C\r
+\r
+CEVAL.OBJ:     ..\SRC\CEVAL.C $(CEVAL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CEVAL.C\r
+\r
+CGENSUPP.OBJ:  ..\SRC\CGENSUPP.C $(CGENSUPP_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CGENSUPP.C\r
+\r
+CLASSOBJ.OBJ:  ..\SRC\CLASSOBJ.C $(CLASSOBJ_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CLASSOBJ.C\r
+\r
+COMPILE.OBJ:   ..\SRC\COMPILE.C $(COMPILE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COMPILE.C\r
+\r
+CONFIG.OBJ:    ..\SRC\CONFIG.C $(CONFIG_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CONFIG.C\r
+\r
+ENVIRONM.OBJ:  ..\SRC\ENVIRONM.C $(ENVIRONM_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ENVIRONM.C\r
+\r
+ERRORS.OBJ:    ..\SRC\ERRORS.C $(ERRORS_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ERRORS.C\r
+\r
+FILEOBJE.OBJ:  ..\SRC\FILEOBJE.C $(FILEOBJE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FILEOBJE.C\r
+\r
+FLOATOBJ.OBJ:  ..\SRC\FLOATOBJ.C $(FLOATOBJ_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FLOATOBJ.C\r
+\r
+FRAMEOBJ.OBJ:  ..\SRC\FRAMEOBJ.C $(FRAMEOBJ_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FRAMEOBJ.C\r
+\r
+FROZEN.OBJ:    ..\SRC\FROZEN.C $(FROZEN_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FROZEN.C\r
+\r
+FUNCOBJE.OBJ:  ..\SRC\FUNCOBJE.C $(FUNCOBJE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\FUNCOBJE.C\r
+\r
+GETARGS.OBJ:   ..\SRC\GETARGS.C $(GETARGS_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETARGS.C\r
+\r
+GETCOMPI.OBJ:  ..\SRC\GETCOMPI.C $(GETCOMPI_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETCOMPI.C\r
+\r
+GETCOPYR.OBJ:  ..\SRC\GETCOPYR.C $(GETCOPYR_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETCOPYR.C\r
+\r
+GETMTIME.OBJ:  ..\SRC\GETMTIME.C $(GETMTIME_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETMTIME.C\r
+\r
+GETPATH.OBJ:   ..\SRC\GETPATH.C $(GETPATH_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETPATH.C\r
+\r
+GETPLATF.OBJ:  ..\SRC\GETPLATF.C $(GETPLATF_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETPLATF.C\r
+\r
+GETVERSI.OBJ:  ..\SRC\GETVERSI.C $(GETVERSI_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETVERSI.C\r
+\r
+GRAMINIT.OBJ:  ..\SRC\GRAMINIT.C $(GRAMINIT_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GRAMINIT.C\r
+\r
+GRAMMAR1.OBJ:  ..\SRC\GRAMMAR1.C $(GRAMMAR1_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GRAMMAR1.C\r
+\r
+IMAGEOP.OBJ:   ..\SRC\IMAGEOP.C $(IMAGEOP_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMAGEOP.C\r
+\r
+IMPORT.OBJ:    ..\SRC\IMPORT.C $(IMPORT_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMPORT.C\r
+\r
+IMPORTDL.OBJ:  ..\SRC\IMPORTDL.C $(IMPORTDL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\IMPORTDL.C\r
+\r
+INTOBJEC.OBJ:  ..\SRC\INTOBJEC.C $(INTOBJEC_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\INTOBJEC.C\r
+\r
+LISTOBJE.OBJ:  ..\SRC\LISTOBJE.C $(LISTOBJE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\LISTOBJE.C\r
+\r
+LONGOBJE.OBJ:  ..\SRC\LONGOBJE.C $(LONGOBJE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\LONGOBJE.C\r
+\r
+MAPPINGO.OBJ:  ..\SRC\MAPPINGO.C $(MAPPINGO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MAPPINGO.C\r
+\r
+MARSHAL.OBJ:   ..\SRC\MARSHAL.C $(MARSHAL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MARSHAL.C\r
+\r
+MATHMODU.OBJ:  ..\SRC\MATHMODU.C $(MATHMODU_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MATHMODU.C\r
+\r
+MD5C.OBJ:      ..\SRC\MD5C.C $(MD5C_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MD5C.C\r
+\r
+MD5MODUL.OBJ:  ..\SRC\MD5MODUL.C $(MD5MODUL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MD5MODUL.C\r
+\r
+METHODOB.OBJ:  ..\SRC\METHODOB.C $(METHODOB_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\METHODOB.C\r
+\r
+MODSUPPO.OBJ:  ..\SRC\MODSUPPO.C $(MODSUPPO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MODSUPPO.C\r
+\r
+MODULEOB.OBJ:  ..\SRC\MODULEOB.C $(MODULEOB_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MODULEOB.C\r
+\r
+MYREADLI.OBJ:  ..\SRC\MYREADLI.C $(MYREADLI_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MYREADLI.C\r
+\r
+MYSTRTOU.OBJ:  ..\SRC\MYSTRTOU.C $(MYSTRTOU_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\MYSTRTOU.C\r
+\r
+NEWMODUL.OBJ:  ..\SRC\NEWMODUL.C $(NEWMODUL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\NEWMODUL.C\r
+\r
+NODE.OBJ:      ..\SRC\NODE.C $(NODE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\NODE.C\r
+\r
+OBJECT.OBJ:    ..\SRC\OBJECT.C $(OBJECT_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\OBJECT.C\r
+\r
+PARSER.OBJ:    ..\SRC\PARSER.C $(PARSER_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PARSER.C\r
+\r
+PARSETOK.OBJ:  ..\SRC\PARSETOK.C $(PARSETOK_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PARSETOK.C\r
+\r
+POSIXMOD.OBJ:  ..\SRC\POSIXMOD.C $(POSIXMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\POSIXMOD.C\r
+\r
+PYTHONRU.OBJ:  ..\SRC\PYTHONRU.C $(PYTHONRU_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PYTHONRU.C\r
+\r
+RANGEOBJ.OBJ:  ..\SRC\RANGEOBJ.C $(RANGEOBJ_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\RANGEOBJ.C\r
+\r
+REGEXMOD.OBJ:  ..\SRC\REGEXMOD.C $(REGEXMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\REGEXMOD.C\r
+\r
+REGEXPR.OBJ:   ..\SRC\REGEXPR.C $(REGEXPR_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\REGEXPR.C\r
+\r
+RGBIMGMO.OBJ:  ..\SRC\RGBIMGMO.C $(RGBIMGMO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\RGBIMGMO.C\r
+\r
+ROTORMOD.OBJ:  ..\SRC\ROTORMOD.C $(ROTORMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ROTORMOD.C\r
+\r
+SIGNALMO.OBJ:  ..\SRC\SIGNALMO.C $(SIGNALMO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SIGNALMO.C\r
+\r
+SOUNDEX.OBJ:   ..\SRC\SOUNDEX.C $(SOUNDEX_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOUNDEX.C\r
+\r
+STRINGOB.OBJ:  ..\SRC\STRINGOB.C $(STRINGOB_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRINGOB.C\r
+\r
+STROPMOD.OBJ:  ..\SRC\STROPMOD.C $(STROPMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STROPMOD.C\r
+\r
+STRUCTME.OBJ:  ..\SRC\STRUCTME.C $(STRUCTME_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRUCTME.C\r
+\r
+STRUCTMO.OBJ:  ..\SRC\STRUCTMO.C $(STRUCTMO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\STRUCTMO.C\r
+\r
+SYSMODUL.OBJ:  ..\SRC\SYSMODUL.C $(SYSMODUL_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SYSMODUL.C\r
+\r
+TIMEMODU.OBJ:  ..\SRC\TIMEMODU.C $(TIMEMODU_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TIMEMODU.C\r
+\r
+TOKENIZE.OBJ:  ..\SRC\TOKENIZE.C $(TOKENIZE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TOKENIZE.C\r
+\r
+TRACEBAC.OBJ:  ..\SRC\TRACEBAC.C $(TRACEBAC_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TRACEBAC.C\r
+\r
+TUPLEOBJ.OBJ:  ..\SRC\TUPLEOBJ.C $(TUPLEOBJ_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TUPLEOBJ.C\r
+\r
+TYPEOBJE.OBJ:  ..\SRC\TYPEOBJE.C $(TYPEOBJE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\TYPEOBJE.C\r
+\r
+YUVCONVE.OBJ:  ..\SRC\YUVCONVE.C $(YUVCONVE_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\YUVCONVE.C\r
+\r
+COBJECT.OBJ:   ..\SRC\COBJECT.C $(COBJECT_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COBJECT.C\r
+\r
+COMPLEXO.OBJ:  ..\SRC\COMPLEXO.C $(COMPLEXO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\COMPLEXO.C\r
+\r
+CMATHMOD.OBJ:  ..\SRC\CMATHMOD.C $(CMATHMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\CMATHMOD.C\r
+\r
+ERRNOMOD.OBJ:  ..\SRC\ERRNOMOD.C $(ERRNOMOD_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\ERRNOMOD.C\r
+\r
+OPERATOR.OBJ:  ..\SRC\OPERATOR.C $(OPERATOR_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\OPERATOR.C\r
+\r
+$(PROJ).LIB::  ABSTRACT.OBJ ACCELER.OBJ ACCESSOB.OBJ ARRAYMOD.OBJ AUDIOOP.OBJ BINASCII.OBJ \\r
+       BLTINMOD.OBJ CEVAL.OBJ CGENSUPP.OBJ CLASSOBJ.OBJ COMPILE.OBJ CONFIG.OBJ ENVIRONM.OBJ \\r
+       ERRORS.OBJ FILEOBJE.OBJ FLOATOBJ.OBJ FRAMEOBJ.OBJ FROZEN.OBJ FUNCOBJE.OBJ GETARGS.OBJ \\r
+       GETCOMPI.OBJ GETCOPYR.OBJ GETMTIME.OBJ GETPATH.OBJ GETPLATF.OBJ GETVERSI.OBJ GRAMINIT.OBJ \\r
+       GRAMMAR1.OBJ IMAGEOP.OBJ IMPORT.OBJ IMPORTDL.OBJ INTOBJEC.OBJ LISTOBJE.OBJ LONGOBJE.OBJ \\r
+       MAPPINGO.OBJ MARSHAL.OBJ MATHMODU.OBJ MD5C.OBJ MD5MODUL.OBJ METHODOB.OBJ MODSUPPO.OBJ \\r
+       MODULEOB.OBJ MYREADLI.OBJ MYSTRTOU.OBJ NEWMODUL.OBJ NODE.OBJ OBJECT.OBJ PARSER.OBJ \\r
+       PARSETOK.OBJ POSIXMOD.OBJ PYTHONRU.OBJ RANGEOBJ.OBJ REGEXMOD.OBJ REGEXPR.OBJ RGBIMGMO.OBJ \\r
+       ROTORMOD.OBJ SIGNALMO.OBJ SOUNDEX.OBJ STRINGOB.OBJ STROPMOD.OBJ STRUCTME.OBJ STRUCTMO.OBJ \\r
+       SYSMODUL.OBJ TIMEMODU.OBJ TOKENIZE.OBJ TRACEBAC.OBJ TUPLEOBJ.OBJ TYPEOBJE.OBJ YUVCONVE.OBJ \\r
+       COBJECT.OBJ COMPLEXO.OBJ CMATHMOD.OBJ ERRNOMOD.OBJ OPERATOR.OBJ $(OBJS_EXT)\r
+       echo >NUL @<<$(PROJ).CRF\r
+$@ /PAGESIZE:64\r
+y\r
++ABSTRACT.OBJ &\r
++ACCELER.OBJ &\r
++ACCESSOB.OBJ &\r
++ARRAYMOD.OBJ &\r
++AUDIOOP.OBJ &\r
++BINASCII.OBJ &\r
++BLTINMOD.OBJ &\r
++CEVAL.OBJ &\r
++CGENSUPP.OBJ &\r
++CLASSOBJ.OBJ &\r
++COMPILE.OBJ &\r
++CONFIG.OBJ &\r
++ENVIRONM.OBJ &\r
++ERRORS.OBJ &\r
++FILEOBJE.OBJ &\r
++FLOATOBJ.OBJ &\r
++FRAMEOBJ.OBJ &\r
++FROZEN.OBJ &\r
++FUNCOBJE.OBJ &\r
++GETARGS.OBJ &\r
++GETCOMPI.OBJ &\r
++GETCOPYR.OBJ &\r
++GETMTIME.OBJ &\r
++GETPATH.OBJ &\r
++GETPLATF.OBJ &\r
++GETVERSI.OBJ &\r
++GRAMINIT.OBJ &\r
++GRAMMAR1.OBJ &\r
++IMAGEOP.OBJ &\r
++IMPORT.OBJ &\r
++IMPORTDL.OBJ &\r
++INTOBJEC.OBJ &\r
++LISTOBJE.OBJ &\r
++LONGOBJE.OBJ &\r
++MAPPINGO.OBJ &\r
++MARSHAL.OBJ &\r
++MATHMODU.OBJ &\r
++MD5C.OBJ &\r
++MD5MODUL.OBJ &\r
++METHODOB.OBJ &\r
++MODSUPPO.OBJ &\r
++MODULEOB.OBJ &\r
++MYREADLI.OBJ &\r
++MYSTRTOU.OBJ &\r
++NEWMODUL.OBJ &\r
++NODE.OBJ &\r
++OBJECT.OBJ &\r
++PARSER.OBJ &\r
++PARSETOK.OBJ &\r
++POSIXMOD.OBJ &\r
++PYTHONRU.OBJ &\r
++RANGEOBJ.OBJ &\r
++REGEXMOD.OBJ &\r
++REGEXPR.OBJ &\r
++RGBIMGMO.OBJ &\r
++ROTORMOD.OBJ &\r
++SIGNALMO.OBJ &\r
++SOUNDEX.OBJ &\r
++STRINGOB.OBJ &\r
++STROPMOD.OBJ &\r
++STRUCTME.OBJ &\r
++STRUCTMO.OBJ &\r
++SYSMODUL.OBJ &\r
++TIMEMODU.OBJ &\r
++TOKENIZE.OBJ &\r
++TRACEBAC.OBJ &\r
++TUPLEOBJ.OBJ &\r
++TYPEOBJE.OBJ &\r
++YUVCONVE.OBJ &\r
++COBJECT.OBJ &\r
++COMPLEXO.OBJ &\r
++CMATHMOD.OBJ &\r
++ERRNOMOD.OBJ &\r
++OPERATOR.OBJ &\r
+;\r
+<<\r
+       if exist $@ del $@\r
+       lib @$(PROJ).CRF\r
+\r
+$(PROJ).BSC: $(SBRS)\r
+       bscmake @<<\r
+/o$@ $(SBRS)\r
+<<\r
index 9ee63c4267bac8f4cd327af6c8ef30208ff65e37..09695cd022e2e0c575b5da482f9058d4feeda52e 100644 (file)
@@ -1,6 +1,6 @@
-[MSVC Status File]
-Version=1.00
-ProjectType=10
-External=0
-BrkptCount=0
-WatchCount=0
+[MSVC Status File]\r
+Version=1.00\r
+ProjectType=10\r
+External=0\r
+BrkptCount=0\r
+WatchCount=0\r
index f2b5d92a605cd84779f1b81baee3d1cd5414c4a8..fb871d839ffdfbf8eb5e36f2415e3fe0a0942f23 100644 (file)
-# Microsoft Visual C++ generated build script - Do not modify
-
-PROJ = PYTH_W31
-DEBUG = 0
-PROGTYPE = 3
-CALLER = 
-ARGS = 
-DLLS = 
-D_RCDEFINES = -d_DEBUG
-R_RCDEFINES = -dNDEBUG
-ORIGIN = MSVC
-ORIGIN_VER = 1.00
-PROJPATH = N:\PYTHON\PYTHO~HA.4B0\PC\VC15_W31\
-USEMFC = 0
-CC = cl
-CPP = cl
-CXX = cl
-CCREATEPCHFLAG = 
-CPPCREATEPCHFLAG = 
-CUSEPCHFLAG = 
-CPPUSEPCHFLAG = 
-FIRSTC = MAIN.C      
-FIRSTCPP =             
-RC = rc
-CFLAGS_D_WTTY = /nologo /G3 /Mq /W3 /Zi /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR /Fd"PYTH_W31.PDB"
-CFLAGS_R_WTTY = /nologo /Gs /G3 /Mq /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR 
-LFLAGS_D_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /CO /MAP 
-LFLAGS_R_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /MAP 
-LIBS_D_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock 
-LIBS_R_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock 
-RCFLAGS = /nologo
-RESFLAGS = /nologo
-RUNFLAGS = 
-DEFFILE = ..\PYTH_W31.DEF
-OBJS_EXT = 
-LIBS_EXT = 
-!if "$(DEBUG)" == "1"
-CFLAGS = $(CFLAGS_D_WTTY)
-LFLAGS = $(LFLAGS_D_WTTY)
-LIBS = $(LIBS_D_WTTY)
-MAPFILE = nul
-RCDEFINES = $(D_RCDEFINES)
-DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
-!else
-CFLAGS = $(CFLAGS_R_WTTY)
-LFLAGS = $(LFLAGS_R_WTTY)
-LIBS = $(LIBS_R_WTTY)
-MAPFILE = nul
-RCDEFINES = $(R_RCDEFINES)
-DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
-!endif
-!if [if exist MSVC.BND del MSVC.BND]
-!endif
-SBRS = MAIN.SBR \
-               GETOPT.SBR \
-               SELECTMO.SBR \
-               SOCKETMO.SBR
-
-
-MAIN_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h
-
-
-GETOPT_DEP = 
-
-SELECTMO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       c:\msvc\include\winsock.h \
-       n:\python\pytho~ha.4b0\pc\src\myselect.h \
-       n:\python\pytho~ha.4b0\pc\src\mytime.h
-
-
-SOCKETMO_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
-       n:\python\pytho~ha.4b0\pc\src\allobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\config.h \
-       n:\python\pytho~ha.4b0\pc\src\myproto.h \
-       n:\python\pytho~ha.4b0\pc\src\rename2.h \
-       n:\python\pytho~ha.4b0\pc\src\object.h \
-       n:\python\pytho~ha.4b0\pc\src\objimpl.h \
-       n:\python\pytho~ha.4b0\pc\src\pydebug.h \
-       n:\python\pytho~ha.4b0\pc\src\accessob.h \
-       n:\python\pytho~ha.4b0\pc\src\intobjec.h \
-       n:\python\pytho~ha.4b0\pc\src\longobje.h \
-       n:\python\pytho~ha.4b0\pc\src\floatobj.h \
-       n:\python\pytho~ha.4b0\pc\src\complexo.h \
-       n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
-       n:\python\pytho~ha.4b0\pc\src\stringob.h \
-       n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
-       n:\python\pytho~ha.4b0\pc\src\listobje.h \
-       n:\python\pytho~ha.4b0\pc\src\mappingo.h \
-       n:\python\pytho~ha.4b0\pc\src\methodob.h \
-       n:\python\pytho~ha.4b0\pc\src\moduleob.h \
-       n:\python\pytho~ha.4b0\pc\src\funcobje.h \
-       n:\python\pytho~ha.4b0\pc\src\classobj.h \
-       n:\python\pytho~ha.4b0\pc\src\thread.h \
-       n:\python\pytho~ha.4b0\pc\src\fileobje.h \
-       n:\python\pytho~ha.4b0\pc\src\cobject.h \
-       n:\python\pytho~ha.4b0\pc\src\tracebac.h \
-       n:\python\pytho~ha.4b0\pc\src\errors.h \
-       n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
-       n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
-       n:\python\pytho~ha.4b0\pc\src\ceval.h \
-       n:\python\pytho~ha.4b0\pc\src\pythonru.h \
-       n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
-       n:\python\pytho~ha.4b0\pc\src\intrchec.h \
-       n:\python\pytho~ha.4b0\pc\src\import.h \
-       n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
-       n:\python\pytho~ha.4b0\pc\src\abstract.h \
-       n:\python\pytho~ha.4b0\pc\src\mytime.h \
-       c:\msvc\include\winsock.h
-
-
-all:   $(PROJ).EXE $(PROJ).BSC
-
-MAIN.OBJ:      ..\SRC\MAIN.C $(MAIN_DEP)
-       $(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\MAIN.C
-
-GETOPT.OBJ:    ..\SRC\GETOPT.C $(GETOPT_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETOPT.C
-
-SELECTMO.OBJ:  ..\SRC\SELECTMO.C $(SELECTMO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SELECTMO.C
-
-SOCKETMO.OBJ:  ..\SRC\SOCKETMO.C $(SOCKETMO_DEP)
-       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOCKETMO.C
-
-
-$(PROJ).EXE::  MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ $(OBJS_EXT) $(DEFFILE)
-       echo >NUL @<<$(PROJ).CRF
-MAIN.OBJ +
-GETOPT.OBJ +
-SELECTMO.OBJ +
-SOCKETMO.OBJ +
-$(OBJS_EXT)
-$(PROJ).EXE
-$(MAPFILE)
-c:\msvc\lib\+
-c:\msvc\mfc\lib\+
-$(LIBS)
-$(DEFFILE);
-<<
-       link $(LFLAGS) @$(PROJ).CRF
-       $(RC) $(RESFLAGS) $@
-
-
-run: $(PROJ).EXE
-       $(PROJ) $(RUNFLAGS)
-
-
-$(PROJ).BSC: $(SBRS)
-       bscmake @<<
-/o$@ $(SBRS)
-<<
+# Microsoft Visual C++ generated build script - Do not modify\r
+\r
+PROJ = PYTH_W31\r
+DEBUG = 0\r
+PROGTYPE = 3\r
+CALLER = \r
+ARGS = \r
+DLLS = \r
+D_RCDEFINES = -d_DEBUG\r
+R_RCDEFINES = -dNDEBUG\r
+ORIGIN = MSVC\r
+ORIGIN_VER = 1.00\r
+PROJPATH = N:\PYTHON\PYTHON-1.4B2\PC\VC15_W31\\r
+USEMFC = 0\r
+CC = cl\r
+CPP = cl\r
+CXX = cl\r
+CCREATEPCHFLAG = \r
+CPPCREATEPCHFLAG = \r
+CUSEPCHFLAG = \r
+CPPUSEPCHFLAG = \r
+FIRSTC = MAIN.C      \r
+FIRSTCPP =             \r
+RC = rc\r
+CFLAGS_D_WTTY = /nologo /G3 /Mq /W3 /Zi /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR /Fd"PYTH_W31.PDB"\r
+CFLAGS_R_WTTY = /nologo /Gs /G3 /Mq /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR \r
+LFLAGS_D_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /CO /MAP \r
+LFLAGS_R_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /MAP \r
+LIBS_D_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock \r
+LIBS_R_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock \r
+RCFLAGS = /nologo\r
+RESFLAGS = /nologo\r
+RUNFLAGS = \r
+DEFFILE = ..\PYTH_W31.DEF\r
+OBJS_EXT = \r
+LIBS_EXT = \r
+!if "$(DEBUG)" == "1"\r
+CFLAGS = $(CFLAGS_D_WTTY)\r
+LFLAGS = $(LFLAGS_D_WTTY)\r
+LIBS = $(LIBS_D_WTTY)\r
+MAPFILE = nul\r
+RCDEFINES = $(D_RCDEFINES)\r
+DEFFILE=N:\PYTHON\PYTHON-1.4B2\PC\PYTH_W31.DEF\r
+!else\r
+CFLAGS = $(CFLAGS_R_WTTY)\r
+LFLAGS = $(LFLAGS_R_WTTY)\r
+LIBS = $(LIBS_R_WTTY)\r
+MAPFILE = nul\r
+RCDEFINES = $(R_RCDEFINES)\r
+DEFFILE=N:\PYTHON\PYTHON-1.4B2\PC\PYTH_W31.DEF\r
+!endif\r
+!if [if exist MSVC.BND del MSVC.BND]\r
+!endif\r
+SBRS = MAIN.SBR \\r
+               GETOPT.SBR \\r
+               SELECTMO.SBR \\r
+               SOCKETMO.SBR\r
+\r
+\r
+MAIN_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h\r
+\r
+\r
+GETOPT_DEP = \r
+\r
+SELECTMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       c:\msvc\include\winsock.h \\r
+       n:\python\python-1.4b2\pc\src\myselect.h \\r
+       n:\python\python-1.4b2\pc\src\mytime.h\r
+\r
+\r
+SOCKETMO_DEP = n:\python\python-1.4b2\pc\src\python.h \\r
+       n:\python\python-1.4b2\pc\src\allobjec.h \\r
+       n:\python\python-1.4b2\pc\src\config.h \\r
+       n:\python\python-1.4b2\pc\src\myproto.h \\r
+       n:\python\python-1.4b2\pc\src\rename2.h \\r
+       n:\python\python-1.4b2\pc\src\object.h \\r
+       n:\python\python-1.4b2\pc\src\objimpl.h \\r
+       n:\python\python-1.4b2\pc\src\pydebug.h \\r
+       n:\python\python-1.4b2\pc\src\accessob.h \\r
+       n:\python\python-1.4b2\pc\src\intobjec.h \\r
+       n:\python\python-1.4b2\pc\src\longobje.h \\r
+       n:\python\python-1.4b2\pc\src\floatobj.h \\r
+       n:\python\python-1.4b2\pc\src\complexo.h \\r
+       n:\python\python-1.4b2\pc\src\rangeobj.h \\r
+       n:\python\python-1.4b2\pc\src\stringob.h \\r
+       n:\python\python-1.4b2\pc\src\tupleobj.h \\r
+       n:\python\python-1.4b2\pc\src\listobje.h \\r
+       n:\python\python-1.4b2\pc\src\mappingo.h \\r
+       n:\python\python-1.4b2\pc\src\methodob.h \\r
+       n:\python\python-1.4b2\pc\src\moduleob.h \\r
+       n:\python\python-1.4b2\pc\src\funcobje.h \\r
+       n:\python\python-1.4b2\pc\src\classobj.h \\r
+       n:\python\python-1.4b2\pc\src\thread.h \\r
+       n:\python\python-1.4b2\pc\src\fileobje.h \\r
+       n:\python\python-1.4b2\pc\src\cobject.h \\r
+       n:\python\python-1.4b2\pc\src\tracebac.h \\r
+       n:\python\python-1.4b2\pc\src\errors.h \\r
+       n:\python\python-1.4b2\pc\src\mymalloc.h \\r
+       n:\python\python-1.4b2\pc\src\modsuppo.h \\r
+       n:\python\python-1.4b2\pc\src\ceval.h \\r
+       n:\python\python-1.4b2\pc\src\pythonru.h \\r
+       n:\python\python-1.4b2\pc\src\sysmodul.h \\r
+       n:\python\python-1.4b2\pc\src\intrchec.h \\r
+       n:\python\python-1.4b2\pc\src\import.h \\r
+       n:\python\python-1.4b2\pc\src\bltinmod.h \\r
+       n:\python\python-1.4b2\pc\src\abstract.h \\r
+       n:\python\python-1.4b2\pc\src\mytime.h \\r
+       c:\msvc\include\winsock.h\r
+\r
+\r
+all:   $(PROJ).EXE $(PROJ).BSC\r
+\r
+MAIN.OBJ:      ..\SRC\MAIN.C $(MAIN_DEP)\r
+       $(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\MAIN.C\r
+\r
+GETOPT.OBJ:    ..\SRC\GETOPT.C $(GETOPT_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETOPT.C\r
+\r
+SELECTMO.OBJ:  ..\SRC\SELECTMO.C $(SELECTMO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SELECTMO.C\r
+\r
+SOCKETMO.OBJ:  ..\SRC\SOCKETMO.C $(SOCKETMO_DEP)\r
+       $(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOCKETMO.C\r
+\r
+\r
+$(PROJ).EXE::  MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ $(OBJS_EXT) $(DEFFILE)\r
+       echo >NUL @<<$(PROJ).CRF\r
+MAIN.OBJ +\r
+GETOPT.OBJ +\r
+SELECTMO.OBJ +\r
+SOCKETMO.OBJ +\r
+$(OBJS_EXT)\r
+$(PROJ).EXE\r
+$(MAPFILE)\r
+c:\msvc\lib\+\r
+c:\msvc\mfc\lib\+\r
+$(LIBS)\r
+$(DEFFILE);\r
+<<\r
+       link $(LFLAGS) @$(PROJ).CRF\r
+       $(RC) $(RESFLAGS) $@\r
+\r
+\r
+run: $(PROJ).EXE\r
+       $(PROJ) $(RUNFLAGS)\r
+\r
+\r
+$(PROJ).BSC: $(SBRS)\r
+       bscmake @<<\r
+/o$@ $(SBRS)\r
+<<\r
index 9ee63c4267bac8f4cd327af6c8ef30208ff65e37..09695cd022e2e0c575b5da482f9058d4feeda52e 100644 (file)
@@ -1,6 +1,6 @@
-[MSVC Status File]
-Version=1.00
-ProjectType=10
-External=0
-BrkptCount=0
-WatchCount=0
+[MSVC Status File]\r
+Version=1.00\r
+ProjectType=10\r
+External=0\r
+BrkptCount=0\r
+WatchCount=0\r
index 9a2768c7f9214b01f0d5986234da5d495f94e318..edcc5bb86e1eacdd0a9cfbbfc5212adfab17034f 100644 (file)
-# Microsoft Developer Studio Generated NMAKE File, Format Version 4.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-!IF "$(CFG)" == ""
-CFG=vc40_nt - Win32 Debug
-!MESSAGE No configuration specified.  Defaulting to vc40_nt - Win32 Debug.
-!ENDIF 
-
-!IF "$(CFG)" != "vc40 - Win32 Release" && "$(CFG)" != "vc40 - Win32 Debug" &&\
- "$(CFG)" != "vc40_dll - Win32 Release" && "$(CFG)" != "vc40_dll - Win32 Debug"\
- && "$(CFG)" != "vc40_nt - Win32 Release" && "$(CFG)" != "vc40_nt - Win32 Debug"
-!MESSAGE Invalid configuration "$(CFG)" specified.
-!MESSAGE You can specify a configuration when running NMAKE on this makefile
-!MESSAGE by defining the macro CFG on the command line.  For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "vc40.mak" CFG="vc40_nt - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "vc40 - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "vc40 - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "vc40_dll - Win32 Release" (based on\
- "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "vc40_dll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "vc40_nt - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "vc40_nt - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-!ERROR An invalid configuration is specified.
-!ENDIF 
-
-!IF "$(OS)" == "Windows_NT"
-NULL=
-!ELSE 
-NULL=nul
-!ENDIF 
-################################################################################
-# Begin Project
-# PROP Target_Last_Scanned "vc40_nt - Win32 Debug"
-
-!IF  "$(CFG)" == "vc40 - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "pc\Release"
-# PROP Intermediate_Dir "pc\Release"
-# PROP Target_Dir ""
-OUTDIR=.\pc\Release
-INTDIR=.\pc\Release
-
-ALL : 
-
-CLEAN : 
-       -@erase 
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c
-CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\
- "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\
- /Fo"$(INTDIR)/" /c 
-CPP_OBJS=.\pc\Release/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\
- comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\
- odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no\
- /pdb:"$(OUTDIR)/vc40.pdb" /machine:I386 /out:"$(OUTDIR)/vc40.exe" 
-LINK32_OBJS=
-
-!ELSEIF  "$(CFG)" == "vc40 - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "pc\Debug"
-# PROP Intermediate_Dir "pc\Debug"
-# PROP Target_Dir ""
-OUTDIR=.\pc\Debug
-INTDIR=.\pc\Debug
-
-ALL : 
-
-CLEAN : 
-       -@erase 
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c
-CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\
- /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40.pch" /YX\
- /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c 
-CPP_OBJS=.\pc\Debug/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
-# ADD LINK32 wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
-LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\
- comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib\
- odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:yes\
- /pdb:"$(OUTDIR)/vc40.pdb" /debug /machine:I386 /out:"$(OUTDIR)/vc40.exe" 
-LINK32_OBJS=
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "vc40_dll\Release"
-# PROP BASE Intermediate_Dir "vc40_dll\Release"
-# PROP BASE Target_Dir "vc40_dll"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "vc40_dll\Release"
-# PROP Intermediate_Dir "vc40_dll\Release"
-# PROP Target_Dir "vc40_dll"
-OUTDIR=.\vc40_dll\Release
-INTDIR=.\vc40_dll\Release
-
-ALL : "$(OUTDIR)\py14an.dll"
-
-CLEAN : 
-       -@erase ".\vc40_dll\Release\py14an.dll"
-       -@erase ".\vc40_dll\Release\getcopyright.obj"
-       -@erase ".\vc40_dll\Release\getplatform.obj"
-       -@erase ".\vc40_dll\Release\parser.obj"
-       -@erase ".\vc40_dll\Release\acceler.obj"
-       -@erase ".\vc40_dll\Release\mappingobject.obj"
-       -@erase ".\vc40_dll\Release\grammar1.obj"
-       -@erase ".\vc40_dll\Release\getmtime.obj"
-       -@erase ".\vc40_dll\Release\abstract.obj"
-       -@erase ".\vc40_dll\Release\tokenizer.obj"
-       -@erase ".\vc40_dll\Release\soundex.obj"
-       -@erase ".\vc40_dll\Release\intobject.obj"
-       -@erase ".\vc40_dll\Release\config.obj"
-       -@erase ".\vc40_dll\Release\threadmodule.obj"
-       -@erase ".\vc40_dll\Release\imageop.obj"
-       -@erase ".\vc40_dll\Release\modsupport.obj"
-       -@erase ".\vc40_dll\Release\getpath.obj"
-       -@erase ".\vc40_dll\Release\listobject.obj"
-       -@erase ".\vc40_dll\Release\typeobject.obj"
-       -@erase ".\vc40_dll\Release\ceval.obj"
-       -@erase ".\vc40_dll\Release\md5module.obj"
-       -@erase ".\vc40_dll\Release\traceback.obj"
-       -@erase ".\vc40_dll\Release\rotormodule.obj"
-       -@erase ".\vc40_dll\Release\tupleobject.obj"
-       -@erase ".\vc40_dll\Release\methodobject.obj"
-       -@erase ".\vc40_dll\Release\yuvconvert.obj"
-       -@erase ".\vc40_dll\Release\thread.obj"
-       -@erase ".\vc40_dll\Release\getversion.obj"
-       -@erase ".\vc40_dll\Release\marshal.obj"
-       -@erase ".\vc40_dll\Release\pythonrun.obj"
-       -@erase ".\vc40_dll\Release\rgbimgmodule.obj"
-       -@erase ".\vc40_dll\Release\md5c.obj"
-       -@erase ".\vc40_dll\Release\mathmodule.obj"
-       -@erase ".\vc40_dll\Release\classobject.obj"
-       -@erase ".\vc40_dll\Release\signalmodule.obj"
-       -@erase ".\vc40_dll\Release\object.obj"
-       -@erase ".\vc40_dll\Release\graminit.obj"
-       -@erase ".\vc40_dll\Release\compile.obj"
-       -@erase ".\vc40_dll\Release\bltinmodule.obj"
-       -@erase ".\vc40_dll\Release\accessobject.obj"
-       -@erase ".\vc40_dll\Release\getcompiler.obj"
-       -@erase ".\vc40_dll\Release\node.obj"
-       -@erase ".\vc40_dll\Release\frameobject.obj"
-       -@erase ".\vc40_dll\Release\regexmodule.obj"
-       -@erase ".\vc40_dll\Release\environment.obj"
-       -@erase ".\vc40_dll\Release\floatobject.obj"
-       -@erase ".\vc40_dll\Release\frozen.obj"
-       -@erase ".\vc40_dll\Release\complexobject.obj"
-       -@erase ".\vc40_dll\Release\funcobject.obj"
-       -@erase ".\vc40_dll\Release\errors.obj"
-       -@erase ".\vc40_dll\Release\cmathmodule.obj"
-       -@erase ".\vc40_dll\Release\myreadline.obj"
-       -@erase ".\vc40_dll\Release\arraymodule.obj"
-       -@erase ".\vc40_dll\Release\structmodule.obj"
-       -@erase ".\vc40_dll\Release\newmodule.obj"
-       -@erase ".\vc40_dll\Release\regexpr.obj"
-       -@erase ".\vc40_dll\Release\parsetok.obj"
-       -@erase ".\vc40_dll\Release\stropmodule.obj"
-       -@erase ".\vc40_dll\Release\getargs.obj"
-       -@erase ".\vc40_dll\Release\moduleobject.obj"
-       -@erase ".\vc40_dll\Release\mystrtoul.obj"
-       -@erase ".\vc40_dll\Release\fileobject.obj"
-       -@erase ".\vc40_dll\Release\longobject.obj"
-       -@erase ".\vc40_dll\Release\rangeobject.obj"
-       -@erase ".\vc40_dll\Release\structmember.obj"
-       -@erase ".\vc40_dll\Release\audioop.obj"
-       -@erase ".\vc40_dll\Release\importdl.obj"
-       -@erase ".\vc40_dll\Release\cobject.obj"
-       -@erase ".\vc40_dll\Release\binascii.obj"
-       -@erase ".\vc40_dll\Release\cgensupport.obj"
-       -@erase ".\vc40_dll\Release\stringobject.obj"
-       -@erase ".\vc40_dll\Release\timemodule.obj"
-       -@erase ".\vc40_dll\Release\socketmodule.obj"
-       -@erase ".\vc40_dll\Release\selectmodule.obj"
-       -@erase ".\vc40_dll\Release\sysmodule.obj"
-       -@erase ".\vc40_dll\Release\import.obj"
-       -@erase ".\vc40_dll\Release\posixmodule.obj"
-       -@erase ".\vc40_dll\Release\py14an.lib"
-       -@erase ".\vc40_dll\Release\py14an.exp"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\
- "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\
- /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /c 
-CPP_OBJS=.\vc40_dll\Release/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-MTL=mktyplib.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /win32
-# ADD MTL /nologo /D "NDEBUG" /win32
-MTL_PROJ=/nologo /D "NDEBUG" /win32 
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /machine:I386 /out:"vc40_dll\Release/py14an.dll"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
- odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:no\
- /pdb:"$(OUTDIR)/py14an.pdb" /machine:I386 /def:".\PC\python.def"\
- /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" 
-DEF_FILE= \
-       ".\PC\python.def"
-LINK32_OBJS= \
-       ".\vc40_dll\Release\getcopyright.obj" \
-       ".\vc40_dll\Release\getplatform.obj" \
-       ".\vc40_dll\Release\parser.obj" \
-       ".\vc40_dll\Release\acceler.obj" \
-       ".\vc40_dll\Release\mappingobject.obj" \
-       ".\vc40_dll\Release\grammar1.obj" \
-       ".\vc40_dll\Release\getmtime.obj" \
-       ".\vc40_dll\Release\abstract.obj" \
-       ".\vc40_dll\Release\tokenizer.obj" \
-       ".\vc40_dll\Release\soundex.obj" \
-       ".\vc40_dll\Release\intobject.obj" \
-       ".\vc40_dll\Release\config.obj" \
-       ".\vc40_dll\Release\threadmodule.obj" \
-       ".\vc40_dll\Release\imageop.obj" \
-       ".\vc40_dll\Release\modsupport.obj" \
-       ".\vc40_dll\Release\getpath.obj" \
-       ".\vc40_dll\Release\listobject.obj" \
-       ".\vc40_dll\Release\typeobject.obj" \
-       ".\vc40_dll\Release\ceval.obj" \
-       ".\vc40_dll\Release\md5module.obj" \
-       ".\vc40_dll\Release\traceback.obj" \
-       ".\vc40_dll\Release\rotormodule.obj" \
-       ".\vc40_dll\Release\tupleobject.obj" \
-       ".\vc40_dll\Release\methodobject.obj" \
-       ".\vc40_dll\Release\yuvconvert.obj" \
-       ".\vc40_dll\Release\thread.obj" \
-       ".\vc40_dll\Release\getversion.obj" \
-       ".\vc40_dll\Release\marshal.obj" \
-       ".\vc40_dll\Release\pythonrun.obj" \
-       ".\vc40_dll\Release\rgbimgmodule.obj" \
-       ".\vc40_dll\Release\md5c.obj" \
-       ".\vc40_dll\Release\mathmodule.obj" \
-       ".\vc40_dll\Release\classobject.obj" \
-       ".\vc40_dll\Release\signalmodule.obj" \
-       ".\vc40_dll\Release\object.obj" \
-       ".\vc40_dll\Release\graminit.obj" \
-       ".\vc40_dll\Release\compile.obj" \
-       ".\vc40_dll\Release\bltinmodule.obj" \
-       ".\vc40_dll\Release\accessobject.obj" \
-       ".\vc40_dll\Release\getcompiler.obj" \
-       ".\vc40_dll\Release\node.obj" \
-       ".\vc40_dll\Release\frameobject.obj" \
-       ".\vc40_dll\Release\regexmodule.obj" \
-       ".\vc40_dll\Release\environment.obj" \
-       ".\vc40_dll\Release\floatobject.obj" \
-       ".\vc40_dll\Release\frozen.obj" \
-       ".\vc40_dll\Release\complexobject.obj" \
-       ".\vc40_dll\Release\funcobject.obj" \
-       ".\vc40_dll\Release\errors.obj" \
-       ".\vc40_dll\Release\cmathmodule.obj" \
-       ".\vc40_dll\Release\myreadline.obj" \
-       ".\vc40_dll\Release\arraymodule.obj" \
-       ".\vc40_dll\Release\structmodule.obj" \
-       ".\vc40_dll\Release\newmodule.obj" \
-       ".\vc40_dll\Release\regexpr.obj" \
-       ".\vc40_dll\Release\parsetok.obj" \
-       ".\vc40_dll\Release\stropmodule.obj" \
-       ".\vc40_dll\Release\getargs.obj" \
-       ".\vc40_dll\Release\moduleobject.obj" \
-       ".\vc40_dll\Release\mystrtoul.obj" \
-       ".\vc40_dll\Release\fileobject.obj" \
-       ".\vc40_dll\Release\longobject.obj" \
-       ".\vc40_dll\Release\rangeobject.obj" \
-       ".\vc40_dll\Release\structmember.obj" \
-       ".\vc40_dll\Release\audioop.obj" \
-       ".\vc40_dll\Release\importdl.obj" \
-       ".\vc40_dll\Release\cobject.obj" \
-       ".\vc40_dll\Release\binascii.obj" \
-       ".\vc40_dll\Release\cgensupport.obj" \
-       ".\vc40_dll\Release\stringobject.obj" \
-       ".\vc40_dll\Release\timemodule.obj" \
-       ".\vc40_dll\Release\socketmodule.obj" \
-       ".\vc40_dll\Release\selectmodule.obj" \
-       ".\vc40_dll\Release\sysmodule.obj" \
-       ".\vc40_dll\Release\import.obj" \
-       ".\vc40_dll\Release\posixmodule.obj"
-
-"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "vc40_dll\Debug"
-# PROP BASE Intermediate_Dir "vc40_dll\Debug"
-# PROP BASE Target_Dir "vc40_dll"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "vc40_dll\Debug"
-# PROP Intermediate_Dir "vc40_dll\Debug"
-# PROP Target_Dir "vc40_dll"
-OUTDIR=.\vc40_dll\Debug
-INTDIR=.\vc40_dll\Debug
-
-ALL : "$(OUTDIR)\py14an.dll"
-
-CLEAN : 
-       -@erase ".\vc40_dll\Debug\vc40.pdb"
-       -@erase ".\vc40_dll\Debug\vc40.idb"
-       -@erase ".\vc40_dll\Debug\py14an.dll"
-       -@erase ".\vc40_dll\Debug\timemodule.obj"
-       -@erase ".\vc40_dll\Debug\node.obj"
-       -@erase ".\vc40_dll\Debug\classobject.obj"
-       -@erase ".\vc40_dll\Debug\bltinmodule.obj"
-       -@erase ".\vc40_dll\Debug\structmodule.obj"
-       -@erase ".\vc40_dll\Debug\config.obj"
-       -@erase ".\vc40_dll\Debug\getcompiler.obj"
-       -@erase ".\vc40_dll\Debug\acceler.obj"
-       -@erase ".\vc40_dll\Debug\methodobject.obj"
-       -@erase ".\vc40_dll\Debug\parsetok.obj"
-       -@erase ".\vc40_dll\Debug\typeobject.obj"
-       -@erase ".\vc40_dll\Debug\regexpr.obj"
-       -@erase ".\vc40_dll\Debug\frameobject.obj"
-       -@erase ".\vc40_dll\Debug\thread.obj"
-       -@erase ".\vc40_dll\Debug\soundex.obj"
-       -@erase ".\vc40_dll\Debug\regexmodule.obj"
-       -@erase ".\vc40_dll\Debug\environment.obj"
-       -@erase ".\vc40_dll\Debug\floatobject.obj"
-       -@erase ".\vc40_dll\Debug\moduleobject.obj"
-       -@erase ".\vc40_dll\Debug\yuvconvert.obj"
-       -@erase ".\vc40_dll\Debug\getversion.obj"
-       -@erase ".\vc40_dll\Debug\cmathmodule.obj"
-       -@erase ".\vc40_dll\Debug\object.obj"
-       -@erase ".\vc40_dll\Debug\getpath.obj"
-       -@erase ".\vc40_dll\Debug\newmodule.obj"
-       -@erase ".\vc40_dll\Debug\importdl.obj"
-       -@erase ".\vc40_dll\Debug\structmember.obj"
-       -@erase ".\vc40_dll\Debug\arraymodule.obj"
-       -@erase ".\vc40_dll\Debug\marshal.obj"
-       -@erase ".\vc40_dll\Debug\binascii.obj"
-       -@erase ".\vc40_dll\Debug\audioop.obj"
-       -@erase ".\vc40_dll\Debug\frozen.obj"
-       -@erase ".\vc40_dll\Debug\ceval.obj"
-       -@erase ".\vc40_dll\Debug\compile.obj"
-       -@erase ".\vc40_dll\Debug\cobject.obj"
-       -@erase ".\vc40_dll\Debug\errors.obj"
-       -@erase ".\vc40_dll\Debug\md5c.obj"
-       -@erase ".\vc40_dll\Debug\funcobject.obj"
-       -@erase ".\vc40_dll\Debug\mystrtoul.obj"
-       -@erase ".\vc40_dll\Debug\stropmodule.obj"
-       -@erase ".\vc40_dll\Debug\getcopyright.obj"
-       -@erase ".\vc40_dll\Debug\getmtime.obj"
-       -@erase ".\vc40_dll\Debug\mappingobject.obj"
-       -@erase ".\vc40_dll\Debug\rangeobject.obj"
-       -@erase ".\vc40_dll\Debug\modsupport.obj"
-       -@erase ".\vc40_dll\Debug\listobject.obj"
-       -@erase ".\vc40_dll\Debug\threadmodule.obj"
-       -@erase ".\vc40_dll\Debug\mathmodule.obj"
-       -@erase ".\vc40_dll\Debug\imageop.obj"
-       -@erase ".\vc40_dll\Debug\rgbimgmodule.obj"
-       -@erase ".\vc40_dll\Debug\cgensupport.obj"
-       -@erase ".\vc40_dll\Debug\graminit.obj"
-       -@erase ".\vc40_dll\Debug\signalmodule.obj"
-       -@erase ".\vc40_dll\Debug\getplatform.obj"
-       -@erase ".\vc40_dll\Debug\tokenizer.obj"
-       -@erase ".\vc40_dll\Debug\fileobject.obj"
-       -@erase ".\vc40_dll\Debug\longobject.obj"
-       -@erase ".\vc40_dll\Debug\intobject.obj"
-       -@erase ".\vc40_dll\Debug\accessobject.obj"
-       -@erase ".\vc40_dll\Debug\getargs.obj"
-       -@erase ".\vc40_dll\Debug\stringobject.obj"
-       -@erase ".\vc40_dll\Debug\md5module.obj"
-       -@erase ".\vc40_dll\Debug\traceback.obj"
-       -@erase ".\vc40_dll\Debug\pythonrun.obj"
-       -@erase ".\vc40_dll\Debug\grammar1.obj"
-       -@erase ".\vc40_dll\Debug\abstract.obj"
-       -@erase ".\vc40_dll\Debug\myreadline.obj"
-       -@erase ".\vc40_dll\Debug\complexobject.obj"
-       -@erase ".\vc40_dll\Debug\rotormodule.obj"
-       -@erase ".\vc40_dll\Debug\tupleobject.obj"
-       -@erase ".\vc40_dll\Debug\parser.obj"
-       -@erase ".\vc40_dll\Debug\socketmodule.obj"
-       -@erase ".\vc40_dll\Debug\selectmodule.obj"
-       -@erase ".\vc40_dll\Debug\sysmodule.obj"
-       -@erase ".\vc40_dll\Debug\import.obj"
-       -@erase ".\vc40_dll\Debug\posixmodule.obj"
-       -@erase ".\vc40_dll\Debug\py14an.ilk"
-       -@erase ".\vc40_dll\Debug\py14an.lib"
-       -@erase ".\vc40_dll\Debug\py14an.exp"
-       -@erase ".\vc40_dll\Debug\py14an.pdb"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\
- /D "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /D "USE_DL_EXPORT"\
- /Fp"$(INTDIR)/vc40_dll.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c 
-CPP_OBJS=.\vc40_dll\Debug/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-MTL=mktyplib.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /win32
-# ADD MTL /nologo /D "_DEBUG" /win32
-MTL_PROJ=/nologo /D "_DEBUG" /win32 
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_dll.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"vc40_dll\Debug/py14an.dll"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
- odbccp32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:yes\
- /pdb:"$(OUTDIR)/py14an.pdb" /debug /machine:I386 /def:".\PC\python.def"\
- /out:"$(OUTDIR)/py14an.dll" /implib:"$(OUTDIR)/py14an.lib" 
-DEF_FILE= \
-       ".\PC\python.def"
-LINK32_OBJS= \
-       ".\vc40_dll\Debug\timemodule.obj" \
-       ".\vc40_dll\Debug\node.obj" \
-       ".\vc40_dll\Debug\classobject.obj" \
-       ".\vc40_dll\Debug\bltinmodule.obj" \
-       ".\vc40_dll\Debug\structmodule.obj" \
-       ".\vc40_dll\Debug\config.obj" \
-       ".\vc40_dll\Debug\getcompiler.obj" \
-       ".\vc40_dll\Debug\acceler.obj" \
-       ".\vc40_dll\Debug\methodobject.obj" \
-       ".\vc40_dll\Debug\parsetok.obj" \
-       ".\vc40_dll\Debug\typeobject.obj" \
-       ".\vc40_dll\Debug\regexpr.obj" \
-       ".\vc40_dll\Debug\frameobject.obj" \
-       ".\vc40_dll\Debug\thread.obj" \
-       ".\vc40_dll\Debug\soundex.obj" \
-       ".\vc40_dll\Debug\regexmodule.obj" \
-       ".\vc40_dll\Debug\environment.obj" \
-       ".\vc40_dll\Debug\floatobject.obj" \
-       ".\vc40_dll\Debug\moduleobject.obj" \
-       ".\vc40_dll\Debug\yuvconvert.obj" \
-       ".\vc40_dll\Debug\getversion.obj" \
-       ".\vc40_dll\Debug\cmathmodule.obj" \
-       ".\vc40_dll\Debug\object.obj" \
-       ".\vc40_dll\Debug\getpath.obj" \
-       ".\vc40_dll\Debug\newmodule.obj" \
-       ".\vc40_dll\Debug\importdl.obj" \
-       ".\vc40_dll\Debug\structmember.obj" \
-       ".\vc40_dll\Debug\arraymodule.obj" \
-       ".\vc40_dll\Debug\marshal.obj" \
-       ".\vc40_dll\Debug\binascii.obj" \
-       ".\vc40_dll\Debug\audioop.obj" \
-       ".\vc40_dll\Debug\frozen.obj" \
-       ".\vc40_dll\Debug\ceval.obj" \
-       ".\vc40_dll\Debug\compile.obj" \
-       ".\vc40_dll\Debug\cobject.obj" \
-       ".\vc40_dll\Debug\errors.obj" \
-       ".\vc40_dll\Debug\md5c.obj" \
-       ".\vc40_dll\Debug\funcobject.obj" \
-       ".\vc40_dll\Debug\mystrtoul.obj" \
-       ".\vc40_dll\Debug\stropmodule.obj" \
-       ".\vc40_dll\Debug\getcopyright.obj" \
-       ".\vc40_dll\Debug\getmtime.obj" \
-       ".\vc40_dll\Debug\mappingobject.obj" \
-       ".\vc40_dll\Debug\rangeobject.obj" \
-       ".\vc40_dll\Debug\modsupport.obj" \
-       ".\vc40_dll\Debug\listobject.obj" \
-       ".\vc40_dll\Debug\threadmodule.obj" \
-       ".\vc40_dll\Debug\mathmodule.obj" \
-       ".\vc40_dll\Debug\imageop.obj" \
-       ".\vc40_dll\Debug\rgbimgmodule.obj" \
-       ".\vc40_dll\Debug\cgensupport.obj" \
-       ".\vc40_dll\Debug\graminit.obj" \
-       ".\vc40_dll\Debug\signalmodule.obj" \
-       ".\vc40_dll\Debug\getplatform.obj" \
-       ".\vc40_dll\Debug\tokenizer.obj" \
-       ".\vc40_dll\Debug\fileobject.obj" \
-       ".\vc40_dll\Debug\longobject.obj" \
-       ".\vc40_dll\Debug\intobject.obj" \
-       ".\vc40_dll\Debug\accessobject.obj" \
-       ".\vc40_dll\Debug\getargs.obj" \
-       ".\vc40_dll\Debug\stringobject.obj" \
-       ".\vc40_dll\Debug\md5module.obj" \
-       ".\vc40_dll\Debug\traceback.obj" \
-       ".\vc40_dll\Debug\pythonrun.obj" \
-       ".\vc40_dll\Debug\grammar1.obj" \
-       ".\vc40_dll\Debug\abstract.obj" \
-       ".\vc40_dll\Debug\myreadline.obj" \
-       ".\vc40_dll\Debug\complexobject.obj" \
-       ".\vc40_dll\Debug\rotormodule.obj" \
-       ".\vc40_dll\Debug\tupleobject.obj" \
-       ".\vc40_dll\Debug\parser.obj" \
-       ".\vc40_dll\Debug\socketmodule.obj" \
-       ".\vc40_dll\Debug\selectmodule.obj" \
-       ".\vc40_dll\Debug\sysmodule.obj" \
-       ".\vc40_dll\Debug\import.obj" \
-       ".\vc40_dll\Debug\posixmodule.obj"
-
-"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "vc40_nt\Release"
-# PROP BASE Intermediate_Dir "vc40_nt\Release"
-# PROP BASE Target_Dir "vc40_nt"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "vc40_nt\Release"
-# PROP Intermediate_Dir "vc40_nt\Release"
-# PROP Target_Dir "vc40_nt"
-OUTDIR=.\vc40_nt\Release
-INTDIR=.\vc40_nt\Release
-
-ALL : "$(OUTDIR)\pyth_nt.exe"
-
-CLEAN : 
-       -@erase ".\vc40_nt\Release\pyth_nt.exe"
-       -@erase ".\vc40_nt\Release\soundex.obj"
-       -@erase ".\vc40_nt\Release\object.obj"
-       -@erase ".\vc40_nt\Release\signalmodule.obj"
-       -@erase ".\vc40_nt\Release\moduleobject.obj"
-       -@erase ".\vc40_nt\Release\mappingobject.obj"
-       -@erase ".\vc40_nt\Release\imageop.obj"
-       -@erase ".\vc40_nt\Release\rangeobject.obj"
-       -@erase ".\vc40_nt\Release\graminit.obj"
-       -@erase ".\vc40_nt\Release\tokenizer.obj"
-       -@erase ".\vc40_nt\Release\structmember.obj"
-       -@erase ".\vc40_nt\Release\intobject.obj"
-       -@erase ".\vc40_nt\Release\timemodule.obj"
-       -@erase ".\vc40_nt\Release\frozen.obj"
-       -@erase ".\vc40_nt\Release\marshal.obj"
-       -@erase ".\vc40_nt\Release\funcobject.obj"
-       -@erase ".\vc40_nt\Release\errors.obj"
-       -@erase ".\vc40_nt\Release\getargs.obj"
-       -@erase ".\vc40_nt\Release\md5module.obj"
-       -@erase ".\vc40_nt\Release\traceback.obj"
-       -@erase ".\vc40_nt\Release\cgensupport.obj"
-       -@erase ".\vc40_nt\Release\pythonrun.obj"
-       -@erase ".\vc40_nt\Release\getplatform.obj"
-       -@erase ".\vc40_nt\Release\modsupport.obj"
-       -@erase ".\vc40_nt\Release\listobject.obj"
-       -@erase ".\vc40_nt\Release\yuvconvert.obj"
-       -@erase ".\vc40_nt\Release\mathmodule.obj"
-       -@erase ".\vc40_nt\Release\rotormodule.obj"
-       -@erase ".\vc40_nt\Release\parsetok.obj"
-       -@erase ".\vc40_nt\Release\tupleobject.obj"
-       -@erase ".\vc40_nt\Release\complexobject.obj"
-       -@erase ".\vc40_nt\Release\acceler.obj"
-       -@erase ".\vc40_nt\Release\fileobject.obj"
-       -@erase ".\vc40_nt\Release\main.obj"
-       -@erase ".\vc40_nt\Release\regexpr.obj"
-       -@erase ".\vc40_nt\Release\classobject.obj"
-       -@erase ".\vc40_nt\Release\bltinmodule.obj"
-       -@erase ".\vc40_nt\Release\getcompiler.obj"
-       -@erase ".\vc40_nt\Release\accessobject.obj"
-       -@erase ".\vc40_nt\Release\getpath.obj"
-       -@erase ".\vc40_nt\Release\newmodule.obj"
-       -@erase ".\vc40_nt\Release\importdl.obj"
-       -@erase ".\vc40_nt\Release\myreadline.obj"
-       -@erase ".\vc40_nt\Release\stringobject.obj"
-       -@erase ".\vc40_nt\Release\frameobject.obj"
-       -@erase ".\vc40_nt\Release\binascii.obj"
-       -@erase ".\vc40_nt\Release\regexmodule.obj"
-       -@erase ".\vc40_nt\Release\parser.obj"
-       -@erase ".\vc40_nt\Release\environment.obj"
-       -@erase ".\vc40_nt\Release\getopt.obj"
-       -@erase ".\vc40_nt\Release\floatobject.obj"
-       -@erase ".\vc40_nt\Release\getcopyright.obj"
-       -@erase ".\vc40_nt\Release\md5c.obj"
-       -@erase ".\vc40_nt\Release\audioop.obj"
-       -@erase ".\vc40_nt\Release\cmathmodule.obj"
-       -@erase ".\vc40_nt\Release\compile.obj"
-       -@erase ".\vc40_nt\Release\cobject.obj"
-       -@erase ".\vc40_nt\Release\mystrtoul.obj"
-       -@erase ".\vc40_nt\Release\config.obj"
-       -@erase ".\vc40_nt\Release\grammar1.obj"
-       -@erase ".\vc40_nt\Release\getmtime.obj"
-       -@erase ".\vc40_nt\Release\abstract.obj"
-       -@erase ".\vc40_nt\Release\arraymodule.obj"
-       -@erase ".\vc40_nt\Release\typeobject.obj"
-       -@erase ".\vc40_nt\Release\threadmodule.obj"
-       -@erase ".\vc40_nt\Release\node.obj"
-       -@erase ".\vc40_nt\Release\structmodule.obj"
-       -@erase ".\vc40_nt\Release\thread.obj"
-       -@erase ".\vc40_nt\Release\getversion.obj"
-       -@erase ".\vc40_nt\Release\methodobject.obj"
-       -@erase ".\vc40_nt\Release\longobject.obj"
-       -@erase ".\vc40_nt\Release\rgbimgmodule.obj"
-       -@erase ".\vc40_nt\Release\ceval.obj"
-       -@erase ".\vc40_nt\Release\stropmodule.obj"
-       -@erase ".\vc40_nt\Release\sysmodule.obj"
-       -@erase ".\vc40_nt\Release\socketmodule.obj"
-       -@erase ".\vc40_nt\Release\selectmodule.obj"
-       -@erase ".\vc40_nt\Release\posixmodule.obj"
-       -@erase ".\vc40_nt\Release\import.obj"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c
-CPP_PROJ=/nologo /MT /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\
- "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\
- /Fo"$(INTDIR)/" /c 
-CPP_OBJS=.\vc40_nt\Release/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /machine:I386 /out:"vc40_nt\Release/pyth_nt.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
- odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\
- /pdb:"$(OUTDIR)/pyth_nt.pdb" /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" 
-LINK32_OBJS= \
-       ".\vc40_nt\Release\soundex.obj" \
-       ".\vc40_nt\Release\object.obj" \
-       ".\vc40_nt\Release\signalmodule.obj" \
-       ".\vc40_nt\Release\moduleobject.obj" \
-       ".\vc40_nt\Release\mappingobject.obj" \
-       ".\vc40_nt\Release\imageop.obj" \
-       ".\vc40_nt\Release\rangeobject.obj" \
-       ".\vc40_nt\Release\graminit.obj" \
-       ".\vc40_nt\Release\tokenizer.obj" \
-       ".\vc40_nt\Release\structmember.obj" \
-       ".\vc40_nt\Release\intobject.obj" \
-       ".\vc40_nt\Release\timemodule.obj" \
-       ".\vc40_nt\Release\frozen.obj" \
-       ".\vc40_nt\Release\marshal.obj" \
-       ".\vc40_nt\Release\funcobject.obj" \
-       ".\vc40_nt\Release\errors.obj" \
-       ".\vc40_nt\Release\getargs.obj" \
-       ".\vc40_nt\Release\md5module.obj" \
-       ".\vc40_nt\Release\traceback.obj" \
-       ".\vc40_nt\Release\cgensupport.obj" \
-       ".\vc40_nt\Release\pythonrun.obj" \
-       ".\vc40_nt\Release\getplatform.obj" \
-       ".\vc40_nt\Release\modsupport.obj" \
-       ".\vc40_nt\Release\listobject.obj" \
-       ".\vc40_nt\Release\yuvconvert.obj" \
-       ".\vc40_nt\Release\mathmodule.obj" \
-       ".\vc40_nt\Release\rotormodule.obj" \
-       ".\vc40_nt\Release\parsetok.obj" \
-       ".\vc40_nt\Release\tupleobject.obj" \
-       ".\vc40_nt\Release\complexobject.obj" \
-       ".\vc40_nt\Release\acceler.obj" \
-       ".\vc40_nt\Release\fileobject.obj" \
-       ".\vc40_nt\Release\main.obj" \
-       ".\vc40_nt\Release\regexpr.obj" \
-       ".\vc40_nt\Release\classobject.obj" \
-       ".\vc40_nt\Release\bltinmodule.obj" \
-       ".\vc40_nt\Release\getcompiler.obj" \
-       ".\vc40_nt\Release\accessobject.obj" \
-       ".\vc40_nt\Release\getpath.obj" \
-       ".\vc40_nt\Release\newmodule.obj" \
-       ".\vc40_nt\Release\importdl.obj" \
-       ".\vc40_nt\Release\myreadline.obj" \
-       ".\vc40_nt\Release\stringobject.obj" \
-       ".\vc40_nt\Release\frameobject.obj" \
-       ".\vc40_nt\Release\binascii.obj" \
-       ".\vc40_nt\Release\regexmodule.obj" \
-       ".\vc40_nt\Release\parser.obj" \
-       ".\vc40_nt\Release\environment.obj" \
-       ".\vc40_nt\Release\getopt.obj" \
-       ".\vc40_nt\Release\floatobject.obj" \
-       ".\vc40_nt\Release\getcopyright.obj" \
-       ".\vc40_nt\Release\md5c.obj" \
-       ".\vc40_nt\Release\audioop.obj" \
-       ".\vc40_nt\Release\cmathmodule.obj" \
-       ".\vc40_nt\Release\compile.obj" \
-       ".\vc40_nt\Release\cobject.obj" \
-       ".\vc40_nt\Release\mystrtoul.obj" \
-       ".\vc40_nt\Release\config.obj" \
-       ".\vc40_nt\Release\grammar1.obj" \
-       ".\vc40_nt\Release\getmtime.obj" \
-       ".\vc40_nt\Release\abstract.obj" \
-       ".\vc40_nt\Release\arraymodule.obj" \
-       ".\vc40_nt\Release\typeobject.obj" \
-       ".\vc40_nt\Release\threadmodule.obj" \
-       ".\vc40_nt\Release\node.obj" \
-       ".\vc40_nt\Release\structmodule.obj" \
-       ".\vc40_nt\Release\thread.obj" \
-       ".\vc40_nt\Release\getversion.obj" \
-       ".\vc40_nt\Release\methodobject.obj" \
-       ".\vc40_nt\Release\longobject.obj" \
-       ".\vc40_nt\Release\rgbimgmodule.obj" \
-       ".\vc40_nt\Release\ceval.obj" \
-       ".\vc40_nt\Release\stropmodule.obj" \
-       ".\vc40_nt\Release\sysmodule.obj" \
-       ".\vc40_nt\Release\socketmodule.obj" \
-       ".\vc40_nt\Release\selectmodule.obj" \
-       ".\vc40_nt\Release\posixmodule.obj" \
-       ".\vc40_nt\Release\import.obj"
-
-"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "vc40_nt\Debug"
-# PROP BASE Intermediate_Dir "vc40_nt\Debug"
-# PROP BASE Target_Dir "vc40_nt"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "vc40_nt\Debug"
-# PROP Intermediate_Dir "vc40_nt\Debug"
-# PROP Target_Dir "vc40_nt"
-OUTDIR=.\vc40_nt\Debug
-INTDIR=.\vc40_nt\Debug
-
-ALL : "$(OUTDIR)\pyth_nt.exe"
-
-CLEAN : 
-       -@erase ".\vc40_nt\Debug\vc40.pdb"
-       -@erase ".\vc40_nt\Debug\vc40.idb"
-       -@erase ".\vc40_nt\Debug\pyth_nt.exe"
-       -@erase ".\vc40_nt\Debug\rotormodule.obj"
-       -@erase ".\vc40_nt\Debug\tupleobject.obj"
-       -@erase ".\vc40_nt\Debug\getversion.obj"
-       -@erase ".\vc40_nt\Debug\importdl.obj"
-       -@erase ".\vc40_nt\Debug\structmember.obj"
-       -@erase ".\vc40_nt\Debug\longobject.obj"
-       -@erase ".\vc40_nt\Debug\classobject.obj"
-       -@erase ".\vc40_nt\Debug\binascii.obj"
-       -@erase ".\vc40_nt\Debug\ceval.obj"
-       -@erase ".\vc40_nt\Debug\bltinmodule.obj"
-       -@erase ".\vc40_nt\Debug\getcompiler.obj"
-       -@erase ".\vc40_nt\Debug\main.obj"
-       -@erase ".\vc40_nt\Debug\getmtime.obj"
-       -@erase ".\vc40_nt\Debug\audioop.obj"
-       -@erase ".\vc40_nt\Debug\timemodule.obj"
-       -@erase ".\vc40_nt\Debug\frameobject.obj"
-       -@erase ".\vc40_nt\Debug\compile.obj"
-       -@erase ".\vc40_nt\Debug\newmodule.obj"
-       -@erase ".\vc40_nt\Debug\complexobject.obj"
-       -@erase ".\vc40_nt\Debug\regexmodule.obj"
-       -@erase ".\vc40_nt\Debug\cobject.obj"
-       -@erase ".\vc40_nt\Debug\environment.obj"
-       -@erase ".\vc40_nt\Debug\funcobject.obj"
-       -@erase ".\vc40_nt\Debug\floatobject.obj"
-       -@erase ".\vc40_nt\Debug\intobject.obj"
-       -@erase ".\vc40_nt\Debug\cmathmodule.obj"
-       -@erase ".\vc40_nt\Debug\moduleobject.obj"
-       -@erase ".\vc40_nt\Debug\arraymodule.obj"
-       -@erase ".\vc40_nt\Debug\traceback.obj"
-       -@erase ".\vc40_nt\Debug\modsupport.obj"
-       -@erase ".\vc40_nt\Debug\listobject.obj"
-       -@erase ".\vc40_nt\Debug\mystrtoul.obj"
-       -@erase ".\vc40_nt\Debug\pythonrun.obj"
-       -@erase ".\vc40_nt\Debug\md5c.obj"
-       -@erase ".\vc40_nt\Debug\yuvconvert.obj"
-       -@erase ".\vc40_nt\Debug\soundex.obj"
-       -@erase ".\vc40_nt\Debug\graminit.obj"
-       -@erase ".\vc40_nt\Debug\mathmodule.obj"
-       -@erase ".\vc40_nt\Debug\parser.obj"
-       -@erase ".\vc40_nt\Debug\getopt.obj"
-       -@erase ".\vc40_nt\Debug\accessobject.obj"
-       -@erase ".\vc40_nt\Debug\stropmodule.obj"
-       -@erase ".\vc40_nt\Debug\imageop.obj"
-       -@erase ".\vc40_nt\Debug\getpath.obj"
-       -@erase ".\vc40_nt\Debug\node.obj"
-       -@erase ".\vc40_nt\Debug\fileobject.obj"
-       -@erase ".\vc40_nt\Debug\marshal.obj"
-       -@erase ".\vc40_nt\Debug\stringobject.obj"
-       -@erase ".\vc40_nt\Debug\config.obj"
-       -@erase ".\vc40_nt\Debug\rangeobject.obj"
-       -@erase ".\vc40_nt\Debug\getcopyright.obj"
-       -@erase ".\vc40_nt\Debug\grammar1.obj"
-       -@erase ".\vc40_nt\Debug\abstract.obj"
-       -@erase ".\vc40_nt\Debug\getargs.obj"
-       -@erase ".\vc40_nt\Debug\tokenizer.obj"
-       -@erase ".\vc40_nt\Debug\thread.obj"
-       -@erase ".\vc40_nt\Debug\myreadline.obj"
-       -@erase ".\vc40_nt\Debug\cgensupport.obj"
-       -@erase ".\vc40_nt\Debug\threadmodule.obj"
-       -@erase ".\vc40_nt\Debug\object.obj"
-       -@erase ".\vc40_nt\Debug\structmodule.obj"
-       -@erase ".\vc40_nt\Debug\mappingobject.obj"
-       -@erase ".\vc40_nt\Debug\getplatform.obj"
-       -@erase ".\vc40_nt\Debug\md5module.obj"
-       -@erase ".\vc40_nt\Debug\methodobject.obj"
-       -@erase ".\vc40_nt\Debug\parsetok.obj"
-       -@erase ".\vc40_nt\Debug\rgbimgmodule.obj"
-       -@erase ".\vc40_nt\Debug\signalmodule.obj"
-       -@erase ".\vc40_nt\Debug\frozen.obj"
-       -@erase ".\vc40_nt\Debug\acceler.obj"
-       -@erase ".\vc40_nt\Debug\typeobject.obj"
-       -@erase ".\vc40_nt\Debug\errors.obj"
-       -@erase ".\vc40_nt\Debug\regexpr.obj"
-       -@erase ".\vc40_nt\Debug\sysmodule.obj"
-       -@erase ".\vc40_nt\Debug\socketmodule.obj"
-       -@erase ".\vc40_nt\Debug\selectmodule.obj"
-       -@erase ".\vc40_nt\Debug\posixmodule.obj"
-       -@erase ".\vc40_nt\Debug\import.obj"
-       -@erase ".\vc40_nt\Debug\pyth_nt.ilk"
-       -@erase ".\vc40_nt\Debug\pyth_nt.pdb"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /YX /c
-CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /I "./PC" /I "./Include" /D "_DEBUG"\
- /D "WIN32" /D "_CONSOLE" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)/vc40_nt.pch" /YX\
- /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c 
-CPP_OBJS=.\vc40_nt\Debug/
-CPP_SBRS=
-
-.c{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_OBJS)}.obj:
-   $(CPP) $(CPP_PROJ) $<  
-
-.c{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cpp{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-.cxx{$(CPP_SBRS)}.sbr:
-   $(CPP) $(CPP_PROJ) $<  
-
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/vc40_nt.bsc" 
-BSC32_SBRS=
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /out:"vc40_nt\Debug/pyth_nt.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
- odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:yes\
- /pdb:"$(OUTDIR)/pyth_nt.pdb" /debug /machine:I386 /out:"$(OUTDIR)/pyth_nt.exe" 
-LINK32_OBJS= \
-       ".\vc40_nt\Debug\rotormodule.obj" \
-       ".\vc40_nt\Debug\tupleobject.obj" \
-       ".\vc40_nt\Debug\getversion.obj" \
-       ".\vc40_nt\Debug\importdl.obj" \
-       ".\vc40_nt\Debug\structmember.obj" \
-       ".\vc40_nt\Debug\longobject.obj" \
-       ".\vc40_nt\Debug\classobject.obj" \
-       ".\vc40_nt\Debug\binascii.obj" \
-       ".\vc40_nt\Debug\ceval.obj" \
-       ".\vc40_nt\Debug\bltinmodule.obj" \
-       ".\vc40_nt\Debug\getcompiler.obj" \
-       ".\vc40_nt\Debug\main.obj" \
-       ".\vc40_nt\Debug\getmtime.obj" \
-       ".\vc40_nt\Debug\audioop.obj" \
-       ".\vc40_nt\Debug\timemodule.obj" \
-       ".\vc40_nt\Debug\frameobject.obj" \
-       ".\vc40_nt\Debug\compile.obj" \
-       ".\vc40_nt\Debug\newmodule.obj" \
-       ".\vc40_nt\Debug\complexobject.obj" \
-       ".\vc40_nt\Debug\regexmodule.obj" \
-       ".\vc40_nt\Debug\cobject.obj" \
-       ".\vc40_nt\Debug\environment.obj" \
-       ".\vc40_nt\Debug\funcobject.obj" \
-       ".\vc40_nt\Debug\floatobject.obj" \
-       ".\vc40_nt\Debug\intobject.obj" \
-       ".\vc40_nt\Debug\cmathmodule.obj" \
-       ".\vc40_nt\Debug\moduleobject.obj" \
-       ".\vc40_nt\Debug\arraymodule.obj" \
-       ".\vc40_nt\Debug\traceback.obj" \
-       ".\vc40_nt\Debug\modsupport.obj" \
-       ".\vc40_nt\Debug\listobject.obj" \
-       ".\vc40_nt\Debug\mystrtoul.obj" \
-       ".\vc40_nt\Debug\pythonrun.obj" \
-       ".\vc40_nt\Debug\md5c.obj" \
-       ".\vc40_nt\Debug\yuvconvert.obj" \
-       ".\vc40_nt\Debug\soundex.obj" \
-       ".\vc40_nt\Debug\graminit.obj" \
-       ".\vc40_nt\Debug\mathmodule.obj" \
-       ".\vc40_nt\Debug\parser.obj" \
-       ".\vc40_nt\Debug\getopt.obj" \
-       ".\vc40_nt\Debug\accessobject.obj" \
-       ".\vc40_nt\Debug\stropmodule.obj" \
-       ".\vc40_nt\Debug\imageop.obj" \
-       ".\vc40_nt\Debug\getpath.obj" \
-       ".\vc40_nt\Debug\node.obj" \
-       ".\vc40_nt\Debug\fileobject.obj" \
-       ".\vc40_nt\Debug\marshal.obj" \
-       ".\vc40_nt\Debug\stringobject.obj" \
-       ".\vc40_nt\Debug\config.obj" \
-       ".\vc40_nt\Debug\rangeobject.obj" \
-       ".\vc40_nt\Debug\getcopyright.obj" \
-       ".\vc40_nt\Debug\grammar1.obj" \
-       ".\vc40_nt\Debug\abstract.obj" \
-       ".\vc40_nt\Debug\getargs.obj" \
-       ".\vc40_nt\Debug\tokenizer.obj" \
-       ".\vc40_nt\Debug\thread.obj" \
-       ".\vc40_nt\Debug\myreadline.obj" \
-       ".\vc40_nt\Debug\cgensupport.obj" \
-       ".\vc40_nt\Debug\threadmodule.obj" \
-       ".\vc40_nt\Debug\object.obj" \
-       ".\vc40_nt\Debug\structmodule.obj" \
-       ".\vc40_nt\Debug\mappingobject.obj" \
-       ".\vc40_nt\Debug\getplatform.obj" \
-       ".\vc40_nt\Debug\md5module.obj" \
-       ".\vc40_nt\Debug\methodobject.obj" \
-       ".\vc40_nt\Debug\parsetok.obj" \
-       ".\vc40_nt\Debug\rgbimgmodule.obj" \
-       ".\vc40_nt\Debug\signalmodule.obj" \
-       ".\vc40_nt\Debug\frozen.obj" \
-       ".\vc40_nt\Debug\acceler.obj" \
-       ".\vc40_nt\Debug\typeobject.obj" \
-       ".\vc40_nt\Debug\errors.obj" \
-       ".\vc40_nt\Debug\regexpr.obj" \
-       ".\vc40_nt\Debug\sysmodule.obj" \
-       ".\vc40_nt\Debug\socketmodule.obj" \
-       ".\vc40_nt\Debug\selectmodule.obj" \
-       ".\vc40_nt\Debug\posixmodule.obj" \
-       ".\vc40_nt\Debug\import.obj"
-
-"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ENDIF 
-
-################################################################################
-# Begin Target
-
-# Name "vc40 - Win32 Release"
-# Name "vc40 - Win32 Debug"
-
-!IF  "$(CFG)" == "vc40 - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "vc40 - Win32 Debug"
-
-!ENDIF 
-
-# End Target
-################################################################################
-# Begin Target
-
-# Name "vc40_dll - Win32 Release"
-# Name "vc40_dll - Win32 Debug"
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-!ENDIF 
-
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\longobject.c
-DEP_CPP_LONGO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\longintrepr.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\listobject.c
-DEP_CPP_LISTO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\intobject.c
-DEP_CPP_INTOB=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\importdl.c
-DEP_CPP_IMPOR=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\osdefs.h"\
-       ".\Python\importdl.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-NODEP_CPP_IMPOR=\
-       ".\Python\dl.h"\
-       ".\Python\macdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\imageop.c
-DEP_CPP_IMAGE=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\grammar1.c
-DEP_CPP_GRAMM=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\token.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\graminit.c
-DEP_CPP_GRAMI=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getversion.c
-DEP_CPP_GETVE=\
-       ".\./Include\Python.h"\
-       ".\./Include\patchlevel.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getplatform.c
-DEP_CPP_GETPL=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\getpath.c
-DEP_CPP_GETPA=\
-       ".\./Include\Python.h"\
-       ".\./Include\osdefs.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getmtime.c
-DEP_CPP_GETMT=\
-       ".\./PC\config.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getcopyright.c
-DEP_CPP_GETCO=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getcompiler.c
-DEP_CPP_GETCOM=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getargs.c
-DEP_CPP_GETAR=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\funcobject.c
-DEP_CPP_FUNCO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\frozen.c
-DEP_CPP_FROZE=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\frameobject.c
-DEP_CPP_FRAME=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\floatobject.c
-DEP_CPP_FLOAT=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\fileobject.c
-DEP_CPP_FILEO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\ceval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\errors.c
-DEP_CPP_ERROR=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\traceback.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\environment.c
-DEP_CPP_ENVIR=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\PC\config.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-DEP_CPP_CONFI=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-DEP_CPP_CONFI=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\complexobject.c
-DEP_CPP_COMPL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\compile.c
-DEP_CPP_COMPI=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\node.h"\
-       ".\./Include\token.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\cobject.c
-DEP_CPP_COBJE=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\cmathmodule.c
-DEP_CPP_CMATH=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\complexobject.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\classobject.c
-DEP_CPP_CLASS=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\cgensupport.c
-DEP_CPP_CGENS=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\cgensupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\ceval.c
-DEP_CPP_CEVAL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\eval.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\bltinmodule.c
-DEP_CPP_BLTIN=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\node.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./Include\import.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\eval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\binascii.c
-DEP_CPP_BINAS=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\audioop.c
-DEP_CPP_AUDIO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\arraymodule.c
-DEP_CPP_ARRAY=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\accessobject.c
-DEP_CPP_ACCES=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\acceler.c
-DEP_CPP_ACCEL=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\token.h"\
-       ".\Parser\parser.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\abstract.c
-DEP_CPP_ABSTR=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\yuvconvert.c
-DEP_CPP_YUVCO=\
-       ".\Modules\yuv.h"\
-       
-
-"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\typeobject.c
-DEP_CPP_TYPEO=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\tupleobject.c
-DEP_CPP_TUPLE=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\traceback.c
-DEP_CPP_TRACE=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\traceback.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\osdefs.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\tokenizer.c
-DEP_CPP_TOKEN=\
-       ".\./Include\pgenheaders.h"\
-       ".\Parser\tokenizer.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\token.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\timemodule.c
-DEP_CPP_TIMEM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./Include\myselect.h"\
-       ".\./Include\mytime.h"\
-       {$(INCLUDE)}"\sys\TIMEB.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\threadmodule.c
-DEP_CPP_THREA=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\thread.c
-DEP_CPP_THREAD=\
-       ".\./PC\config.h"\
-       ".\./Include\thread.h"\
-       ".\Python\thread_sgi.h"\
-       ".\Python\thread_solaris.h"\
-       ".\Python\thread_lwp.h"\
-       ".\Python\thread_pthread.h"\
-       ".\Python\thread_cthread.h"\
-       ".\Python\thread_nt.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-
-"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\structmodule.c
-DEP_CPP_STRUC=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\structmember.c
-DEP_CPP_STRUCT=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\stropmodule.c
-DEP_CPP_STROP=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\stringobject.c
-DEP_CPP_STRIN=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\soundex.c
-DEP_CPP_SOUND=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\signalmodule.c
-DEP_CPP_SIGNA=\
-       ".\./Include\Python.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\thread.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\rotormodule.c
-DEP_CPP_ROTOR=\
-       ".\./Include\Python.h"\
-       ".\./Include\mymath.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\rgbimgmodule.c
-DEP_CPP_RGBIM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\regexpr.c
-DEP_CPP_REGEX=\
-       ".\./Include\myproto.h"\
-       ".\Modules\regexpr.h"\
-       ".\./PC\config.h"\
-       ".\./Include\rename2.h"\
-       
-NODEP_CPP_REGEX=\
-       ".\Modules\lisp.h"\
-       ".\Modules\buffer.h"\
-       ".\Modules\syntax.h"\
-       
-
-"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\regexmodule.c
-DEP_CPP_REGEXM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\Modules\regexpr.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\rangeobject.c
-DEP_CPP_RANGE=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\pythonrun.c
-DEP_CPP_PYTHO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\errcode.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\eval.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\import.h"\
-       ".\./Include\marshal.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\intrcheck.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\Include\bitset.h"\
-       
-
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\parsetok.c
-DEP_CPP_PARSE=\
-       ".\./Include\pgenheaders.h"\
-       ".\Parser\tokenizer.h"\
-       ".\./Include\node.h"\
-       ".\./Include\grammar.h"\
-       ".\Parser\parser.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\token.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\parser.c
-DEP_CPP_PARSER=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\token.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\Parser\parser.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\object.c
-DEP_CPP_OBJEC=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\node.c
-DEP_CPP_NODE_=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\node.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\newmodule.c
-DEP_CPP_NEWMO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\marshal.c
-DEP_CPP_MARSH=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\longintrepr.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\marshal.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\mystrtoul.c
-DEP_CPP_MYSTR=\
-       ".\./PC\config.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\myreadline.c
-DEP_CPP_MYREA=\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\moduleobject.c
-DEP_CPP_MODUL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\ceval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\modsupport.c
-DEP_CPP_MODSU=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\import.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\methodobject.c
-DEP_CPP_METHO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\token.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\md5module.c
-DEP_CPP_MD5MO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\Modules\md5.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\md5c.c
-DEP_CPP_MD5C_=\
-       ".\./PC\config.h"\
-       ".\Modules\md5.h"\
-       
-
-"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\mathmodule.c
-DEP_CPP_MATHM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\mappingobject.c
-DEP_CPP_MAPPI=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\PC\python.def
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\socketmodule.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-DEP_CPP_SOCKE=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SOCKE=\
-       ".\Modules\Python.h"\
-       ".\Modules\mytime.h"\
-       
-
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-DEP_CPP_SOCKE=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SOCKE=\
-       ".\Modules\Python.h"\
-       ".\Modules\mytime.h"\
-       
-
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\selectmodule.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-DEP_CPP_SELEC=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SELEC=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\myselect.h"\
-       
-
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-DEP_CPP_SELEC=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SELEC=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\myselect.h"\
-       
-
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\sysmodule.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-NODEP_CPP_SYSMO=\
-       ".\Python\allobjects.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\import.h"\
-       ".\Python\modsupport.h"\
-       ".\Python\osdefs.h"\
-       
-
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-NODEP_CPP_SYSMO=\
-       ".\Python\allobjects.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\import.h"\
-       ".\Python\modsupport.h"\
-       ".\Python\osdefs.h"\
-       
-
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\import.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-DEP_CPP_IMPORT=\
-       ".\Python\importdl.h"\
-       
-NODEP_CPP_IMPORT=\
-       ".\Python\allobjects.h"\
-       ".\Python\node.h"\
-       ".\Python\token.h"\
-       ".\Python\graminit.h"\
-       ".\Python\import.h"\
-       ".\Python\errcode.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\bltinmodule.h"\
-       ".\Python\pythonrun.h"\
-       ".\Python\marshal.h"\
-       ".\Python\compile.h"\
-       ".\Python\eval.h"\
-       ".\Python\osdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-DEP_CPP_IMPORT=\
-       ".\Python\importdl.h"\
-       
-NODEP_CPP_IMPORT=\
-       ".\Python\allobjects.h"\
-       ".\Python\node.h"\
-       ".\Python\token.h"\
-       ".\Python\graminit.h"\
-       ".\Python\import.h"\
-       ".\Python\errcode.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\bltinmodule.h"\
-       ".\Python\pythonrun.h"\
-       ".\Python\marshal.h"\
-       ".\Python\compile.h"\
-       ".\Python\eval.h"\
-       ".\Python\osdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\posixmodule.c
-
-!IF  "$(CFG)" == "vc40_dll - Win32 Release"
-
-DEP_CPP_POSIX=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       {$(INCLUDE)}"\sys\UTIME.H"\
-       
-NODEP_CPP_POSIX=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\mytime.h"\
-       
-
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"
-
-DEP_CPP_POSIX=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       {$(INCLUDE)}"\sys\UTIME.H"\
-       
-NODEP_CPP_POSIX=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\mytime.h"\
-       
-
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "vc40_nt - Win32 Release"
-# Name "vc40_nt - Win32 Debug"
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-!ENDIF 
-
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\longobject.c
-DEP_CPP_LONGO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\longintrepr.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\listobject.c
-DEP_CPP_LISTO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\intobject.c
-DEP_CPP_INTOB=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\importdl.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_IMPOR=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\osdefs.h"\
-       ".\Python\importdl.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-NODEP_CPP_IMPOR=\
-       ".\Python\dl.h"\
-       ".\Python\macdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_IMPOR=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\osdefs.h"\
-       ".\Python\importdl.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-NODEP_CPP_IMPOR=\
-       ".\Python\dl.h"\
-       ".\Python\macdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\imageop.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_IMAGE=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_IMAGE=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\grammar1.c
-DEP_CPP_GRAMM=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\token.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\graminit.c
-DEP_CPP_GRAMI=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getversion.c
-DEP_CPP_GETVE=\
-       ".\./Include\Python.h"\
-       ".\./Include\patchlevel.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getplatform.c
-DEP_CPP_GETPL=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\getpath.c
-DEP_CPP_GETPA=\
-       ".\./Include\Python.h"\
-       ".\./Include\osdefs.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getmtime.c
-DEP_CPP_GETMT=\
-       ".\./PC\config.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getcopyright.c
-DEP_CPP_GETCO=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getcompiler.c
-DEP_CPP_GETCOM=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getargs.c
-DEP_CPP_GETAR=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\funcobject.c
-DEP_CPP_FUNCO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\frozen.c
-DEP_CPP_FROZE=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\frameobject.c
-DEP_CPP_FRAME=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\floatobject.c
-DEP_CPP_FLOAT=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\fileobject.c
-DEP_CPP_FILEO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\ceval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\errors.c
-DEP_CPP_ERROR=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\traceback.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\environment.c
-DEP_CPP_ENVIR=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\PC\config.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_CONFI=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_CONFI=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\complexobject.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_COMPL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_COMPL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\compile.c
-DEP_CPP_COMPI=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\node.h"\
-       ".\./Include\token.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\cobject.c
-DEP_CPP_COBJE=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\cmathmodule.c
-DEP_CPP_CMATH=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\complexobject.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\classobject.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_CLASS=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_CLASS=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\cgensupport.c
-DEP_CPP_CGENS=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\cgensupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\ceval.c
-DEP_CPP_CEVAL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\eval.h"\
-       ".\./Include\opcode.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\bltinmodule.c
-DEP_CPP_BLTIN=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\node.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./Include\import.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\eval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\binascii.c
-DEP_CPP_BINAS=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\audioop.c
-DEP_CPP_AUDIO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\arraymodule.c
-DEP_CPP_ARRAY=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\accessobject.c
-DEP_CPP_ACCES=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\acceler.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_ACCEL=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\token.h"\
-       ".\Parser\parser.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_ACCEL=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\token.h"\
-       ".\Parser\parser.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\abstract.c
-DEP_CPP_ABSTR=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\yuvconvert.c
-DEP_CPP_YUVCO=\
-       ".\Modules\yuv.h"\
-       
-
-"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\typeobject.c
-DEP_CPP_TYPEO=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\tupleobject.c
-DEP_CPP_TUPLE=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\traceback.c
-DEP_CPP_TRACE=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\frameobject.h"\
-       ".\./Include\traceback.h"\
-       ".\./Include\structmember.h"\
-       ".\./Include\osdefs.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\tokenizer.c
-DEP_CPP_TOKEN=\
-       ".\./Include\pgenheaders.h"\
-       ".\Parser\tokenizer.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\token.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\timemodule.c
-DEP_CPP_TIMEM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       ".\./Include\myselect.h"\
-       ".\./Include\mytime.h"\
-       {$(INCLUDE)}"\sys\TIMEB.H"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\threadmodule.c
-DEP_CPP_THREA=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\thread.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_THREAD=\
-       ".\./PC\config.h"\
-       ".\./Include\thread.h"\
-       ".\Python\thread_sgi.h"\
-       ".\Python\thread_solaris.h"\
-       ".\Python\thread_lwp.h"\
-       ".\Python\thread_pthread.h"\
-       ".\Python\thread_cthread.h"\
-       ".\Python\thread_nt.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-
-"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_THREAD=\
-       ".\./PC\config.h"\
-       ".\./Include\thread.h"\
-       ".\Python\thread_sgi.h"\
-       ".\Python\thread_solaris.h"\
-       ".\Python\thread_lwp.h"\
-       ".\Python\thread_pthread.h"\
-       ".\Python\thread_cthread.h"\
-       ".\Python\thread_nt.h"\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-
-"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\structmodule.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_STRUC=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_STRUC=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\structmember.c
-DEP_CPP_STRUCT=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\structmember.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\stropmodule.c
-DEP_CPP_STROP=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\stringobject.c
-DEP_CPP_STRIN=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\soundex.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_SOUND=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_SOUND=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\signalmodule.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_SIGNA=\
-       ".\./Include\Python.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\thread.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_SIGNA=\
-       ".\./Include\Python.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\thread.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\rotormodule.c
-DEP_CPP_ROTOR=\
-       ".\./Include\Python.h"\
-       ".\./Include\mymath.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\rgbimgmodule.c
-DEP_CPP_RGBIM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\regexpr.c
-DEP_CPP_REGEX=\
-       ".\./Include\myproto.h"\
-       ".\Modules\regexpr.h"\
-       ".\./PC\config.h"\
-       ".\./Include\rename2.h"\
-       
-NODEP_CPP_REGEX=\
-       ".\Modules\lisp.h"\
-       ".\Modules\buffer.h"\
-       ".\Modules\syntax.h"\
-       
-
-"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\regexmodule.c
-DEP_CPP_REGEXM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\Modules\regexpr.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\rangeobject.c
-DEP_CPP_RANGE=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\pythonrun.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_PYTHO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\errcode.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\eval.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\import.h"\
-       ".\./Include\marshal.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\intrcheck.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\Include\bitset.h"\
-       
-
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_PYTHO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\graminit.h"\
-       ".\./Include\errcode.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\eval.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\import.h"\
-       ".\./Include\marshal.h"\
-       ".\./Include\thread.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\intrcheck.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\Include\bitset.h"\
-       
-
-"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\parsetok.c
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-DEP_CPP_PARSE=\
-       ".\./Include\pgenheaders.h"\
-       ".\Parser\tokenizer.h"\
-       ".\./Include\node.h"\
-       ".\./Include\grammar.h"\
-       ".\Parser\parser.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\token.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-DEP_CPP_PARSE=\
-       ".\./Include\pgenheaders.h"\
-       ".\Parser\tokenizer.h"\
-       ".\./Include\node.h"\
-       ".\./Include\grammar.h"\
-       ".\Parser\parser.h"\
-       ".\./Include\parsetok.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\token.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\parser.c
-DEP_CPP_PARSER=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\token.h"\
-       ".\./Include\grammar.h"\
-       ".\./Include\node.h"\
-       ".\Parser\parser.h"\
-       ".\./Include\errcode.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\bitset.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\object.c
-DEP_CPP_OBJEC=\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\node.c
-DEP_CPP_NODE_=\
-       ".\./Include\pgenheaders.h"\
-       ".\./Include\node.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\Include\pydebug.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\newmodule.c
-DEP_CPP_NEWMO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\compile.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\mystrtoul.c
-DEP_CPP_MYSTR=\
-       ".\./PC\config.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Parser\myreadline.c
-DEP_CPP_MYREA=\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\rename2.h"\
-       
-
-"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\moduleobject.c
-DEP_CPP_MODUL=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\ceval.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\modsupport.c
-DEP_CPP_MODSU=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\import.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\methodobject.c
-DEP_CPP_METHO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\token.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\md5module.c
-DEP_CPP_MD5MO=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\Modules\md5.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\md5c.c
-DEP_CPP_MD5C_=\
-       ".\./PC\config.h"\
-       ".\Modules\md5.h"\
-       
-
-"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\mathmodule.c
-DEP_CPP_MATHM=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\mymath.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\marshal.c
-DEP_CPP_MARSH=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\longintrepr.h"\
-       ".\./Include\compile.h"\
-       ".\./Include\marshal.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Objects\mappingobject.c
-DEP_CPP_MAPPI=\
-       ".\./Include\allobjects.h"\
-       ".\./Include\modsupport.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\main.c
-DEP_CPP_MAIN_=\
-       ".\./Include\Python.h"\
-       ".\./Include\allobjects.h"\
-       ".\./PC\config.h"\
-       ".\./Include\myproto.h"\
-       ".\Include\object.h"\
-       ".\Include\objimpl.h"\
-       ".\Include\pydebug.h"\
-       ".\Include\accessobject.h"\
-       ".\Include\intobject.h"\
-       ".\Include\longobject.h"\
-       ".\Include\floatobject.h"\
-       ".\./Include\complexobject.h"\
-       ".\Include\rangeobject.h"\
-       ".\Include\stringobject.h"\
-       ".\Include\tupleobject.h"\
-       ".\Include\listobject.h"\
-       ".\Include\mappingobject.h"\
-       ".\Include\methodobject.h"\
-       ".\Include\moduleobject.h"\
-       ".\Include\funcobject.h"\
-       ".\Include\classobject.h"\
-       ".\Include\fileobject.h"\
-       ".\Include\cobject.h"\
-       ".\./Include\traceback.h"\
-       ".\Include\errors.h"\
-       ".\./Include\mymalloc.h"\
-       ".\./Include\modsupport.h"\
-       ".\./Include\ceval.h"\
-       ".\./Include\pythonrun.h"\
-       ".\./Include\sysmodule.h"\
-       ".\./Include\intrcheck.h"\
-       ".\./Include\import.h"\
-       ".\./Include\bltinmodule.h"\
-       ".\Include\abstract.h"\
-       ".\./Include\rename2.h"\
-       ".\./Include\thread.h"\
-       
-
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\getopt.c
-
-"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\sysmodule.c
-NODEP_CPP_SYSMO=\
-       ".\Python\allobjects.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\import.h"\
-       ".\Python\modsupport.h"\
-       ".\Python\osdefs.h"\
-       
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-
-"$(INTDIR)\sysmodule.obj" : $(SOURCE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\socketmodule.c
-DEP_CPP_SOCKE=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SOCKE=\
-       ".\Modules\Python.h"\
-       ".\Modules\mytime.h"\
-       
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-
-"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\selectmodule.c
-DEP_CPP_SELEC=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       
-NODEP_CPP_SELEC=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\myselect.h"\
-       
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-
-"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Modules\posixmodule.c
-DEP_CPP_POSIX=\
-       {$(INCLUDE)}"\sys\TYPES.H"\
-       {$(INCLUDE)}"\sys\STAT.H"\
-       {$(INCLUDE)}"\sys\UTIME.H"\
-       
-NODEP_CPP_POSIX=\
-       ".\Modules\allobjects.h"\
-       ".\Modules\modsupport.h"\
-       ".\Modules\ceval.h"\
-       ".\Modules\mytime.h"\
-       
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-
-"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\Python\import.c
-DEP_CPP_IMPORT=\
-       ".\Python\importdl.h"\
-       
-NODEP_CPP_IMPORT=\
-       ".\Python\allobjects.h"\
-       ".\Python\node.h"\
-       ".\Python\token.h"\
-       ".\Python\graminit.h"\
-       ".\Python\import.h"\
-       ".\Python\errcode.h"\
-       ".\Python\sysmodule.h"\
-       ".\Python\bltinmodule.h"\
-       ".\Python\pythonrun.h"\
-       ".\Python\marshal.h"\
-       ".\Python\compile.h"\
-       ".\Python\eval.h"\
-       ".\Python\osdefs.h"\
-       ".\Python\macglue.h"\
-       
-
-!IF  "$(CFG)" == "vc40_nt - Win32 Release"
-
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"
-
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"
-   $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF 
-
-# End Source File
-# End Target
-# End Project
-################################################################################
+# Microsoft Developer Studio Generated NMAKE File, Format Version 4.00\r
+# ** DO NOT EDIT **\r
+\r
+# TARGTYPE "Win32 (x86) Console Application" 0x0103\r
+# 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
+!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
+!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 \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
+ "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
+\r
+!IF "$(OS)" == "Windows_NT"\r
+NULL=\r
+!ELSE \r
+NULL=nul\r
+!ENDIF \r
+################################################################################\r
+# Begin Project\r
+# PROP Target_Last_Scanned "vc40_nt - Win32 Debug"\r
+\r
+!IF  "$(CFG)" == "vc40 - 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 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
+\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
+\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 /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\classobject.obj"\r
+       -@erase ".\vc40_dll\Release\stropmodule.obj"\r
+       -@erase ".\vc40_dll\Release\getargs.obj"\r
+       -@erase ".\vc40_dll\Release\bltinmodule.obj"\r
+       -@erase ".\vc40_dll\Release\structmember.obj"\r
+       -@erase ".\vc40_dll\Release\rangeobject.obj"\r
+       -@erase ".\vc40_dll\Release\socketmodule.obj"\r
+       -@erase ".\vc40_dll\Release\audioop.obj"\r
+       -@erase ".\vc40_dll\Release\frameobject.obj"\r
+       -@erase ".\vc40_dll\Release\regexmodule.obj"\r
+       -@erase ".\vc40_dll\Release\funcobject.obj"\r
+       -@erase ".\vc40_dll\Release\getmtime.obj"\r
+       -@erase ".\vc40_dll\Release\operator.obj"\r
+       -@erase ".\vc40_dll\Release\stringobject.obj"\r
+       -@erase ".\vc40_dll\Release\posixmodule.obj"\r
+       -@erase ".\vc40_dll\Release\myreadline.obj"\r
+       -@erase ".\vc40_dll\Release\cmathmodule.obj"\r
+       -@erase ".\vc40_dll\Release\getcopyright.obj"\r
+       -@erase ".\vc40_dll\Release\cgensupport.obj"\r
+       -@erase ".\vc40_dll\Release\parsetok.obj"\r
+       -@erase ".\vc40_dll\Release\newmodule.obj"\r
+       -@erase ".\vc40_dll\Release\mappingobject.obj"\r
+       -@erase ".\vc40_dll\Release\acceler.obj"\r
+       -@erase ".\vc40_dll\Release\modsupport.obj"\r
+       -@erase ".\vc40_dll\Release\threadmodule.obj"\r
+       -@erase ".\vc40_dll\Release\soundex.obj"\r
+       -@erase ".\vc40_dll\Release\parser.obj"\r
+       -@erase ".\vc40_dll\Release\mathmodule.obj"\r
+       -@erase ".\vc40_dll\Release\importdl.obj"\r
+       -@erase ".\vc40_dll\Release\methodobject.obj"\r
+       -@erase ".\vc40_dll\Release\getpath.obj"\r
+       -@erase ".\vc40_dll\Release\mystrtoul.obj"\r
+       -@erase ".\vc40_dll\Release\rgbimgmodule.obj"\r
+       -@erase ".\vc40_dll\Release\rotormodule.obj"\r
+       -@erase ".\vc40_dll\Release\binascii.obj"\r
+       -@erase ".\vc40_dll\Release\node.obj"\r
+       -@erase ".\vc40_dll\Release\config.obj"\r
+       -@erase ".\vc40_dll\Release\selectmodule.obj"\r
+       -@erase ".\vc40_dll\Release\signalmodule.obj"\r
+       -@erase ".\vc40_dll\Release\marshal.obj"\r
+       -@erase ".\vc40_dll\Release\fileobject.obj"\r
+       -@erase ".\vc40_dll\Release\longobject.obj"\r
+       -@erase ".\vc40_dll\Release\accessobject.obj"\r
+       -@erase ".\vc40_dll\Release\ceval.obj"\r
+       -@erase ".\vc40_dll\Release\compile.obj"\r
+       -@erase ".\vc40_dll\Release\thread.obj"\r
+       -@erase ".\vc40_dll\Release\cobject.obj"\r
+       -@erase ".\vc40_dll\Release\getcompiler.obj"\r
+       -@erase ".\vc40_dll\Release\grammar1.obj"\r
+       -@erase ".\vc40_dll\Release\abstract.obj"\r
+       -@erase ".\vc40_dll\Release\object.obj"\r
+       -@erase ".\vc40_dll\Release\errnomodule.obj"\r
+       -@erase ".\vc40_dll\Release\timemodule.obj"\r
+       -@erase ".\vc40_dll\Release\complexobject.obj"\r
+       -@erase ".\vc40_dll\Release\environment.obj"\r
+       -@erase ".\vc40_dll\Release\floatobject.obj"\r
+       -@erase ".\vc40_dll\Release\getplatform.obj"\r
+       -@erase ".\vc40_dll\Release\tokenizer.obj"\r
+       -@erase ".\vc40_dll\Release\intobject.obj"\r
+       -@erase ".\vc40_dll\Release\import.obj"\r
+       -@erase ".\vc40_dll\Release\frozen.obj"\r
+       -@erase ".\vc40_dll\Release\structmodule.obj"\r
+       -@erase ".\vc40_dll\Release\errors.obj"\r
+       -@erase ".\vc40_dll\Release\arraymodule.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\listobject.obj"\r
+       -@erase ".\vc40_dll\Release\typeobject.obj"\r
+       -@erase ".\vc40_dll\Release\graminit.obj"\r
+       -@erase ".\vc40_dll\Release\imageop.obj"\r
+       -@erase ".\vc40_dll\Release\regexpr.obj"\r
+       -@erase ".\vc40_dll\Release\pythonrun.obj"\r
+       -@erase ".\vc40_dll\Release\md5c.obj"\r
+       -@erase ".\vc40_dll\Release\tupleobject.obj"\r
+       -@erase ".\vc40_dll\Release\yuvconvert.obj"\r
+       -@erase ".\vc40_dll\Release\getversion.obj"\r
+       -@erase ".\vc40_dll\Release\moduleobject.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
+\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
+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 "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 "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_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 /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
+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
+       "$(INTDIR)/classobject.obj" \\r
+       "$(INTDIR)/stropmodule.obj" \\r
+       "$(INTDIR)/getargs.obj" \\r
+       "$(INTDIR)/bltinmodule.obj" \\r
+       "$(INTDIR)/structmember.obj" \\r
+       "$(INTDIR)/rangeobject.obj" \\r
+       "$(INTDIR)/socketmodule.obj" \\r
+       "$(INTDIR)/audioop.obj" \\r
+       "$(INTDIR)/frameobject.obj" \\r
+       "$(INTDIR)/regexmodule.obj" \\r
+       "$(INTDIR)/funcobject.obj" \\r
+       "$(INTDIR)/getmtime.obj" \\r
+       "$(INTDIR)/operator.obj" \\r
+       "$(INTDIR)/stringobject.obj" \\r
+       "$(INTDIR)/posixmodule.obj" \\r
+       "$(INTDIR)/myreadline.obj" \\r
+       "$(INTDIR)/cmathmodule.obj" \\r
+       "$(INTDIR)/getcopyright.obj" \\r
+       "$(INTDIR)/cgensupport.obj" \\r
+       "$(INTDIR)/parsetok.obj" \\r
+       "$(INTDIR)/newmodule.obj" \\r
+       "$(INTDIR)/mappingobject.obj" \\r
+       "$(INTDIR)/acceler.obj" \\r
+       "$(INTDIR)/modsupport.obj" \\r
+       "$(INTDIR)/threadmodule.obj" \\r
+       "$(INTDIR)/soundex.obj" \\r
+       "$(INTDIR)/parser.obj" \\r
+       "$(INTDIR)/mathmodule.obj" \\r
+       "$(INTDIR)/importdl.obj" \\r
+       "$(INTDIR)/methodobject.obj" \\r
+       "$(INTDIR)/getpath.obj" \\r
+       "$(INTDIR)/mystrtoul.obj" \\r
+       "$(INTDIR)/rgbimgmodule.obj" \\r
+       "$(INTDIR)/rotormodule.obj" \\r
+       "$(INTDIR)/binascii.obj" \\r
+       "$(INTDIR)/node.obj" \\r
+       "$(INTDIR)/config.obj" \\r
+       "$(INTDIR)/selectmodule.obj" \\r
+       "$(INTDIR)/signalmodule.obj" \\r
+       "$(INTDIR)/marshal.obj" \\r
+       "$(INTDIR)/fileobject.obj" \\r
+       "$(INTDIR)/longobject.obj" \\r
+       "$(INTDIR)/accessobject.obj" \\r
+       "$(INTDIR)/ceval.obj" \\r
+       "$(INTDIR)/compile.obj" \\r
+       "$(INTDIR)/thread.obj" \\r
+       "$(INTDIR)/cobject.obj" \\r
+       "$(INTDIR)/getcompiler.obj" \\r
+       "$(INTDIR)/grammar1.obj" \\r
+       "$(INTDIR)/abstract.obj" \\r
+       "$(INTDIR)/object.obj" \\r
+       "$(INTDIR)/errnomodule.obj" \\r
+       "$(INTDIR)/timemodule.obj" \\r
+       "$(INTDIR)/complexobject.obj" \\r
+       "$(INTDIR)/environment.obj" \\r
+       "$(INTDIR)/floatobject.obj" \\r
+       "$(INTDIR)/getplatform.obj" \\r
+       "$(INTDIR)/tokenizer.obj" \\r
+       "$(INTDIR)/intobject.obj" \\r
+       "$(INTDIR)/import.obj" \\r
+       "$(INTDIR)/frozen.obj" \\r
+       "$(INTDIR)/structmodule.obj" \\r
+       "$(INTDIR)/errors.obj" \\r
+       "$(INTDIR)/arraymodule.obj" \\r
+       "$(INTDIR)/md5module.obj" \\r
+       "$(INTDIR)/traceback.obj" \\r
+       "$(INTDIR)/sysmodule.obj" \\r
+       "$(INTDIR)/listobject.obj" \\r
+       "$(INTDIR)/typeobject.obj" \\r
+       "$(INTDIR)/graminit.obj" \\r
+       "$(INTDIR)/imageop.obj" \\r
+       "$(INTDIR)/regexpr.obj" \\r
+       "$(INTDIR)/pythonrun.obj" \\r
+       "$(INTDIR)/md5c.obj" \\r
+       "$(INTDIR)/tupleobject.obj" \\r
+       "$(INTDIR)/yuvconvert.obj" \\r
+       "$(INTDIR)/getversion.obj" \\r
+       "$(INTDIR)/moduleobject.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\node.obj"\r
+       -@erase ".\vc40_dll\Debug\arraymodule.obj"\r
+       -@erase ".\vc40_dll\Debug\funcobject.obj"\r
+       -@erase ".\vc40_dll\Debug\structmember.obj"\r
+       -@erase ".\vc40_dll\Debug\soundex.obj"\r
+       -@erase ".\vc40_dll\Debug\tokenizer.obj"\r
+       -@erase ".\vc40_dll\Debug\myreadline.obj"\r
+       -@erase ".\vc40_dll\Debug\intobject.obj"\r
+       -@erase ".\vc40_dll\Debug\tupleobject.obj"\r
+       -@erase ".\vc40_dll\Debug\frozen.obj"\r
+       -@erase ".\vc40_dll\Debug\socketmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\imageop.obj"\r
+       -@erase ".\vc40_dll\Debug\graminit.obj"\r
+       -@erase ".\vc40_dll\Debug\stropmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\modsupport.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\bltinmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\getcopyright.obj"\r
+       -@erase ".\vc40_dll\Debug\pythonrun.obj"\r
+       -@erase ".\vc40_dll\Debug\ceval.obj"\r
+       -@erase ".\vc40_dll\Debug\config.obj"\r
+       -@erase ".\vc40_dll\Debug\rangeobject.obj"\r
+       -@erase ".\vc40_dll\Debug\mappingobject.obj"\r
+       -@erase ".\vc40_dll\Debug\getargs.obj"\r
+       -@erase ".\vc40_dll\Debug\frameobject.obj"\r
+       -@erase ".\vc40_dll\Debug\abstract.obj"\r
+       -@erase ".\vc40_dll\Debug\regexmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\threadmodule.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\cmathmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\cgensupport.obj"\r
+       -@erase ".\vc40_dll\Debug\getplatform.obj"\r
+       -@erase ".\vc40_dll\Debug\selectmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\signalmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\parsetok.obj"\r
+       -@erase ".\vc40_dll\Debug\accessobject.obj"\r
+       -@erase ".\vc40_dll\Debug\import.obj"\r
+       -@erase ".\vc40_dll\Debug\acceler.obj"\r
+       -@erase ".\vc40_dll\Debug\errors.obj"\r
+       -@erase ".\vc40_dll\Debug\timemodule.obj"\r
+       -@erase ".\vc40_dll\Debug\regexpr.obj"\r
+       -@erase ".\vc40_dll\Debug\newmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\stringobject.obj"\r
+       -@erase ".\vc40_dll\Debug\rotormodule.obj"\r
+       -@erase ".\vc40_dll\Debug\parser.obj"\r
+       -@erase ".\vc40_dll\Debug\complexobject.obj"\r
+       -@erase ".\vc40_dll\Debug\getpath.obj"\r
+       -@erase ".\vc40_dll\Debug\importdl.obj"\r
+       -@erase ".\vc40_dll\Debug\classobject.obj"\r
+       -@erase ".\vc40_dll\Debug\listobject.obj"\r
+       -@erase ".\vc40_dll\Debug\typeobject.obj"\r
+       -@erase ".\vc40_dll\Debug\binascii.obj"\r
+       -@erase ".\vc40_dll\Debug\mystrtoul.obj"\r
+       -@erase ".\vc40_dll\Debug\getcompiler.obj"\r
+       -@erase ".\vc40_dll\Debug\yuvconvert.obj"\r
+       -@erase ".\vc40_dll\Debug\getversion.obj"\r
+       -@erase ".\vc40_dll\Debug\structmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\audioop.obj"\r
+       -@erase ".\vc40_dll\Debug\mathmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\compile.obj"\r
+       -@erase ".\vc40_dll\Debug\errnomodule.obj"\r
+       -@erase ".\vc40_dll\Debug\cobject.obj"\r
+       -@erase ".\vc40_dll\Debug\methodobject.obj"\r
+       -@erase ".\vc40_dll\Debug\md5c.obj"\r
+       -@erase ".\vc40_dll\Debug\grammar1.obj"\r
+       -@erase ".\vc40_dll\Debug\getmtime.obj"\r
+       -@erase ".\vc40_dll\Debug\rgbimgmodule.obj"\r
+       -@erase ".\vc40_dll\Debug\thread.obj"\r
+       -@erase ".\vc40_dll\Debug\operator.obj"\r
+       -@erase ".\vc40_dll\Debug\environment.obj"\r
+       -@erase ".\vc40_dll\Debug\floatobject.obj"\r
+       -@erase ".\vc40_dll\Debug\moduleobject.obj"\r
+       -@erase ".\vc40_dll\Debug\object.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
+DEF_FILE= \\r
+       ".\PC\python.def"\r
+LINK32_OBJS= \\r
+       "$(INTDIR)/node.obj" \\r
+       "$(INTDIR)/arraymodule.obj" \\r
+       "$(INTDIR)/funcobject.obj" \\r
+       "$(INTDIR)/structmember.obj" \\r
+       "$(INTDIR)/soundex.obj" \\r
+       "$(INTDIR)/tokenizer.obj" \\r
+       "$(INTDIR)/myreadline.obj" \\r
+       "$(INTDIR)/intobject.obj" \\r
+       "$(INTDIR)/tupleobject.obj" \\r
+       "$(INTDIR)/frozen.obj" \\r
+       "$(INTDIR)/socketmodule.obj" \\r
+       "$(INTDIR)/imageop.obj" \\r
+       "$(INTDIR)/graminit.obj" \\r
+       "$(INTDIR)/stropmodule.obj" \\r
+       "$(INTDIR)/modsupport.obj" \\r
+       "$(INTDIR)/md5module.obj" \\r
+       "$(INTDIR)/traceback.obj" \\r
+       "$(INTDIR)/sysmodule.obj" \\r
+       "$(INTDIR)/marshal.obj" \\r
+       "$(INTDIR)/bltinmodule.obj" \\r
+       "$(INTDIR)/getcopyright.obj" \\r
+       "$(INTDIR)/pythonrun.obj" \\r
+       "$(INTDIR)/ceval.obj" \\r
+       "$(INTDIR)/config.obj" \\r
+       "$(INTDIR)/rangeobject.obj" \\r
+       "$(INTDIR)/mappingobject.obj" \\r
+       "$(INTDIR)/getargs.obj" \\r
+       "$(INTDIR)/frameobject.obj" \\r
+       "$(INTDIR)/abstract.obj" \\r
+       "$(INTDIR)/regexmodule.obj" \\r
+       "$(INTDIR)/threadmodule.obj" \\r
+       "$(INTDIR)/fileobject.obj" \\r
+       "$(INTDIR)/longobject.obj" \\r
+       "$(INTDIR)/posixmodule.obj" \\r
+       "$(INTDIR)/cmathmodule.obj" \\r
+       "$(INTDIR)/cgensupport.obj" \\r
+       "$(INTDIR)/getplatform.obj" \\r
+       "$(INTDIR)/selectmodule.obj" \\r
+       "$(INTDIR)/signalmodule.obj" \\r
+       "$(INTDIR)/parsetok.obj" \\r
+       "$(INTDIR)/accessobject.obj" \\r
+       "$(INTDIR)/import.obj" \\r
+       "$(INTDIR)/acceler.obj" \\r
+       "$(INTDIR)/errors.obj" \\r
+       "$(INTDIR)/timemodule.obj" \\r
+       "$(INTDIR)/regexpr.obj" \\r
+       "$(INTDIR)/newmodule.obj" \\r
+       "$(INTDIR)/stringobject.obj" \\r
+       "$(INTDIR)/rotormodule.obj" \\r
+       "$(INTDIR)/parser.obj" \\r
+       "$(INTDIR)/complexobject.obj" \\r
+       "$(INTDIR)/getpath.obj" \\r
+       "$(INTDIR)/importdl.obj" \\r
+       "$(INTDIR)/classobject.obj" \\r
+       "$(INTDIR)/listobject.obj" \\r
+       "$(INTDIR)/typeobject.obj" \\r
+       "$(INTDIR)/binascii.obj" \\r
+       "$(INTDIR)/mystrtoul.obj" \\r
+       "$(INTDIR)/getcompiler.obj" \\r
+       "$(INTDIR)/yuvconvert.obj" \\r
+       "$(INTDIR)/getversion.obj" \\r
+       "$(INTDIR)/structmodule.obj" \\r
+       "$(INTDIR)/audioop.obj" \\r
+       "$(INTDIR)/mathmodule.obj" \\r
+       "$(INTDIR)/compile.obj" \\r
+       "$(INTDIR)/errnomodule.obj" \\r
+       "$(INTDIR)/cobject.obj" \\r
+       "$(INTDIR)/methodobject.obj" \\r
+       "$(INTDIR)/md5c.obj" \\r
+       "$(INTDIR)/grammar1.obj" \\r
+       "$(INTDIR)/getmtime.obj" \\r
+       "$(INTDIR)/rgbimgmodule.obj" \\r
+       "$(INTDIR)/thread.obj" \\r
+       "$(INTDIR)/operator.obj" \\r
+       "$(INTDIR)/environment.obj" \\r
+       "$(INTDIR)/floatobject.obj" \\r
+       "$(INTDIR)/moduleobject.obj" \\r
+       "$(INTDIR)/object.obj"\r
+\r
+"$(OUTDIR)\py14an.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+    $(LINK32) @<<\r
+  $(LINK32_FLAGS) $(LINK32_OBJS)\r
+<<\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - 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 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
+\r
+ALL : "$(OUTDIR)\pyth_nt.exe"\r
+\r
+CLEAN : \r
+       -@erase ".\vc40_nt\Release\pyth_nt.exe"\r
+       -@erase ".\vc40_nt\Release\binascii.obj"\r
+       -@erase ".\vc40_nt\Release\getpath.obj"\r
+       -@erase ".\vc40_nt\Release\import.obj"\r
+       -@erase ".\vc40_nt\Release\getplatform.obj"\r
+       -@erase ".\vc40_nt\Release\getcopyright.obj"\r
+       -@erase ".\vc40_nt\Release\yuvconvert.obj"\r
+       -@erase ".\vc40_nt\Release\getversion.obj"\r
+       -@erase ".\vc40_nt\Release\marshal.obj"\r
+       -@erase ".\vc40_nt\Release\mathmodule.obj"\r
+       -@erase ".\vc40_nt\Release\md5c.obj"\r
+       -@erase ".\vc40_nt\Release\grammar1.obj"\r
+       -@erase ".\vc40_nt\Release\getmtime.obj"\r
+       -@erase ".\vc40_nt\Release\parser.obj"\r
+       -@erase ".\vc40_nt\Release\operator.obj"\r
+       -@erase ".\vc40_nt\Release\compile.obj"\r
+       -@erase ".\vc40_nt\Release\threadmodule.obj"\r
+       -@erase ".\vc40_nt\Release\cobject.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\config.obj"\r
+       -@erase ".\vc40_nt\Release\rgbimgmodule.obj"\r
+       -@erase ".\vc40_nt\Release\classobject.obj"\r
+       -@erase ".\vc40_nt\Release\intobject.obj"\r
+       -@erase ".\vc40_nt\Release\funcobject.obj"\r
+       -@erase ".\vc40_nt\Release\mappingobject.obj"\r
+       -@erase ".\vc40_nt\Release\selectmodule.obj"\r
+       -@erase ".\vc40_nt\Release\signalmodule.obj"\r
+       -@erase ".\vc40_nt\Release\bltinmodule.obj"\r
+       -@erase ".\vc40_nt\Release\getcompiler.obj"\r
+       -@erase ".\vc40_nt\Release\myreadline.obj"\r
+       -@erase ".\vc40_nt\Release\main.obj"\r
+       -@erase ".\vc40_nt\Release\accessobject.obj"\r
+       -@erase ".\vc40_nt\Release\thread.obj"\r
+       -@erase ".\vc40_nt\Release\mystrtoul.obj"\r
+       -@erase ".\vc40_nt\Release\graminit.obj"\r
+       -@erase ".\vc40_nt\Release\errnomodule.obj"\r
+       -@erase ".\vc40_nt\Release\frameobject.obj"\r
+       -@erase ".\vc40_nt\Release\object.obj"\r
+       -@erase ".\vc40_nt\Release\regexmodule.obj"\r
+       -@erase ".\vc40_nt\Release\environment.obj"\r
+       -@erase ".\vc40_nt\Release\floatobject.obj"\r
+       -@erase ".\vc40_nt\Release\imageop.obj"\r
+       -@erase ".\vc40_nt\Release\regexpr.obj"\r
+       -@erase ".\vc40_nt\Release\cmathmodule.obj"\r
+       -@erase ".\vc40_nt\Release\arraymodule.obj"\r
+       -@erase ".\vc40_nt\Release\frozen.obj"\r
+       -@erase ".\vc40_nt\Release\abstract.obj"\r
+       -@erase ".\vc40_nt\Release\getopt.obj"\r
+       -@erase ".\vc40_nt\Release\getargs.obj"\r
+       -@erase ".\vc40_nt\Release\errors.obj"\r
+       -@erase ".\vc40_nt\Release\structmodule.obj"\r
+       -@erase ".\vc40_nt\Release\fileobject.obj"\r
+       -@erase ".\vc40_nt\Release\longobject.obj"\r
+       -@erase ".\vc40_nt\Release\ceval.obj"\r
+       -@erase ".\vc40_nt\Release\methodobject.obj"\r
+       -@erase ".\vc40_nt\Release\node.obj"\r
+       -@erase ".\vc40_nt\Release\tokenizer.obj"\r
+       -@erase ".\vc40_nt\Release\audioop.obj"\r
+       -@erase ".\vc40_nt\Release\complexobject.obj"\r
+       -@erase ".\vc40_nt\Release\stropmodule.obj"\r
+       -@erase ".\vc40_nt\Release\moduleobject.obj"\r
+       -@erase ".\vc40_nt\Release\parsetok.obj"\r
+       -@erase ".\vc40_nt\Release\md5module.obj"\r
+       -@erase ".\vc40_nt\Release\traceback.obj"\r
+       -@erase ".\vc40_nt\Release\sysmodule.obj"\r
+       -@erase ".\vc40_nt\Release\rangeobject.obj"\r
+       -@erase ".\vc40_nt\Release\timemodule.obj"\r
+       -@erase ".\vc40_nt\Release\pythonrun.obj"\r
+       -@erase ".\vc40_nt\Release\structmember.obj"\r
+       -@erase ".\vc40_nt\Release\acceler.obj"\r
+       -@erase ".\vc40_nt\Release\socketmodule.obj"\r
+       -@erase ".\vc40_nt\Release\posixmodule.obj"\r
+       -@erase ".\vc40_nt\Release\soundex.obj"\r
+       -@erase ".\vc40_nt\Release\importdl.obj"\r
+       -@erase ".\vc40_nt\Release\cgensupport.obj"\r
+       -@erase ".\vc40_nt\Release\modsupport.obj"\r
+       -@erase ".\vc40_nt\Release\stringobject.obj"\r
+       -@erase ".\vc40_nt\Release\listobject.obj"\r
+       -@erase ".\vc40_nt\Release\typeobject.obj"\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_nt.pch" /YX\\r
+ /Fo"$(INTDIR)/" /c \r
+CPP_OBJS=.\vc40_nt\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_nt.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
+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
+LINK32_OBJS= \\r
+       "$(INTDIR)/binascii.obj" \\r
+       "$(INTDIR)/getpath.obj" \\r
+       "$(INTDIR)/import.obj" \\r
+       "$(INTDIR)/getplatform.obj" \\r
+       "$(INTDIR)/getcopyright.obj" \\r
+       "$(INTDIR)/yuvconvert.obj" \\r
+       "$(INTDIR)/getversion.obj" \\r
+       "$(INTDIR)/marshal.obj" \\r
+       "$(INTDIR)/mathmodule.obj" \\r
+       "$(INTDIR)/md5c.obj" \\r
+       "$(INTDIR)/grammar1.obj" \\r
+       "$(INTDIR)/getmtime.obj" \\r
+       "$(INTDIR)/parser.obj" \\r
+       "$(INTDIR)/operator.obj" \\r
+       "$(INTDIR)/compile.obj" \\r
+       "$(INTDIR)/threadmodule.obj" \\r
+       "$(INTDIR)/cobject.obj" \\r
+       "$(INTDIR)/rotormodule.obj" \\r
+       "$(INTDIR)/tupleobject.obj" \\r
+       "$(INTDIR)/newmodule.obj" \\r
+       "$(INTDIR)/config.obj" \\r
+       "$(INTDIR)/rgbimgmodule.obj" \\r
+       "$(INTDIR)/classobject.obj" \\r
+       "$(INTDIR)/intobject.obj" \\r
+       "$(INTDIR)/funcobject.obj" \\r
+       "$(INTDIR)/mappingobject.obj" \\r
+       "$(INTDIR)/selectmodule.obj" \\r
+       "$(INTDIR)/signalmodule.obj" \\r
+       "$(INTDIR)/bltinmodule.obj" \\r
+       "$(INTDIR)/getcompiler.obj" \\r
+       "$(INTDIR)/myreadline.obj" \\r
+       "$(INTDIR)/main.obj" \\r
+       "$(INTDIR)/accessobject.obj" \\r
+       "$(INTDIR)/thread.obj" \\r
+       "$(INTDIR)/mystrtoul.obj" \\r
+       "$(INTDIR)/graminit.obj" \\r
+       "$(INTDIR)/errnomodule.obj" \\r
+       "$(INTDIR)/frameobject.obj" \\r
+       "$(INTDIR)/object.obj" \\r
+       "$(INTDIR)/regexmodule.obj" \\r
+       "$(INTDIR)/environment.obj" \\r
+       "$(INTDIR)/floatobject.obj" \\r
+       "$(INTDIR)/imageop.obj" \\r
+       "$(INTDIR)/regexpr.obj" \\r
+       "$(INTDIR)/cmathmodule.obj" \\r
+       "$(INTDIR)/arraymodule.obj" \\r
+       "$(INTDIR)/frozen.obj" \\r
+       "$(INTDIR)/abstract.obj" \\r
+       "$(INTDIR)/getopt.obj" \\r
+       "$(INTDIR)/getargs.obj" \\r
+       "$(INTDIR)/errors.obj" \\r
+       "$(INTDIR)/structmodule.obj" \\r
+       "$(INTDIR)/fileobject.obj" \\r
+       "$(INTDIR)/longobject.obj" \\r
+       "$(INTDIR)/ceval.obj" \\r
+       "$(INTDIR)/methodobject.obj" \\r
+       "$(INTDIR)/node.obj" \\r
+       "$(INTDIR)/tokenizer.obj" \\r
+       "$(INTDIR)/audioop.obj" \\r
+       "$(INTDIR)/complexobject.obj" \\r
+       "$(INTDIR)/stropmodule.obj" \\r
+       "$(INTDIR)/moduleobject.obj" \\r
+       "$(INTDIR)/parsetok.obj" \\r
+       "$(INTDIR)/md5module.obj" \\r
+       "$(INTDIR)/traceback.obj" \\r
+       "$(INTDIR)/sysmodule.obj" \\r
+       "$(INTDIR)/rangeobject.obj" \\r
+       "$(INTDIR)/timemodule.obj" \\r
+       "$(INTDIR)/pythonrun.obj" \\r
+       "$(INTDIR)/structmember.obj" \\r
+       "$(INTDIR)/acceler.obj" \\r
+       "$(INTDIR)/socketmodule.obj" \\r
+       "$(INTDIR)/posixmodule.obj" \\r
+       "$(INTDIR)/soundex.obj" \\r
+       "$(INTDIR)/importdl.obj" \\r
+       "$(INTDIR)/cgensupport.obj" \\r
+       "$(INTDIR)/modsupport.obj" \\r
+       "$(INTDIR)/stringobject.obj" \\r
+       "$(INTDIR)/listobject.obj" \\r
+       "$(INTDIR)/typeobject.obj"\r
+\r
+"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+    $(LINK32) @<<\r
+  $(LINK32_FLAGS) $(LINK32_OBJS)\r
+<<\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\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 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
+\r
+ALL : "$(OUTDIR)\pyth_nt.exe"\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\config.obj"\r
+       -@erase ".\vc40_nt\Debug\myreadline.obj"\r
+       -@erase ".\vc40_nt\Debug\moduleobject.obj"\r
+       -@erase ".\vc40_nt\Debug\grammar1.obj"\r
+       -@erase ".\vc40_nt\Debug\abstract.obj"\r
+       -@erase ".\vc40_nt\Debug\acceler.obj"\r
+       -@erase ".\vc40_nt\Debug\thread.obj"\r
+       -@erase ".\vc40_nt\Debug\stropmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\soundex.obj"\r
+       -@erase ".\vc40_nt\Debug\object.obj"\r
+       -@erase ".\vc40_nt\Debug\structmember.obj"\r
+       -@erase ".\vc40_nt\Debug\newmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\rangeobject.obj"\r
+       -@erase ".\vc40_nt\Debug\md5module.obj"\r
+       -@erase ".\vc40_nt\Debug\socketmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\getpath.obj"\r
+       -@erase ".\vc40_nt\Debug\typeobject.obj"\r
+       -@erase ".\vc40_nt\Debug\parsetok.obj"\r
+       -@erase ".\vc40_nt\Debug\stringobject.obj"\r
+       -@erase ".\vc40_nt\Debug\marshal.obj"\r
+       -@erase ".\vc40_nt\Debug\frozen.obj"\r
+       -@erase ".\vc40_nt\Debug\getversion.obj"\r
+       -@erase ".\vc40_nt\Debug\getopt.obj"\r
+       -@erase ".\vc40_nt\Debug\posixmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\md5c.obj"\r
+       -@erase ".\vc40_nt\Debug\getcopyright.obj"\r
+       -@erase ".\vc40_nt\Debug\mystrtoul.obj"\r
+       -@erase ".\vc40_nt\Debug\longobject.obj"\r
+       -@erase ".\vc40_nt\Debug\cgensupport.obj"\r
+       -@erase ".\vc40_nt\Debug\compile.obj"\r
+       -@erase ".\vc40_nt\Debug\cobject.obj"\r
+       -@erase ".\vc40_nt\Debug\getplatform.obj"\r
+       -@erase ".\vc40_nt\Debug\importdl.obj"\r
+       -@erase ".\vc40_nt\Debug\threadmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\binascii.obj"\r
+       -@erase ".\vc40_nt\Debug\ceval.obj"\r
+       -@erase ".\vc40_nt\Debug\timemodule.obj"\r
+       -@erase ".\vc40_nt\Debug\main.obj"\r
+       -@erase ".\vc40_nt\Debug\methodobject.obj"\r
+       -@erase ".\vc40_nt\Debug\mappingobject.obj"\r
+       -@erase ".\vc40_nt\Debug\funcobject.obj"\r
+       -@erase ".\vc40_nt\Debug\rgbimgmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\rotormodule.obj"\r
+       -@erase ".\vc40_nt\Debug\selectmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\tupleobject.obj"\r
+       -@erase ".\vc40_nt\Debug\signalmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\getmtime.obj"\r
+       -@erase ".\vc40_nt\Debug\operator.obj"\r
+       -@erase ".\vc40_nt\Debug\tokenizer.obj"\r
+       -@erase ".\vc40_nt\Debug\accessobject.obj"\r
+       -@erase ".\vc40_nt\Debug\classobject.obj"\r
+       -@erase ".\vc40_nt\Debug\imageop.obj"\r
+       -@erase ".\vc40_nt\Debug\intobject.obj"\r
+       -@erase ".\vc40_nt\Debug\regexpr.obj"\r
+       -@erase ".\vc40_nt\Debug\modsupport.obj"\r
+       -@erase ".\vc40_nt\Debug\listobject.obj"\r
+       -@erase ".\vc40_nt\Debug\bltinmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\getcompiler.obj"\r
+       -@erase ".\vc40_nt\Debug\import.obj"\r
+       -@erase ".\vc40_nt\Debug\yuvconvert.obj"\r
+       -@erase ".\vc40_nt\Debug\traceback.obj"\r
+       -@erase ".\vc40_nt\Debug\sysmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\errors.obj"\r
+       -@erase ".\vc40_nt\Debug\mathmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\errnomodule.obj"\r
+       -@erase ".\vc40_nt\Debug\pythonrun.obj"\r
+       -@erase ".\vc40_nt\Debug\getargs.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\parser.obj"\r
+       -@erase ".\vc40_nt\Debug\node.obj"\r
+       -@erase ".\vc40_nt\Debug\cmathmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\fileobject.obj"\r
+       -@erase ".\vc40_nt\Debug\graminit.obj"\r
+       -@erase ".\vc40_nt\Debug\audioop.obj"\r
+       -@erase ".\vc40_nt\Debug\structmodule.obj"\r
+       -@erase ".\vc40_nt\Debug\arraymodule.obj"\r
+       -@erase ".\vc40_nt\Debug\complexobject.obj"\r
+       -@erase ".\vc40_nt\Debug\pyth_nt.ilk"\r
+       -@erase ".\vc40_nt\Debug\pyth_nt.pdb"\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_nt.pch" /YX\\r
+ /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c \r
+CPP_OBJS=.\vc40_nt\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_nt.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
+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
+LINK32_OBJS= \\r
+       "$(INTDIR)/config.obj" \\r
+       "$(INTDIR)/myreadline.obj" \\r
+       "$(INTDIR)/moduleobject.obj" \\r
+       "$(INTDIR)/grammar1.obj" \\r
+       "$(INTDIR)/abstract.obj" \\r
+       "$(INTDIR)/acceler.obj" \\r
+       "$(INTDIR)/thread.obj" \\r
+       "$(INTDIR)/stropmodule.obj" \\r
+       "$(INTDIR)/soundex.obj" \\r
+       "$(INTDIR)/object.obj" \\r
+       "$(INTDIR)/structmember.obj" \\r
+       "$(INTDIR)/newmodule.obj" \\r
+       "$(INTDIR)/rangeobject.obj" \\r
+       "$(INTDIR)/md5module.obj" \\r
+       "$(INTDIR)/socketmodule.obj" \\r
+       "$(INTDIR)/getpath.obj" \\r
+       "$(INTDIR)/typeobject.obj" \\r
+       "$(INTDIR)/parsetok.obj" \\r
+       "$(INTDIR)/stringobject.obj" \\r
+       "$(INTDIR)/marshal.obj" \\r
+       "$(INTDIR)/frozen.obj" \\r
+       "$(INTDIR)/getversion.obj" \\r
+       "$(INTDIR)/getopt.obj" \\r
+       "$(INTDIR)/posixmodule.obj" \\r
+       "$(INTDIR)/md5c.obj" \\r
+       "$(INTDIR)/getcopyright.obj" \\r
+       "$(INTDIR)/mystrtoul.obj" \\r
+       "$(INTDIR)/longobject.obj" \\r
+       "$(INTDIR)/cgensupport.obj" \\r
+       "$(INTDIR)/compile.obj" \\r
+       "$(INTDIR)/cobject.obj" \\r
+       "$(INTDIR)/getplatform.obj" \\r
+       "$(INTDIR)/importdl.obj" \\r
+       "$(INTDIR)/threadmodule.obj" \\r
+       "$(INTDIR)/binascii.obj" \\r
+       "$(INTDIR)/ceval.obj" \\r
+       "$(INTDIR)/timemodule.obj" \\r
+       "$(INTDIR)/main.obj" \\r
+       "$(INTDIR)/methodobject.obj" \\r
+       "$(INTDIR)/mappingobject.obj" \\r
+       "$(INTDIR)/funcobject.obj" \\r
+       "$(INTDIR)/rgbimgmodule.obj" \\r
+       "$(INTDIR)/rotormodule.obj" \\r
+       "$(INTDIR)/selectmodule.obj" \\r
+       "$(INTDIR)/tupleobject.obj" \\r
+       "$(INTDIR)/signalmodule.obj" \\r
+       "$(INTDIR)/getmtime.obj" \\r
+       "$(INTDIR)/operator.obj" \\r
+       "$(INTDIR)/tokenizer.obj" \\r
+       "$(INTDIR)/accessobject.obj" \\r
+       "$(INTDIR)/classobject.obj" \\r
+       "$(INTDIR)/imageop.obj" \\r
+       "$(INTDIR)/intobject.obj" \\r
+       "$(INTDIR)/regexpr.obj" \\r
+       "$(INTDIR)/modsupport.obj" \\r
+       "$(INTDIR)/listobject.obj" \\r
+       "$(INTDIR)/bltinmodule.obj" \\r
+       "$(INTDIR)/getcompiler.obj" \\r
+       "$(INTDIR)/import.obj" \\r
+       "$(INTDIR)/yuvconvert.obj" \\r
+       "$(INTDIR)/traceback.obj" \\r
+       "$(INTDIR)/sysmodule.obj" \\r
+       "$(INTDIR)/errors.obj" \\r
+       "$(INTDIR)/mathmodule.obj" \\r
+       "$(INTDIR)/errnomodule.obj" \\r
+       "$(INTDIR)/pythonrun.obj" \\r
+       "$(INTDIR)/getargs.obj" \\r
+       "$(INTDIR)/frameobject.obj" \\r
+       "$(INTDIR)/regexmodule.obj" \\r
+       "$(INTDIR)/environment.obj" \\r
+       "$(INTDIR)/floatobject.obj" \\r
+       "$(INTDIR)/parser.obj" \\r
+       "$(INTDIR)/node.obj" \\r
+       "$(INTDIR)/cmathmodule.obj" \\r
+       "$(INTDIR)/fileobject.obj" \\r
+       "$(INTDIR)/graminit.obj" \\r
+       "$(INTDIR)/audioop.obj" \\r
+       "$(INTDIR)/structmodule.obj" \\r
+       "$(INTDIR)/arraymodule.obj" \\r
+       "$(INTDIR)/complexobject.obj"\r
+\r
+"$(OUTDIR)\pyth_nt.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)\r
+    $(LINK32) @<<\r
+  $(LINK32_FLAGS) $(LINK32_OBJS)\r
+<<\r
+\r
+!ENDIF \r
+\r
+################################################################################\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
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\longobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_LONGO=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\longintrepr.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\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)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_LONGO=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\longintrepr.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\listobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\intobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_INTOB=\\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\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)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_INTOB=\\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\importdl.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_IMPOR=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\osdefs.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\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\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_IMPOR=\\r
+       ".\Python\dl.h"\\r
+       ".\Python\macdefs.h"\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_IMPOR=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\osdefs.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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+       \r
+\r
+"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\imageop.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_IMAGE=\\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\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)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_IMAGE=\\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\grammar1.c\r
+\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\pydebug.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\Include\bitset.h"\\r
+       \r
+\r
+"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)"\r
+   $(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\pydebug.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\Include\bitset.h"\\r
+       \r
+\r
+"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getversion.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_GETVE=\\r
+       ".\./Include\Python.h"\\r
+       ".\./Include\patchlevel.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\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)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_GETVE=\\r
+       ".\./Include\Python.h"\\r
+       ".\./Include\patchlevel.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getplatform.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\getpath.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getcompiler.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getargs.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\funcobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\frozen.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\frameobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\floatobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\fileobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\errors.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\environment.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\PC\config.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\complexobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\compile.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\cobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\cmathmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_CMATH=\\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\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_CMATH=\\r
+       ".\Modules\complexobject.h"\\r
+       \r
+\r
+"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\classobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\cgensupport.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\ceval.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\bltinmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\binascii.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\audioop.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\arraymodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\accessobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\acceler.c\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
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\abstract.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\yuvconvert.c\r
+DEP_CPP_YUVCO=\\r
+       ".\Modules\yuv.h"\\r
+       \r
+\r
+"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\typeobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\tupleobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\traceback.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_TRACE=\\r
+       ".\./Include\allobjects.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\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_TRACE=\\r
+       ".\Python\sysmodule.h"\\r
+       \r
+\r
+"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\tokenizer.c\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
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\timemodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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\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\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)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\threadmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_THREA=\\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\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_THREA=\\r
+       ".\Modules\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\thread.c\r
+DEP_CPP_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
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\structmember.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\stropmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\stringobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\soundex.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\signalmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_SIGNA=\\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\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_SIGNA=\\r
+       ".\Modules\intrcheck.h"\\r
+       ".\Modules\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\rotormodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\rgbimgmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\regexpr.c\r
+DEP_CPP_REGEX=\\r
+       ".\./Include\myproto.h"\\r
+       ".\Modules\regexpr.h"\\r
+       ".\./PC\config.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+NODEP_CPP_REGEX=\\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
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\rangeobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\pythonrun.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_PYTHO=\\r
+       ".\./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
+       ".\./Include\bltinmodule.h"\\r
+       ".\./Include\compile.h"\\r
+       ".\./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\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\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
+\r
+"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_PYTHO=\\r
+       ".\./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
+       ".\./Include\bltinmodule.h"\\r
+       ".\./Include\compile.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\Include\bitset.h"\\r
+       \r
+\r
+"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\parsetok.c\r
+DEP_CPP_PARSE=\\r
+       ".\./Include\pgenheaders.h"\\r
+       ".\Parser\tokenizer.h"\\r
+       ".\./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\pydebug.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\token.h"\\r
+       ".\Include\bitset.h"\\r
+       \r
+\r
+"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\parser.c\r
+DEP_CPP_PARSER=\\r
+       ".\./Include\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
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\object.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\marshal.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_MARSH=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\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)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_MARSH=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\mystrtoul.c\r
+DEP_CPP_MYSTR=\\r
+       ".\./PC\config.h"\\r
+       ".\./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
+       ".\./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
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\moduleobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\modsupport.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_MODSU=\\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\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_MODSU=\\r
+       ".\Python\import.h"\\r
+       \r
+\r
+"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\methodobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\md5module.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\mappingobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \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
+\r
+SOURCE=.\Modules\socketmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+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\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\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)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\selectmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_SELEC=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\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
+       ".\./Include\mytime.h"\\r
+       \r
+\r
+"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+DEP_CPP_SELEC=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       ".\./Include\mytime.h"\\r
+       \r
+\r
+"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\sysmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\r
+DEP_CPP_SYSMO=\\r
+       ".\./Include\allobjects.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\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_SYSMO=\\r
+       ".\Python\sysmodule.h"\\r
+       ".\Python\import.h"\\r
+       \r
+\r
+"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\import.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\pythonrun.h"\\r
+       ".\./Include\marshal.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\Include\abstract.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+NODEP_CPP_IMPORT=\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\pythonrun.h"\\r
+       ".\./Include\marshal.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+NODEP_CPP_IMPORT=\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\posixmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\mytime.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\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)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\mytime.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\operator.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\errnomodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_dll - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_dll - Win32 Debug"\r
+\r
+NODEP_CPP_ERRNO=\\r
+       ".\Modules\Python.h"\\r
+       \r
+\r
+"$(INTDIR)\errnomodule.obj" : $(SOURCE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_LONGO=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\longintrepr.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\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)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_LONGO=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\longintrepr.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\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\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\listobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\intobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_INTOB=\\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\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)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_INTOB=\\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\importdl.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_IMPOR=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\osdefs.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\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\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_IMPOR=\\r
+       ".\Python\dl.h"\\r
+       ".\Python\macdefs.h"\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_IMPOR=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./Include\osdefs.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\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\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\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+NODEP_CPP_IMPOR=\\r
+       ".\Python\dl.h"\\r
+       ".\Python\macdefs.h"\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\imageop.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_IMAGE=\\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\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)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_IMAGE=\\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\grammar1.c\r
+DEP_CPP_GRAMM=\\r
+       ".\./Include\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
+# End Source File\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
+\r
+"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getversion.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_GETVE=\\r
+       ".\./Include\Python.h"\\r
+       ".\./Include\patchlevel.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\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)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_GETVE=\\r
+       ".\./Include\Python.h"\\r
+       ".\./Include\patchlevel.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\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\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getplatform.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\getpath.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getcompiler.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getargs.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\funcobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\frozen.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\frameobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\floatobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\fileobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\errors.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\environment.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\PC\config.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\complexobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\compile.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\cobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\cmathmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_CMATH=\\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\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_CMATH=\\r
+       ".\Modules\complexobject.h"\\r
+       \r
+\r
+"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\classobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\cgensupport.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\ceval.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\bltinmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\binascii.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\audioop.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\arraymodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\accessobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\yuvconvert.c\r
+DEP_CPP_YUVCO=\\r
+       ".\Modules\yuv.h"\\r
+       \r
+\r
+"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\typeobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\tupleobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\traceback.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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\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\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)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\threadmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\thread.c\r
+DEP_CPP_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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\structmember.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\stropmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\stringobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\soundex.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\signalmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\import.h"\\r
+       ".\./Include\bltinmodule.h"\\r
+       ".\Include\abstract.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+\r
+"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\rotormodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\rgbimgmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\regexpr.c\r
+DEP_CPP_REGEX=\\r
+       ".\./Include\myproto.h"\\r
+       ".\Modules\regexpr.h"\\r
+       ".\./PC\config.h"\\r
+       ".\./Include\rename2.h"\\r
+       \r
+NODEP_CPP_REGEX=\\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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\rangeobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\pythonrun.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_PYTHO=\\r
+       ".\./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
+       ".\./Include\bltinmodule.h"\\r
+       ".\./Include\compile.h"\\r
+       ".\./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\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\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
+\r
+"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_PYTHO=\\r
+       ".\./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
+       ".\./Include\bltinmodule.h"\\r
+       ".\./Include\compile.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\Include\bitset.h"\\r
+       \r
+\r
+"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Parser\parsetok.c\r
+DEP_CPP_PARSE=\\r
+       ".\./Include\pgenheaders.h"\\r
+       ".\Parser\tokenizer.h"\\r
+       ".\./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\pydebug.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\token.h"\\r
+       ".\Include\bitset.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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\mystrtoul.c\r
+DEP_CPP_MYSTR=\\r
+       ".\./PC\config.h"\\r
+       ".\./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
+       ".\./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
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\moduleobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\modsupport.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\methodobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\md5module.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \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
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\marshal.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_MARSH=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\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)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_MARSH=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Objects\mappingobject.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\main.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\getopt.c\r
+\r
+"$(INTDIR)\getopt.obj" : $(SOURCE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\sysmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\intrcheck.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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\socketmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+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\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\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)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+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\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\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\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\selectmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\r
+DEP_CPP_SELEC=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\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
+       ".\./Include\mytime.h"\\r
+       \r
+\r
+"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\r
+DEP_CPP_SELEC=\\r
+       ".\./Include\allobjects.h"\\r
+       ".\./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\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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       ".\./Include\mytime.h"\\r
+       \r
+\r
+"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\posixmodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\mytime.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\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)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\mytime.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\pythonrun.h"\\r
+       ".\./Include\sysmodule.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+\r
+"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Python\import.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\pythonrun.h"\\r
+       ".\./Include\marshal.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\Include\abstract.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+NODEP_CPP_IMPORT=\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\pythonrun.h"\\r
+       ".\./Include\marshal.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\errors.h"\\r
+       ".\./Include\mymalloc.h"\\r
+       ".\./Include\modsupport.h"\\r
+       ".\./Include\ceval.h"\\r
+       ".\./Include\intrcheck.h"\\r
+       ".\./Include\rename2.h"\\r
+       ".\./Include\thread.h"\\r
+       \r
+NODEP_CPP_IMPORT=\\r
+       ".\Python\macglue.h"\\r
+       \r
+\r
+"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)"\r
+   $(CPP) $(CPP_PROJ) $(SOURCE)\r
+\r
+\r
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\operator.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+################################################################################\r
+# Begin Source File\r
+\r
+SOURCE=.\Modules\errnomodule.c\r
+\r
+!IF  "$(CFG)" == "vc40_nt - Win32 Release"\r
+\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\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
+!ELSEIF  "$(CFG)" == "vc40_nt - Win32 Debug"\r
+\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\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\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
+!ENDIF \r
+\r
+# End Source File\r
+# End Target\r
+# End Project\r
+################################################################################\r
index 467ced70ff6e003126b2365ef460507152630bc0..b83699991bac0d83cc12795723742de05aeb6708 100755 (executable)
@@ -1,3 +1,3 @@
-NAME pyth_dos
-FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,import.obj,posixmodule.obj
-
+NAME pyth_dos\r
+FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,errnomodule.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj\r
+\r
index 7d9cda07386c285e68149ee50a65bd79e2a2bf2f..50587ecfb3648a8272894f8ad1093f8375929019 100755 (executable)
-!define BLANK ""
-n:\python\python-1.4b0b\pc\wat_dos\arraymodule.obj : n:\python\python-1.4b0b&
-\modules\arraymodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\audioop.obj : n:\python\python-1.4b0b\mod&
-ules\audioop.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\binascii.obj : n:\python\python-1.4b0b\mo&
-dules\binascii.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\cmathmodule.obj : n:\python\python-1.4b0b&
-\modules\cmathmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\environment.obj : n:\python\python-1.4b0b&
-\modules\environment.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getpath.obj : n:\python\python-1.4b0b\mod&
-ules\getpath.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\imageop.obj : n:\python\python-1.4b0b\mod&
-ules\imageop.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\main.obj : n:\python\python-1.4b0b\module&
-s\main.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
-E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\mathmodule.obj : n:\python\python-1.4b0b\&
-modules\mathmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\md5c.obj : n:\python\python-1.4b0b\module&
-s\md5c.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
-E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\md5module.obj : n:\python\python-1.4b0b\m&
-odules\md5module.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\newmodule.obj : n:\python\python-1.4b0b\m&
-odules\newmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\regexmodule.obj : n:\python\python-1.4b0b&
-\modules\regexmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\regexpr.obj : n:\python\python-1.4b0b\mod&
-ules\regexpr.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\rgbimgmodule.obj : n:\python\python-1.4b0&
-b\modules\rgbimgmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\rotormodule.obj : n:\python\python-1.4b0b&
-\modules\rotormodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\signalmodule.obj : n:\python\python-1.4b0&
-b\modules\signalmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\soundex.obj : n:\python\python-1.4b0b\mod&
-ules\soundex.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\stropmodule.obj : n:\python\python-1.4b0b&
-\modules\stropmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\structmodule.obj : n:\python\python-1.4b0&
-b\modules\structmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\timemodule.obj : n:\python\python-1.4b0b\&
-modules\timemodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\yuvconvert.obj : n:\python\python-1.4b0b\&
-modules\yuvconvert.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\abstract.obj : n:\python\python-1.4b0b\ob&
-jects\abstract.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\accessobject.obj : n:\python\python-1.4b0&
-b\objects\accessobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\classobject.obj : n:\python\python-1.4b0b&
-\objects\classobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\cobject.obj : n:\python\python-1.4b0b\obj&
-ects\cobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\complexobject.obj : n:\python\python-1.4b&
-0b\objects\complexobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\fileobject.obj : n:\python\python-1.4b0b\&
-objects\fileobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\floatobject.obj : n:\python\python-1.4b0b&
-\objects\floatobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\frameobject.obj : n:\python\python-1.4b0b&
-\objects\frameobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\funcobject.obj : n:\python\python-1.4b0b\&
-objects\funcobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\intobject.obj : n:\python\python-1.4b0b\o&
-bjects\intobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\listobject.obj : n:\python\python-1.4b0b\&
-objects\listobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\longobject.obj : n:\python\python-1.4b0b\&
-objects\longobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\mappingobject.obj : n:\python\python-1.4b&
-0b\objects\mappingobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\methodobject.obj : n:\python\python-1.4b0&
-b\objects\methodobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\moduleobject.obj : n:\python\python-1.4b0&
-b\objects\moduleobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\object.obj : n:\python\python-1.4b0b\obje&
-cts\object.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
-AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\rangeobject.obj : n:\python\python-1.4b0b&
-\objects\rangeobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\stringobject.obj : n:\python\python-1.4b0&
-b\objects\stringobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
-25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\tupleobject.obj : n:\python\python-1.4b0b&
-\objects\tupleobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\typeobject.obj : n:\python\python-1.4b0b\&
-objects\typeobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\acceler.obj : n:\python\python-1.4b0b\par&
-ser\acceler.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
-AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\grammar1.obj : n:\python\python-1.4b0b\pa&
-rser\grammar1.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\myreadline.obj : n:\python\python-1.4b0b\&
-parser\myreadline.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\node.obj : n:\python\python-1.4b0b\parser&
-\node.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE&
-_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\parser.obj : n:\python\python-1.4b0b\pars&
-er\parser.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
-VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\parsetok.obj : n:\python\python-1.4b0b\pa&
-rser\parsetok.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\tokenizer.obj : n:\python\python-1.4b0b\p&
-arser\tokenizer.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\bltinmodule.obj : n:\python\python-1.4b0b&
-\python\bltinmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\ceval.obj : n:\python\python-1.4b0b\pytho&
-n\ceval.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
-E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\cgensupport.obj : n:\python\python-1.4b0b&
-\python\cgensupport.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\compile.obj : n:\python\python-1.4b0b\pyt&
-hon\compile.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
-AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\errors.obj : n:\python\python-1.4b0b\pyth&
-on\errors.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
-VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\frozen.obj : n:\python\python-1.4b0b\pyth&
-on\frozen.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
-VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getargs.obj : n:\python\python-1.4b0b\pyt&
-hon\getargs.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
-AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getcompiler.obj : n:\python\python-1.4b0b&
-\python\getcompiler.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getcopyright.obj : n:\python\python-1.4b0&
-b\python\getcopyright.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getmtime.obj : n:\python\python-1.4b0b\py&
-thon\getmtime.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getopt.obj : n:\python\python-1.4b0b\pyth&
-on\getopt.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
-VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getplatform.obj : n:\python\python-1.4b0b&
-\python\getplatform.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
- -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\getversion.obj : n:\python\python-1.4b0b\&
-python\getversion.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\graminit.obj : n:\python\python-1.4b0b\py&
-thon\graminit.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\importdl.obj : n:\python\python-1.4b0b\py&
-thon\importdl.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
-HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\marshal.obj : n:\python\python-1.4b0b\pyt&
-hon\marshal.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
-AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\modsupport.obj : n:\python\python-1.4b0b\&
-python\modsupport.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
--dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\mystrtoul.obj : n:\python\python-1.4b0b\p&
-ython\mystrtoul.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\pythonrun.obj : n:\python\python-1.4b0b\p&
-ython\pythonrun.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\structmember.obj : n:\python\python-1.4b0&
-b\python\structmember.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\sysmodule.obj : n:\python\python-1.4b0b\p&
-ython\sysmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\traceback.obj : n:\python\python-1.4b0b\p&
-ython\traceback.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\config.obj : n:\python\python-1.4b0b\pc\c&
-onfig.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CONFIG_&
-H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\import.obj : n:\python\python-1.4b0b\pc\i&
-mport.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\import.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CONFIG_&
-H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\posixmodule.obj : n:\python\python-1.4b0b&
-\pc\posixmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- *wcc386 ..\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CO&
-NFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
-
-n:\python\python-1.4b0b\pc\wat_dos\pyth_dos.exe : n:\python\python-1.4b0b\pc&
-\wat_dos\arraymodule.obj n:\python\python-1.4b0b\pc\wat_dos\audioop.obj n:\p&
-ython\python-1.4b0b\pc\wat_dos\binascii.obj n:\python\python-1.4b0b\pc\wat_d&
-os\cmathmodule.obj n:\python\python-1.4b0b\pc\wat_dos\environment.obj n:\pyt&
-hon\python-1.4b0b\pc\wat_dos\getpath.obj n:\python\python-1.4b0b\pc\wat_dos\&
-imageop.obj n:\python\python-1.4b0b\pc\wat_dos\main.obj n:\python\python-1.4&
-b0b\pc\wat_dos\mathmodule.obj n:\python\python-1.4b0b\pc\wat_dos\md5c.obj n:&
-\python\python-1.4b0b\pc\wat_dos\md5module.obj n:\python\python-1.4b0b\pc\wa&
-t_dos\newmodule.obj n:\python\python-1.4b0b\pc\wat_dos\regexmodule.obj n:\py&
-thon\python-1.4b0b\pc\wat_dos\regexpr.obj n:\python\python-1.4b0b\pc\wat_dos&
-\rgbimgmodule.obj n:\python\python-1.4b0b\pc\wat_dos\rotormodule.obj n:\pyth&
-on\python-1.4b0b\pc\wat_dos\signalmodule.obj n:\python\python-1.4b0b\pc\wat_&
-dos\soundex.obj n:\python\python-1.4b0b\pc\wat_dos\stropmodule.obj n:\python&
-\python-1.4b0b\pc\wat_dos\structmodule.obj n:\python\python-1.4b0b\pc\wat_do&
-s\timemodule.obj n:\python\python-1.4b0b\pc\wat_dos\yuvconvert.obj n:\python&
-\python-1.4b0b\pc\wat_dos\abstract.obj n:\python\python-1.4b0b\pc\wat_dos\ac&
-cessobject.obj n:\python\python-1.4b0b\pc\wat_dos\classobject.obj n:\python\&
-python-1.4b0b\pc\wat_dos\cobject.obj n:\python\python-1.4b0b\pc\wat_dos\comp&
-lexobject.obj n:\python\python-1.4b0b\pc\wat_dos\fileobject.obj n:\python\py&
-thon-1.4b0b\pc\wat_dos\floatobject.obj n:\python\python-1.4b0b\pc\wat_dos\fr&
-ameobject.obj n:\python\python-1.4b0b\pc\wat_dos\funcobject.obj n:\python\py&
-thon-1.4b0b\pc\wat_dos\intobject.obj n:\python\python-1.4b0b\pc\wat_dos\list&
-object.obj n:\python\python-1.4b0b\pc\wat_dos\longobject.obj n:\python\pytho&
-n-1.4b0b\pc\wat_dos\mappingobject.obj n:\python\python-1.4b0b\pc\wat_dos\met&
-hodobject.obj n:\python\python-1.4b0b\pc\wat_dos\moduleobject.obj n:\python\&
-python-1.4b0b\pc\wat_dos\object.obj n:\python\python-1.4b0b\pc\wat_dos\range&
-object.obj n:\python\python-1.4b0b\pc\wat_dos\stringobject.obj n:\python\pyt&
-hon-1.4b0b\pc\wat_dos\tupleobject.obj n:\python\python-1.4b0b\pc\wat_dos\typ&
-eobject.obj n:\python\python-1.4b0b\pc\wat_dos\acceler.obj n:\python\python-&
-1.4b0b\pc\wat_dos\grammar1.obj n:\python\python-1.4b0b\pc\wat_dos\myreadline&
-.obj n:\python\python-1.4b0b\pc\wat_dos\node.obj n:\python\python-1.4b0b\pc\&
-wat_dos\parser.obj n:\python\python-1.4b0b\pc\wat_dos\parsetok.obj n:\python&
-\python-1.4b0b\pc\wat_dos\tokenizer.obj n:\python\python-1.4b0b\pc\wat_dos\b&
-ltinmodule.obj n:\python\python-1.4b0b\pc\wat_dos\ceval.obj n:\python\python&
--1.4b0b\pc\wat_dos\cgensupport.obj n:\python\python-1.4b0b\pc\wat_dos\compil&
-e.obj n:\python\python-1.4b0b\pc\wat_dos\errors.obj n:\python\python-1.4b0b\&
-pc\wat_dos\frozen.obj n:\python\python-1.4b0b\pc\wat_dos\getargs.obj n:\pyth&
-on\python-1.4b0b\pc\wat_dos\getcompiler.obj n:\python\python-1.4b0b\pc\wat_d&
-os\getcopyright.obj n:\python\python-1.4b0b\pc\wat_dos\getmtime.obj n:\pytho&
-n\python-1.4b0b\pc\wat_dos\getopt.obj n:\python\python-1.4b0b\pc\wat_dos\get&
-platform.obj n:\python\python-1.4b0b\pc\wat_dos\getversion.obj n:\python\pyt&
-hon-1.4b0b\pc\wat_dos\graminit.obj n:\python\python-1.4b0b\pc\wat_dos\import&
-dl.obj n:\python\python-1.4b0b\pc\wat_dos\marshal.obj n:\python\python-1.4b0&
-b\pc\wat_dos\modsupport.obj n:\python\python-1.4b0b\pc\wat_dos\mystrtoul.obj&
- n:\python\python-1.4b0b\pc\wat_dos\pythonrun.obj n:\python\python-1.4b0b\pc&
-\wat_dos\structmember.obj n:\python\python-1.4b0b\pc\wat_dos\sysmodule.obj n&
-:\python\python-1.4b0b\pc\wat_dos\traceback.obj n:\python\python-1.4b0b\pc\w&
-at_dos\config.obj n:\python\python-1.4b0b\pc\wat_dos\import.obj n:\python\py&
-thon-1.4b0b\pc\wat_dos\posixmodule.obj .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_dos
- @%write pyth_dos.lk1 NAME pyth_dos
- @%append pyth_dos.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
-ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
-.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.ob&
-j,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.&
-obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.&
-obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject&
-.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobjec&
-t.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobj&
-ect.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.o&
-bj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,&
-cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.ob&
-j,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,gr&
-aminit.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.o&
-bj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,import.obj,posixm&
-odule.obj
- @%append pyth_dos.lk1 
- *wlink d all SYS dos4g op m op st=128k op maxe=25 op q op symf @pyth_dos.lk&
-1
-
+!define BLANK ""\r
+n:\python\python-1.4b2\pc\wat_dos\arraymodule.obj : n:\python\python-1.4b2\m&\r
+odules\arraymodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\arraymodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\audioop.obj : n:\python\python-1.4b2\modul&\r
+es\audioop.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\audioop.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\binascii.obj : n:\python\python-1.4b2\modu&\r
+les\binascii.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\binascii.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\cmathmodule.obj : n:\python\python-1.4b2\m&\r
+odules\cmathmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\cmathmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\environment.obj : n:\python\python-1.4b2\m&\r
+odules\environment.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\environment.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\errnomodule.obj : n:\python\python-1.4b2\m&\r
+odules\errnomodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\errnomodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getpath.obj : n:\python\python-1.4b2\modul&\r
+es\getpath.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\getpath.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\imageop.obj : n:\python\python-1.4b2\modul&\r
+es\imageop.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\imageop.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\main.obj : n:\python\python-1.4b2\modules\&\r
+main.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\main.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&\r
+dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\mathmodule.obj : n:\python\python-1.4b2\mo&\r
+dules\mathmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\mathmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\md5c.obj : n:\python\python-1.4b2\modules\&\r
+md5c.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\md5c.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&\r
+dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\md5module.obj : n:\python\python-1.4b2\mod&\r
+ules\md5module.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\md5module.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\newmodule.obj : n:\python\python-1.4b2\mod&\r
+ules\newmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\newmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\operator.obj : n:\python\python-1.4b2\modu&\r
+les\operator.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\operator.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\posixmodule.obj : n:\python\python-1.4b2\m&\r
+odules\posixmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\posixmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\regexmodule.obj : n:\python\python-1.4b2\m&\r
+odules\regexmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\regexmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\regexpr.obj : n:\python\python-1.4b2\modul&\r
+es\regexpr.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\regexpr.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\rgbimgmodule.obj : n:\python\python-1.4b2\&\r
+modules\rgbimgmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\rgbimgmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\rotormodule.obj : n:\python\python-1.4b2\m&\r
+odules\rotormodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\rotormodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\signalmodule.obj : n:\python\python-1.4b2\&\r
+modules\signalmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\signalmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\soundex.obj : n:\python\python-1.4b2\modul&\r
+es\soundex.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\soundex.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\stropmodule.obj : n:\python\python-1.4b2\m&\r
+odules\stropmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\stropmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\structmodule.obj : n:\python\python-1.4b2\&\r
+modules\structmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\structmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\timemodule.obj : n:\python\python-1.4b2\mo&\r
+dules\timemodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\timemodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\yuvconvert.obj : n:\python\python-1.4b2\mo&\r
+dules\yuvconvert.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\modules\yuvconvert.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\abstract.obj : n:\python\python-1.4b2\obje&\r
+cts\abstract.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\abstract.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\accessobject.obj : n:\python\python-1.4b2\&\r
+objects\accessobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\accessobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\classobject.obj : n:\python\python-1.4b2\o&\r
+bjects\classobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\classobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\cobject.obj : n:\python\python-1.4b2\objec&\r
+ts\cobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\cobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\complexobject.obj : n:\python\python-1.4b2&\r
+\objects\complexobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\complexobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -&\r
+w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\fileobject.obj : n:\python\python-1.4b2\ob&\r
+jects\fileobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\fileobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\floatobject.obj : n:\python\python-1.4b2\o&\r
+bjects\floatobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\floatobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\frameobject.obj : n:\python\python-1.4b2\o&\r
+bjects\frameobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\frameobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\funcobject.obj : n:\python\python-1.4b2\ob&\r
+jects\funcobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\funcobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\intobject.obj : n:\python\python-1.4b2\obj&\r
+ects\intobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\intobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\listobject.obj : n:\python\python-1.4b2\ob&\r
+jects\listobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\listobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\longobject.obj : n:\python\python-1.4b2\ob&\r
+jects\longobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\longobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\mappingobject.obj : n:\python\python-1.4b2&\r
+\objects\mappingobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\mappingobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -&\r
+w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\methodobject.obj : n:\python\python-1.4b2\&\r
+objects\methodobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\methodobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\moduleobject.obj : n:\python\python-1.4b2\&\r
+objects\moduleobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\moduleobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\object.obj : n:\python\python-1.4b2\object&\r
+s\object.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\object.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&\r
+ -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\rangeobject.obj : n:\python\python-1.4b2\o&\r
+bjects\rangeobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\rangeobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\stringobject.obj : n:\python\python-1.4b2\&\r
+objects\stringobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\stringobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&\r
+4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\tupleobject.obj : n:\python\python-1.4b2\o&\r
+bjects\tupleobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\tupleobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\typeobject.obj : n:\python\python-1.4b2\ob&\r
+jects\typeobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\objects\typeobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\acceler.obj : n:\python\python-1.4b2\parse&\r
+r\acceler.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\acceler.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&\r
+ -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\grammar1.obj : n:\python\python-1.4b2\pars&\r
+er\grammar1.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\grammar1.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\myreadline.obj : n:\python\python-1.4b2\pa&\r
+rser\myreadline.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\myreadline.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\node.obj : n:\python\python-1.4b2\parser\n&\r
+ode.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\node.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -d&\r
+HAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\parser.obj : n:\python\python-1.4b2\parser&\r
+\parser.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\parser.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &\r
+-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\parsetok.obj : n:\python\python-1.4b2\pars&\r
+er\parsetok.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\parsetok.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\tokenizer.obj : n:\python\python-1.4b2\par&\r
+ser\tokenizer.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\parser\tokenizer.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\bltinmodule.obj : n:\python\python-1.4b2\p&\r
+ython\bltinmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\bltinmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\ceval.obj : n:\python\python-1.4b2\python\&\r
+ceval.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\ceval.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&\r
+dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\cgensupport.obj : n:\python\python-1.4b2\p&\r
+ython\cgensupport.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\cgensupport.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\compile.obj : n:\python\python-1.4b2\pytho&\r
+n\compile.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\compile.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&\r
+ -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\errors.obj : n:\python\python-1.4b2\python&\r
+\errors.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\errors.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &\r
+-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\frozen.obj : n:\python\python-1.4b2\python&\r
+\frozen.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\frozen.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &\r
+-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getargs.obj : n:\python\python-1.4b2\pytho&\r
+n\getargs.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getargs.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&\r
+ -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getcompiler.obj : n:\python\python-1.4b2\p&\r
+ython\getcompiler.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getcompiler.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getcopyright.obj : n:\python\python-1.4b2\&\r
+python\getcopyright.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getcopyright.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getmtime.obj : n:\python\python-1.4b2\pyth&\r
+on\getmtime.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getmtime.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getopt.obj : n:\python\python-1.4b2\python&\r
+\getopt.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getopt.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &\r
+-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getplatform.obj : n:\python\python-1.4b2\p&\r
+ython\getplatform.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getplatform.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &\r
+-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\getversion.obj : n:\python\python-1.4b2\py&\r
+thon\getversion.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\getversion.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\graminit.obj : n:\python\python-1.4b2\pyth&\r
+on\graminit.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\graminit.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\import.obj : n:\python\python-1.4b2\python&\r
+\import.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\import.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &\r
+-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\importdl.obj : n:\python\python-1.4b2\pyth&\r
+on\importdl.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\importdl.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\marshal.obj : n:\python\python-1.4b2\pytho&\r
+n\marshal.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\marshal.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&\r
+ -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\modsupport.obj : n:\python\python-1.4b2\py&\r
+thon\modsupport.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\modsupport.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&\r
+e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\mystrtoul.obj : n:\python\python-1.4b2\pyt&\r
+hon\mystrtoul.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\mystrtoul.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\pythonrun.obj : n:\python\python-1.4b2\pyt&\r
+hon\pythonrun.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\pythonrun.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\structmember.obj : n:\python\python-1.4b2\&\r
+python\structmember.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\structmember.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&\r
+ -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\sysmodule.obj : n:\python\python-1.4b2\pyt&\r
+hon\sysmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\sysmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\traceback.obj : n:\python\python-1.4b2\pyt&\r
+hon\traceback.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\..\python\traceback.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&\r
+25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\config.obj : n:\python\python-1.4b2\pc\con&\r
+fig.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ *wcc386 ..\config.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CON&\r
+FIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_dos\pyth_dos.exe : n:\python\python-1.4b2\pc\w&\r
+at_dos\arraymodule.obj n:\python\python-1.4b2\pc\wat_dos\audioop.obj n:\pyth&\r
+on\python-1.4b2\pc\wat_dos\binascii.obj n:\python\python-1.4b2\pc\wat_dos\cm&\r
+athmodule.obj n:\python\python-1.4b2\pc\wat_dos\environment.obj n:\python\py&\r
+thon-1.4b2\pc\wat_dos\errnomodule.obj n:\python\python-1.4b2\pc\wat_dos\getp&\r
+ath.obj n:\python\python-1.4b2\pc\wat_dos\imageop.obj n:\python\python-1.4b2&\r
+\pc\wat_dos\main.obj n:\python\python-1.4b2\pc\wat_dos\mathmodule.obj n:\pyt&\r
+hon\python-1.4b2\pc\wat_dos\md5c.obj n:\python\python-1.4b2\pc\wat_dos\md5mo&\r
+dule.obj n:\python\python-1.4b2\pc\wat_dos\newmodule.obj n:\python\python-1.&\r
+4b2\pc\wat_dos\operator.obj n:\python\python-1.4b2\pc\wat_dos\posixmodule.ob&\r
+j n:\python\python-1.4b2\pc\wat_dos\regexmodule.obj n:\python\python-1.4b2\p&\r
+c\wat_dos\regexpr.obj n:\python\python-1.4b2\pc\wat_dos\rgbimgmodule.obj n:\&\r
+python\python-1.4b2\pc\wat_dos\rotormodule.obj n:\python\python-1.4b2\pc\wat&\r
+_dos\signalmodule.obj n:\python\python-1.4b2\pc\wat_dos\soundex.obj n:\pytho&\r
+n\python-1.4b2\pc\wat_dos\stropmodule.obj n:\python\python-1.4b2\pc\wat_dos\&\r
+structmodule.obj n:\python\python-1.4b2\pc\wat_dos\timemodule.obj n:\python\&\r
+python-1.4b2\pc\wat_dos\yuvconvert.obj n:\python\python-1.4b2\pc\wat_dos\abs&\r
+tract.obj n:\python\python-1.4b2\pc\wat_dos\accessobject.obj n:\python\pytho&\r
+n-1.4b2\pc\wat_dos\classobject.obj n:\python\python-1.4b2\pc\wat_dos\cobject&\r
+.obj n:\python\python-1.4b2\pc\wat_dos\complexobject.obj n:\python\python-1.&\r
+4b2\pc\wat_dos\fileobject.obj n:\python\python-1.4b2\pc\wat_dos\floatobject.&\r
+obj n:\python\python-1.4b2\pc\wat_dos\frameobject.obj n:\python\python-1.4b2&\r
+\pc\wat_dos\funcobject.obj n:\python\python-1.4b2\pc\wat_dos\intobject.obj n&\r
+:\python\python-1.4b2\pc\wat_dos\listobject.obj n:\python\python-1.4b2\pc\wa&\r
+t_dos\longobject.obj n:\python\python-1.4b2\pc\wat_dos\mappingobject.obj n:\&\r
+python\python-1.4b2\pc\wat_dos\methodobject.obj n:\python\python-1.4b2\pc\wa&\r
+t_dos\moduleobject.obj n:\python\python-1.4b2\pc\wat_dos\object.obj n:\pytho&\r
+n\python-1.4b2\pc\wat_dos\rangeobject.obj n:\python\python-1.4b2\pc\wat_dos\&\r
+stringobject.obj n:\python\python-1.4b2\pc\wat_dos\tupleobject.obj n:\python&\r
+\python-1.4b2\pc\wat_dos\typeobject.obj n:\python\python-1.4b2\pc\wat_dos\ac&\r
+celer.obj n:\python\python-1.4b2\pc\wat_dos\grammar1.obj n:\python\python-1.&\r
+4b2\pc\wat_dos\myreadline.obj n:\python\python-1.4b2\pc\wat_dos\node.obj n:\&\r
+python\python-1.4b2\pc\wat_dos\parser.obj n:\python\python-1.4b2\pc\wat_dos\&\r
+parsetok.obj n:\python\python-1.4b2\pc\wat_dos\tokenizer.obj n:\python\pytho&\r
+n-1.4b2\pc\wat_dos\bltinmodule.obj n:\python\python-1.4b2\pc\wat_dos\ceval.o&\r
+bj n:\python\python-1.4b2\pc\wat_dos\cgensupport.obj n:\python\python-1.4b2\&\r
+pc\wat_dos\compile.obj n:\python\python-1.4b2\pc\wat_dos\errors.obj n:\pytho&\r
+n\python-1.4b2\pc\wat_dos\frozen.obj n:\python\python-1.4b2\pc\wat_dos\getar&\r
+gs.obj n:\python\python-1.4b2\pc\wat_dos\getcompiler.obj n:\python\python-1.&\r
+4b2\pc\wat_dos\getcopyright.obj n:\python\python-1.4b2\pc\wat_dos\getmtime.o&\r
+bj n:\python\python-1.4b2\pc\wat_dos\getopt.obj n:\python\python-1.4b2\pc\wa&\r
+t_dos\getplatform.obj n:\python\python-1.4b2\pc\wat_dos\getversion.obj n:\py&\r
+thon\python-1.4b2\pc\wat_dos\graminit.obj n:\python\python-1.4b2\pc\wat_dos\&\r
+import.obj n:\python\python-1.4b2\pc\wat_dos\importdl.obj n:\python\python-1&\r
+.4b2\pc\wat_dos\marshal.obj n:\python\python-1.4b2\pc\wat_dos\modsupport.obj&\r
+ n:\python\python-1.4b2\pc\wat_dos\mystrtoul.obj n:\python\python-1.4b2\pc\w&\r
+at_dos\pythonrun.obj n:\python\python-1.4b2\pc\wat_dos\structmember.obj n:\p&\r
+ython\python-1.4b2\pc\wat_dos\sysmodule.obj n:\python\python-1.4b2\pc\wat_do&\r
+s\traceback.obj n:\python\python-1.4b2\pc\wat_dos\config.obj .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_dos\r
+ @%write pyth_dos.lk1 NAME pyth_dos\r
+ @%append pyth_dos.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&\r
+ule.obj,environment.obj,errnomodule.obj,getpath.obj,imageop.obj,main.obj,mat&\r
+hmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,posixmodule.ob&\r
+j,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.&\r
+obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.o&\r
+bj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.o&\r
+bj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.o&\r
+bj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleob&\r
+ject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobj&\r
+ect.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok&\r
+.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,err&\r
+ors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj&\r
+,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.&\r
+obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,&\r
+sysmodule.obj,traceback.obj,config.obj\r
+ @%append pyth_dos.lk1 \r
+ *wlink SYS dos4g op m op st=128K op maxe=25 op q op symf @pyth_dos.lk1\r
+\r
index 81f2879abb93b109267b110fb45bd909e41f2ac4..6ed649d9fb298abd0f4a3fc1735eee4b7333a13d 100755 (executable)
-40
-targetIdent
-0
-MProject
-1
-MComponent
-0
-2
-WString
-3
-EXE
-3
-WString
-5
-dr2en
-1
-0
-1
-4
-MCommand
-0
-5
-MCommand
-0
-6
-MItem
-12
-pyth_dos.exe
-7
-WString
-3
-EXE
-8
-WVList
-2
-9
-MVState
-10
-WString
-5
-WLINK
-11
-WString
-11
-?????Stack:
-0
-12
-WString
-4
-128K
-0
-13
-MVState
-14
-WString
-5
-WLINK
-15
-WString
-11
-?????Stack:
-1
-16
-WString
-4
-128k
-0
-17
-WVList
-0
--1
-1
-1
-0
-18
-WPickList
-75
-19
-MItem
-3
-*.c
-20
-WString
-4
-COBJ
-21
-WVList
-10
-22
-MVState
-23
-WString
-3
-WCC
-24
-WString
-25
-d????Include directories:
-0
-25
-WString
-30
-..; ..\..\Include;$(%watcom)\h
-0
-26
-MVState
-27
-WString
-3
-WCC
-28
-WString
-23
-?????Macro definitions:
-0
-29
-WString
-13
-HAVE_CONFIG_H
-0
-30
-MCState
-31
-WString
-3
-WCC
-32
-WString
-31
-?????Force enums to be type int
-0
-1
-33
-MRState
-34
-WString
-3
-WCC
-35
-WString
-20
-?????Pack structures
-0
-0
-36
-MRState
-37
-WString
-3
-WCC
-38
-WString
-21
-?????4 byte alignment
-0
-1
-39
-MVState
-40
-WString
-3
-WCC
-41
-WString
-25
-d????Include directories:
-1
-42
-WString
-29
-..;..\..\Include;$(%watcom)\h
-0
-43
-MVState
-44
-WString
-3
-WCC
-45
-WString
-23
-?????Macro definitions:
-1
-46
-WString
-13
-HAVE_CONFIG_H
-0
-47
-MCState
-48
-WString
-3
-WCC
-49
-WString
-31
-?????Force enums to be type int
-1
-1
-50
-MRState
-51
-WString
-3
-WCC
-52
-WString
-20
-?????Pack structures
-1
-0
-53
-MRState
-54
-WString
-3
-WCC
-55
-WString
-21
-?????4 byte alignment
-1
-1
-56
-WVList
-0
--1
-1
-1
-0
-57
-MItem
-27
-..\..\modules\arraymodule.c
-58
-WString
-4
-COBJ
-59
-WVList
-0
-60
-WVList
-0
-19
-1
-1
-0
-61
-MItem
-23
-..\..\modules\audioop.c
-62
-WString
-4
-COBJ
-63
-WVList
-0
-64
-WVList
-0
-19
-1
-1
-0
-65
-MItem
-24
-..\..\modules\binascii.c
-66
-WString
-4
-COBJ
-67
-WVList
-0
-68
-WVList
-0
-19
-1
-1
-0
-69
-MItem
-27
-..\..\modules\cmathmodule.c
-70
-WString
-4
-COBJ
-71
-WVList
-0
-72
-WVList
-0
-19
-1
-1
-0
-73
-MItem
-27
-..\..\modules\environment.c
-74
-WString
-4
-COBJ
-75
-WVList
-0
-76
-WVList
-0
-19
-1
-1
-0
-77
-MItem
-23
-..\..\modules\getpath.c
-78
-WString
-4
-COBJ
-79
-WVList
-0
-80
-WVList
-0
-19
-1
-1
-0
-81
-MItem
-23
-..\..\modules\imageop.c
-82
-WString
-4
-COBJ
-83
-WVList
-0
-84
-WVList
-0
-19
-1
-1
-0
-85
-MItem
-20
-..\..\modules\main.c
-86
-WString
-4
-COBJ
-87
-WVList
-0
-88
-WVList
-0
-19
-1
-1
-0
-89
-MItem
-26
-..\..\modules\mathmodule.c
-90
-WString
-4
-COBJ
-91
-WVList
-0
-92
-WVList
-0
-19
-1
-1
-0
-93
-MItem
-20
-..\..\modules\md5c.c
-94
-WString
-4
-COBJ
-95
-WVList
-0
-96
-WVList
-0
-19
-1
-1
-0
-97
-MItem
-25
-..\..\modules\md5module.c
-98
-WString
-4
-COBJ
-99
-WVList
-0
-100
-WVList
-0
-19
-1
-1
-0
-101
-MItem
-25
-..\..\modules\newmodule.c
-102
-WString
-4
-COBJ
-103
-WVList
-0
-104
-WVList
-0
-19
-1
-1
-0
-105
-MItem
-27
-..\..\modules\regexmodule.c
-106
-WString
-4
-COBJ
-107
-WVList
-0
-108
-WVList
-0
-19
-1
-1
-0
-109
-MItem
-23
-..\..\modules\regexpr.c
-110
-WString
-4
-COBJ
-111
-WVList
-0
-112
-WVList
-0
-19
-1
-1
-0
-113
-MItem
-28
-..\..\modules\rgbimgmodule.c
-114
-WString
-4
-COBJ
-115
-WVList
-0
-116
-WVList
-0
-19
-1
-1
-0
-117
-MItem
-27
-..\..\modules\rotormodule.c
-118
-WString
-4
-COBJ
-119
-WVList
-0
-120
-WVList
-0
-19
-1
-1
-0
-121
-MItem
-28
-..\..\modules\signalmodule.c
-122
-WString
-4
-COBJ
-123
-WVList
-0
-124
-WVList
-0
-19
-1
-1
-0
-125
-MItem
-23
-..\..\modules\soundex.c
-126
-WString
-4
-COBJ
-127
-WVList
-0
-128
-WVList
-0
-19
-1
-1
-0
-129
-MItem
-27
-..\..\modules\stropmodule.c
-130
-WString
-4
-COBJ
-131
-WVList
-0
-132
-WVList
-0
-19
-1
-1
-0
-133
-MItem
-28
-..\..\modules\structmodule.c
-134
-WString
-4
-COBJ
-135
-WVList
-0
-136
-WVList
-0
-19
-1
-1
-0
-137
-MItem
-26
-..\..\modules\timemodule.c
-138
-WString
-4
-COBJ
-139
-WVList
-0
-140
-WVList
-0
-19
-1
-1
-0
-141
-MItem
-26
-..\..\modules\yuvconvert.c
-142
-WString
-4
-COBJ
-143
-WVList
-0
-144
-WVList
-0
-19
-1
-1
-0
-145
-MItem
-24
-..\..\objects\abstract.c
-146
-WString
-4
-COBJ
-147
-WVList
-0
-148
-WVList
-0
-19
-1
-1
-0
-149
-MItem
-28
-..\..\objects\accessobject.c
-150
-WString
-4
-COBJ
-151
-WVList
-0
-152
-WVList
-0
-19
-1
-1
-0
-153
-MItem
-27
-..\..\objects\classobject.c
-154
-WString
-4
-COBJ
-155
-WVList
-0
-156
-WVList
-0
-19
-1
-1
-0
-157
-MItem
-23
-..\..\objects\cobject.c
-158
-WString
-4
-COBJ
-159
-WVList
-0
-160
-WVList
-0
-19
-1
-1
-0
-161
-MItem
-29
-..\..\objects\complexobject.c
-162
-WString
-4
-COBJ
-163
-WVList
-0
-164
-WVList
-0
-19
-1
-1
-0
-165
-MItem
-26
-..\..\objects\fileobject.c
-166
-WString
-4
-COBJ
-167
-WVList
-0
-168
-WVList
-0
-19
-1
-1
-0
-169
-MItem
-27
-..\..\objects\floatobject.c
-170
-WString
-4
-COBJ
-171
-WVList
-0
-172
-WVList
-0
-19
-1
-1
-0
-173
-MItem
-27
-..\..\objects\frameobject.c
-174
-WString
-4
-COBJ
-175
-WVList
-0
-176
-WVList
-0
-19
-1
-1
-0
-177
-MItem
-26
-..\..\objects\funcobject.c
-178
-WString
-4
-COBJ
-179
-WVList
-0
-180
-WVList
-0
-19
-1
-1
-0
-181
-MItem
-25
-..\..\objects\intobject.c
-182
-WString
-4
-COBJ
-183
-WVList
-0
-184
-WVList
-0
-19
-1
-1
-0
-185
-MItem
-26
-..\..\objects\listobject.c
-186
-WString
-4
-COBJ
-187
-WVList
-0
-188
-WVList
-0
-19
-1
-1
-0
-189
-MItem
-26
-..\..\objects\longobject.c
-190
-WString
-4
-COBJ
-191
-WVList
-0
-192
-WVList
-0
-19
-1
-1
-0
-193
-MItem
-29
-..\..\objects\mappingobject.c
-194
-WString
-4
-COBJ
-195
-WVList
-0
-196
-WVList
-0
-19
-1
-1
-0
-197
-MItem
-28
-..\..\objects\methodobject.c
-198
-WString
-4
-COBJ
-199
-WVList
-0
-200
-WVList
-0
-19
-1
-1
-0
-201
-MItem
-28
-..\..\objects\moduleobject.c
-202
-WString
-4
-COBJ
-203
-WVList
-0
-204
-WVList
-0
-19
-1
-1
-0
-205
-MItem
-22
-..\..\objects\object.c
-206
-WString
-4
-COBJ
-207
-WVList
-0
-208
-WVList
-0
-19
-1
-1
-0
-209
-MItem
-27
-..\..\objects\rangeobject.c
-210
-WString
-4
-COBJ
-211
-WVList
-0
-212
-WVList
-0
-19
-1
-1
-0
-213
-MItem
-28
-..\..\objects\stringobject.c
-214
-WString
-4
-COBJ
-215
-WVList
-0
-216
-WVList
-0
-19
-1
-1
-0
-217
-MItem
-27
-..\..\objects\tupleobject.c
-218
-WString
-4
-COBJ
-219
-WVList
-0
-220
-WVList
-0
-19
-1
-1
-0
-221
-MItem
-26
-..\..\objects\typeobject.c
-222
-WString
-4
-COBJ
-223
-WVList
-0
-224
-WVList
-0
-19
-1
-1
-0
-225
-MItem
-22
-..\..\parser\acceler.c
-226
-WString
-4
-COBJ
-227
-WVList
-0
-228
-WVList
-0
-19
-1
-1
-0
-229
-MItem
-23
-..\..\parser\grammar1.c
-230
-WString
-4
-COBJ
-231
-WVList
-0
-232
-WVList
-0
-19
-1
-1
-0
-233
-MItem
-25
-..\..\parser\myreadline.c
-234
-WString
-4
-COBJ
-235
-WVList
-0
-236
-WVList
-0
-19
-1
-1
-0
-237
-MItem
-19
-..\..\parser\node.c
-238
-WString
-4
-COBJ
-239
-WVList
-0
-240
-WVList
-0
-19
-1
-1
-0
-241
-MItem
-21
-..\..\parser\parser.c
-242
-WString
-4
-COBJ
-243
-WVList
-0
-244
-WVList
-0
-19
-1
-1
-0
-245
-MItem
-23
-..\..\parser\parsetok.c
-246
-WString
-4
-COBJ
-247
-WVList
-0
-248
-WVList
-0
-19
-1
-1
-0
-249
-MItem
-24
-..\..\parser\tokenizer.c
-250
-WString
-4
-COBJ
-251
-WVList
-0
-252
-WVList
-0
-19
-1
-1
-0
-253
-MItem
-26
-..\..\python\bltinmodule.c
-254
-WString
-4
-COBJ
-255
-WVList
-0
-256
-WVList
-0
-19
-1
-1
-0
-257
-MItem
-20
-..\..\python\ceval.c
-258
-WString
-4
-COBJ
-259
-WVList
-0
-260
-WVList
-0
-19
-1
-1
-0
-261
-MItem
-26
-..\..\python\cgensupport.c
-262
-WString
-4
-COBJ
-263
-WVList
-0
-264
-WVList
-0
-19
-1
-1
-0
-265
-MItem
-22
-..\..\python\compile.c
-266
-WString
-4
-COBJ
-267
-WVList
-0
-268
-WVList
-0
-19
-1
-1
-0
-269
-MItem
-21
-..\..\python\errors.c
-270
-WString
-4
-COBJ
-271
-WVList
-0
-272
-WVList
-0
-19
-1
-1
-0
-273
-MItem
-21
-..\..\python\frozen.c
-274
-WString
-4
-COBJ
-275
-WVList
-0
-276
-WVList
-0
-19
-1
-1
-0
-277
-MItem
-22
-..\..\python\getargs.c
-278
-WString
-4
-COBJ
-279
-WVList
-0
-280
-WVList
-0
-19
-1
-1
-0
-281
-MItem
-26
-..\..\python\getcompiler.c
-282
-WString
-4
-COBJ
-283
-WVList
-0
-284
-WVList
-0
-19
-1
-1
-0
-285
-MItem
-27
-..\..\python\getcopyright.c
-286
-WString
-4
-COBJ
-287
-WVList
-0
-288
-WVList
-0
-19
-1
-1
-0
-289
-MItem
-23
-..\..\python\getmtime.c
-290
-WString
-4
-COBJ
-291
-WVList
-0
-292
-WVList
-0
-19
-1
-1
-0
-293
-MItem
-21
-..\..\python\getopt.c
-294
-WString
-4
-COBJ
-295
-WVList
-0
-296
-WVList
-0
-19
-1
-1
-0
-297
-MItem
-26
-..\..\python\getplatform.c
-298
-WString
-4
-COBJ
-299
-WVList
-0
-300
-WVList
-0
-19
-1
-1
-0
-301
-MItem
-25
-..\..\python\getversion.c
-302
-WString
-4
-COBJ
-303
-WVList
-0
-304
-WVList
-0
-19
-1
-1
-0
-305
-MItem
-23
-..\..\python\graminit.c
-306
-WString
-4
-COBJ
-307
-WVList
-0
-308
-WVList
-0
-19
-1
-1
-0
-309
-MItem
-21
-..\..\python\import.c
-310
-WString
-4
-COBJ
-311
-WVList
-0
-312
-WVList
-0
-19
-1
-1
-0
-313
-MItem
-23
-..\..\python\importdl.c
-314
-WString
-4
-COBJ
-315
-WVList
-0
-316
-WVList
-0
-19
-1
-1
-0
-317
-MItem
-22
-..\..\python\marshal.c
-318
-WString
-4
-COBJ
-319
-WVList
-0
-320
-WVList
-0
-19
-1
-1
-0
-321
-MItem
-25
-..\..\python\modsupport.c
-322
-WString
-4
-COBJ
-323
-WVList
-0
-324
-WVList
-0
-19
-1
-1
-0
-325
-MItem
-24
-..\..\python\mystrtoul.c
-326
-WString
-4
-COBJ
-327
-WVList
-0
-328
-WVList
-0
-19
-1
-1
-0
-329
-MItem
-24
-..\..\python\pythonrun.c
-330
-WString
-4
-COBJ
-331
-WVList
-0
-332
-WVList
-0
-19
-1
-1
-0
-333
-MItem
-27
-..\..\python\structmember.c
-334
-WString
-4
-COBJ
-335
-WVList
-0
-336
-WVList
-0
-19
-1
-1
-0
-337
-MItem
-24
-..\..\python\sysmodule.c
-338
-WString
-4
-COBJ
-339
-WVList
-0
-340
-WVList
-0
-19
-1
-1
-0
-341
-MItem
-24
-..\..\python\traceback.c
-342
-WString
-4
-COBJ
-343
-WVList
-0
-344
-WVList
-0
-19
-1
-1
-0
-345
-MItem
-11
-..\config.c
-346
-WString
-4
-COBJ
-347
-WVList
-0
-348
-WVList
-0
-19
-1
-1
-0
-349
-MItem
-16
-..\posixmodule.c
-350
-WString
-4
-COBJ
-351
-WVList
-0
-352
-WVList
-0
-19
-1
-1
-0
+40\r
+targetIdent\r
+0\r
+MProject\r
+1\r
+MComponent\r
+0\r
+2\r
+WString\r
+3\r
+EXE\r
+3\r
+WString\r
+5\r
+dr2en\r
+1\r
+0\r
+0\r
+4\r
+MCommand\r
+0\r
+5\r
+MCommand\r
+0\r
+6\r
+MItem\r
+12\r
+pyth_dos.exe\r
+7\r
+WString\r
+3\r
+EXE\r
+8\r
+WVList\r
+2\r
+9\r
+MVState\r
+10\r
+WString\r
+5\r
+WLINK\r
+11\r
+WString\r
+11\r
+?????Stack:\r
+0\r
+12\r
+WString\r
+4\r
+128K\r
+0\r
+13\r
+MVState\r
+14\r
+WString\r
+5\r
+WLINK\r
+15\r
+WString\r
+11\r
+?????Stack:\r
+1\r
+16\r
+WString\r
+4\r
+128k\r
+0\r
+17\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+18\r
+WPickList\r
+77\r
+19\r
+MItem\r
+3\r
+*.c\r
+20\r
+WString\r
+4\r
+COBJ\r
+21\r
+WVList\r
+10\r
+22\r
+MVState\r
+23\r
+WString\r
+3\r
+WCC\r
+24\r
+WString\r
+25\r
+d????Include directories:\r
+0\r
+25\r
+WString\r
+30\r
+..; ..\..\Include;$(%watcom)\h\r
+0\r
+26\r
+MVState\r
+27\r
+WString\r
+3\r
+WCC\r
+28\r
+WString\r
+23\r
+?????Macro definitions:\r
+0\r
+29\r
+WString\r
+13\r
+HAVE_CONFIG_H\r
+0\r
+30\r
+MCState\r
+31\r
+WString\r
+3\r
+WCC\r
+32\r
+WString\r
+31\r
+?????Force enums to be type int\r
+0\r
+1\r
+33\r
+MRState\r
+34\r
+WString\r
+3\r
+WCC\r
+35\r
+WString\r
+20\r
+?????Pack structures\r
+0\r
+0\r
+36\r
+MRState\r
+37\r
+WString\r
+3\r
+WCC\r
+38\r
+WString\r
+21\r
+?????4 byte alignment\r
+0\r
+1\r
+39\r
+MVState\r
+40\r
+WString\r
+3\r
+WCC\r
+41\r
+WString\r
+25\r
+d????Include directories:\r
+1\r
+42\r
+WString\r
+29\r
+..;..\..\Include;$(%watcom)\h\r
+0\r
+43\r
+MVState\r
+44\r
+WString\r
+3\r
+WCC\r
+45\r
+WString\r
+23\r
+?????Macro definitions:\r
+1\r
+46\r
+WString\r
+13\r
+HAVE_CONFIG_H\r
+0\r
+47\r
+MCState\r
+48\r
+WString\r
+3\r
+WCC\r
+49\r
+WString\r
+31\r
+?????Force enums to be type int\r
+1\r
+1\r
+50\r
+MRState\r
+51\r
+WString\r
+3\r
+WCC\r
+52\r
+WString\r
+20\r
+?????Pack structures\r
+1\r
+0\r
+53\r
+MRState\r
+54\r
+WString\r
+3\r
+WCC\r
+55\r
+WString\r
+21\r
+?????4 byte alignment\r
+1\r
+1\r
+56\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+57\r
+MItem\r
+27\r
+..\..\modules\arraymodule.c\r
+58\r
+WString\r
+4\r
+COBJ\r
+59\r
+WVList\r
+0\r
+60\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+61\r
+MItem\r
+23\r
+..\..\modules\audioop.c\r
+62\r
+WString\r
+4\r
+COBJ\r
+63\r
+WVList\r
+0\r
+64\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+65\r
+MItem\r
+24\r
+..\..\modules\binascii.c\r
+66\r
+WString\r
+4\r
+COBJ\r
+67\r
+WVList\r
+0\r
+68\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+69\r
+MItem\r
+27\r
+..\..\modules\cmathmodule.c\r
+70\r
+WString\r
+4\r
+COBJ\r
+71\r
+WVList\r
+0\r
+72\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+73\r
+MItem\r
+27\r
+..\..\modules\environment.c\r
+74\r
+WString\r
+4\r
+COBJ\r
+75\r
+WVList\r
+0\r
+76\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+77\r
+MItem\r
+27\r
+..\..\modules\errnomodule.c\r
+78\r
+WString\r
+4\r
+COBJ\r
+79\r
+WVList\r
+0\r
+80\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+81\r
+MItem\r
+23\r
+..\..\modules\getpath.c\r
+82\r
+WString\r
+4\r
+COBJ\r
+83\r
+WVList\r
+0\r
+84\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+85\r
+MItem\r
+23\r
+..\..\modules\imageop.c\r
+86\r
+WString\r
+4\r
+COBJ\r
+87\r
+WVList\r
+0\r
+88\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+89\r
+MItem\r
+20\r
+..\..\modules\main.c\r
+90\r
+WString\r
+4\r
+COBJ\r
+91\r
+WVList\r
+0\r
+92\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+93\r
+MItem\r
+26\r
+..\..\modules\mathmodule.c\r
+94\r
+WString\r
+4\r
+COBJ\r
+95\r
+WVList\r
+0\r
+96\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+97\r
+MItem\r
+20\r
+..\..\modules\md5c.c\r
+98\r
+WString\r
+4\r
+COBJ\r
+99\r
+WVList\r
+0\r
+100\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+101\r
+MItem\r
+25\r
+..\..\modules\md5module.c\r
+102\r
+WString\r
+4\r
+COBJ\r
+103\r
+WVList\r
+0\r
+104\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+105\r
+MItem\r
+25\r
+..\..\modules\newmodule.c\r
+106\r
+WString\r
+4\r
+COBJ\r
+107\r
+WVList\r
+0\r
+108\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+109\r
+MItem\r
+24\r
+..\..\modules\operator.c\r
+110\r
+WString\r
+4\r
+COBJ\r
+111\r
+WVList\r
+0\r
+112\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+113\r
+MItem\r
+27\r
+..\..\modules\posixmodule.c\r
+114\r
+WString\r
+4\r
+COBJ\r
+115\r
+WVList\r
+0\r
+116\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+117\r
+MItem\r
+27\r
+..\..\modules\regexmodule.c\r
+118\r
+WString\r
+4\r
+COBJ\r
+119\r
+WVList\r
+0\r
+120\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+121\r
+MItem\r
+23\r
+..\..\modules\regexpr.c\r
+122\r
+WString\r
+4\r
+COBJ\r
+123\r
+WVList\r
+0\r
+124\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+125\r
+MItem\r
+28\r
+..\..\modules\rgbimgmodule.c\r
+126\r
+WString\r
+4\r
+COBJ\r
+127\r
+WVList\r
+0\r
+128\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+129\r
+MItem\r
+27\r
+..\..\modules\rotormodule.c\r
+130\r
+WString\r
+4\r
+COBJ\r
+131\r
+WVList\r
+0\r
+132\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+133\r
+MItem\r
+28\r
+..\..\modules\signalmodule.c\r
+134\r
+WString\r
+4\r
+COBJ\r
+135\r
+WVList\r
+0\r
+136\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+137\r
+MItem\r
+23\r
+..\..\modules\soundex.c\r
+138\r
+WString\r
+4\r
+COBJ\r
+139\r
+WVList\r
+0\r
+140\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+141\r
+MItem\r
+27\r
+..\..\modules\stropmodule.c\r
+142\r
+WString\r
+4\r
+COBJ\r
+143\r
+WVList\r
+0\r
+144\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+145\r
+MItem\r
+28\r
+..\..\modules\structmodule.c\r
+146\r
+WString\r
+4\r
+COBJ\r
+147\r
+WVList\r
+0\r
+148\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+149\r
+MItem\r
+26\r
+..\..\modules\timemodule.c\r
+150\r
+WString\r
+4\r
+COBJ\r
+151\r
+WVList\r
+0\r
+152\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+153\r
+MItem\r
+26\r
+..\..\modules\yuvconvert.c\r
+154\r
+WString\r
+4\r
+COBJ\r
+155\r
+WVList\r
+0\r
+156\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+157\r
+MItem\r
+24\r
+..\..\objects\abstract.c\r
+158\r
+WString\r
+4\r
+COBJ\r
+159\r
+WVList\r
+0\r
+160\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+161\r
+MItem\r
+28\r
+..\..\objects\accessobject.c\r
+162\r
+WString\r
+4\r
+COBJ\r
+163\r
+WVList\r
+0\r
+164\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+165\r
+MItem\r
+27\r
+..\..\objects\classobject.c\r
+166\r
+WString\r
+4\r
+COBJ\r
+167\r
+WVList\r
+0\r
+168\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+169\r
+MItem\r
+23\r
+..\..\objects\cobject.c\r
+170\r
+WString\r
+4\r
+COBJ\r
+171\r
+WVList\r
+0\r
+172\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+173\r
+MItem\r
+29\r
+..\..\objects\complexobject.c\r
+174\r
+WString\r
+4\r
+COBJ\r
+175\r
+WVList\r
+0\r
+176\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+177\r
+MItem\r
+26\r
+..\..\objects\fileobject.c\r
+178\r
+WString\r
+4\r
+COBJ\r
+179\r
+WVList\r
+0\r
+180\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+181\r
+MItem\r
+27\r
+..\..\objects\floatobject.c\r
+182\r
+WString\r
+4\r
+COBJ\r
+183\r
+WVList\r
+0\r
+184\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+185\r
+MItem\r
+27\r
+..\..\objects\frameobject.c\r
+186\r
+WString\r
+4\r
+COBJ\r
+187\r
+WVList\r
+0\r
+188\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+189\r
+MItem\r
+26\r
+..\..\objects\funcobject.c\r
+190\r
+WString\r
+4\r
+COBJ\r
+191\r
+WVList\r
+0\r
+192\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+193\r
+MItem\r
+25\r
+..\..\objects\intobject.c\r
+194\r
+WString\r
+4\r
+COBJ\r
+195\r
+WVList\r
+0\r
+196\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+197\r
+MItem\r
+26\r
+..\..\objects\listobject.c\r
+198\r
+WString\r
+4\r
+COBJ\r
+199\r
+WVList\r
+0\r
+200\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+201\r
+MItem\r
+26\r
+..\..\objects\longobject.c\r
+202\r
+WString\r
+4\r
+COBJ\r
+203\r
+WVList\r
+0\r
+204\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+205\r
+MItem\r
+29\r
+..\..\objects\mappingobject.c\r
+206\r
+WString\r
+4\r
+COBJ\r
+207\r
+WVList\r
+0\r
+208\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+209\r
+MItem\r
+28\r
+..\..\objects\methodobject.c\r
+210\r
+WString\r
+4\r
+COBJ\r
+211\r
+WVList\r
+0\r
+212\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+213\r
+MItem\r
+28\r
+..\..\objects\moduleobject.c\r
+214\r
+WString\r
+4\r
+COBJ\r
+215\r
+WVList\r
+0\r
+216\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+217\r
+MItem\r
+22\r
+..\..\objects\object.c\r
+218\r
+WString\r
+4\r
+COBJ\r
+219\r
+WVList\r
+0\r
+220\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+221\r
+MItem\r
+27\r
+..\..\objects\rangeobject.c\r
+222\r
+WString\r
+4\r
+COBJ\r
+223\r
+WVList\r
+0\r
+224\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+225\r
+MItem\r
+28\r
+..\..\objects\stringobject.c\r
+226\r
+WString\r
+4\r
+COBJ\r
+227\r
+WVList\r
+0\r
+228\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+229\r
+MItem\r
+27\r
+..\..\objects\tupleobject.c\r
+230\r
+WString\r
+4\r
+COBJ\r
+231\r
+WVList\r
+0\r
+232\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+233\r
+MItem\r
+26\r
+..\..\objects\typeobject.c\r
+234\r
+WString\r
+4\r
+COBJ\r
+235\r
+WVList\r
+0\r
+236\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+237\r
+MItem\r
+22\r
+..\..\parser\acceler.c\r
+238\r
+WString\r
+4\r
+COBJ\r
+239\r
+WVList\r
+0\r
+240\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+241\r
+MItem\r
+23\r
+..\..\parser\grammar1.c\r
+242\r
+WString\r
+4\r
+COBJ\r
+243\r
+WVList\r
+0\r
+244\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+245\r
+MItem\r
+25\r
+..\..\parser\myreadline.c\r
+246\r
+WString\r
+4\r
+COBJ\r
+247\r
+WVList\r
+0\r
+248\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+249\r
+MItem\r
+19\r
+..\..\parser\node.c\r
+250\r
+WString\r
+4\r
+COBJ\r
+251\r
+WVList\r
+0\r
+252\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+253\r
+MItem\r
+21\r
+..\..\parser\parser.c\r
+254\r
+WString\r
+4\r
+COBJ\r
+255\r
+WVList\r
+0\r
+256\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+257\r
+MItem\r
+23\r
+..\..\parser\parsetok.c\r
+258\r
+WString\r
+4\r
+COBJ\r
+259\r
+WVList\r
+0\r
+260\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+261\r
+MItem\r
+24\r
+..\..\parser\tokenizer.c\r
+262\r
+WString\r
+4\r
+COBJ\r
+263\r
+WVList\r
+0\r
+264\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+265\r
+MItem\r
+26\r
+..\..\python\bltinmodule.c\r
+266\r
+WString\r
+4\r
+COBJ\r
+267\r
+WVList\r
+0\r
+268\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+269\r
+MItem\r
+20\r
+..\..\python\ceval.c\r
+270\r
+WString\r
+4\r
+COBJ\r
+271\r
+WVList\r
+0\r
+272\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+273\r
+MItem\r
+26\r
+..\..\python\cgensupport.c\r
+274\r
+WString\r
+4\r
+COBJ\r
+275\r
+WVList\r
+0\r
+276\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+277\r
+MItem\r
+22\r
+..\..\python\compile.c\r
+278\r
+WString\r
+4\r
+COBJ\r
+279\r
+WVList\r
+0\r
+280\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+281\r
+MItem\r
+21\r
+..\..\python\errors.c\r
+282\r
+WString\r
+4\r
+COBJ\r
+283\r
+WVList\r
+0\r
+284\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+285\r
+MItem\r
+21\r
+..\..\python\frozen.c\r
+286\r
+WString\r
+4\r
+COBJ\r
+287\r
+WVList\r
+0\r
+288\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+289\r
+MItem\r
+22\r
+..\..\python\getargs.c\r
+290\r
+WString\r
+4\r
+COBJ\r
+291\r
+WVList\r
+0\r
+292\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+293\r
+MItem\r
+26\r
+..\..\python\getcompiler.c\r
+294\r
+WString\r
+4\r
+COBJ\r
+295\r
+WVList\r
+0\r
+296\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+297\r
+MItem\r
+27\r
+..\..\python\getcopyright.c\r
+298\r
+WString\r
+4\r
+COBJ\r
+299\r
+WVList\r
+0\r
+300\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+301\r
+MItem\r
+23\r
+..\..\python\getmtime.c\r
+302\r
+WString\r
+4\r
+COBJ\r
+303\r
+WVList\r
+0\r
+304\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+305\r
+MItem\r
+21\r
+..\..\python\getopt.c\r
+306\r
+WString\r
+4\r
+COBJ\r
+307\r
+WVList\r
+0\r
+308\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+309\r
+MItem\r
+26\r
+..\..\python\getplatform.c\r
+310\r
+WString\r
+4\r
+COBJ\r
+311\r
+WVList\r
+0\r
+312\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+313\r
+MItem\r
+25\r
+..\..\python\getversion.c\r
+314\r
+WString\r
+4\r
+COBJ\r
+315\r
+WVList\r
+0\r
+316\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+317\r
+MItem\r
+23\r
+..\..\python\graminit.c\r
+318\r
+WString\r
+4\r
+COBJ\r
+319\r
+WVList\r
+0\r
+320\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+321\r
+MItem\r
+21\r
+..\..\python\import.c\r
+322\r
+WString\r
+4\r
+COBJ\r
+323\r
+WVList\r
+0\r
+324\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+325\r
+MItem\r
+23\r
+..\..\python\importdl.c\r
+326\r
+WString\r
+4\r
+COBJ\r
+327\r
+WVList\r
+0\r
+328\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+329\r
+MItem\r
+22\r
+..\..\python\marshal.c\r
+330\r
+WString\r
+4\r
+COBJ\r
+331\r
+WVList\r
+0\r
+332\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+333\r
+MItem\r
+25\r
+..\..\python\modsupport.c\r
+334\r
+WString\r
+4\r
+COBJ\r
+335\r
+WVList\r
+0\r
+336\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+337\r
+MItem\r
+24\r
+..\..\python\mystrtoul.c\r
+338\r
+WString\r
+4\r
+COBJ\r
+339\r
+WVList\r
+0\r
+340\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+341\r
+MItem\r
+24\r
+..\..\python\pythonrun.c\r
+342\r
+WString\r
+4\r
+COBJ\r
+343\r
+WVList\r
+0\r
+344\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+345\r
+MItem\r
+27\r
+..\..\python\structmember.c\r
+346\r
+WString\r
+4\r
+COBJ\r
+347\r
+WVList\r
+0\r
+348\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+349\r
+MItem\r
+24\r
+..\..\python\sysmodule.c\r
+350\r
+WString\r
+4\r
+COBJ\r
+351\r
+WVList\r
+0\r
+352\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+353\r
+MItem\r
+24\r
+..\..\python\traceback.c\r
+354\r
+WString\r
+4\r
+COBJ\r
+355\r
+WVList\r
+0\r
+356\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
+357\r
+MItem\r
+11\r
+..\config.c\r
+358\r
+WString\r
+4\r
+COBJ\r
+359\r
+WVList\r
+0\r
+360\r
+WVList\r
+0\r
+19\r
+1\r
+1\r
+0\r
index d8993dbccb82a68e1d33fd0ce99da4c7d567baa7..13b94b124ea7990714a4568aa77922d1e96ecb3f 100755 (executable)
@@ -1,3 +1,3 @@
-NAME pyth_os2
-FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixmodule.obj
-
+NAME pyth_os2\r
+FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj\r
+\r
index 4495d49fa21615f2f8cad388e50b9e03fb367676..5ba0828b771192323b454a9fd73116a963c417a6 100755 (executable)
-!define BLANK ""
-n:\python\python-1.4b0b\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b0b&
-\modules\arraymodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\audioop.obj : n:\python\python-1.4b0b\mod&
-ules\audioop.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\binascii.obj : n:\python\python-1.4b0b\mo&
-dules\binascii.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b0b&
-\modules\cmathmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\environment.obj : n:\python\python-1.4b0b&
-\modules\environment.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getpath.obj : n:\python\python-1.4b0b\mod&
-ules\getpath.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\imageop.obj : n:\python\python-1.4b0b\mod&
-ules\imageop.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\main.obj : n:\python\python-1.4b0b\module&
-s\main.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
-2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b0b\&
-modules\mathmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\md5c.obj : n:\python\python-1.4b0b\module&
-s\md5c.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
-2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\md5module.obj : n:\python\python-1.4b0b\m&
-odules\md5module.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\newmodule.obj : n:\python\python-1.4b0b\m&
-odules\newmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b0b&
-\modules\regexmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\regexpr.obj : n:\python\python-1.4b0b\mod&
-ules\regexpr.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b0&
-b\modules\rgbimgmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b0b&
-\modules\rotormodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b0&
-b\modules\signalmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\soundex.obj : n:\python\python-1.4b0b\mod&
-ules\soundex.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b0b&
-\modules\stropmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\structmodule.obj : n:\python\python-1.4b0&
-b\modules\structmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\timemodule.obj : n:\python\python-1.4b0b\&
-modules\timemodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b0b\&
-modules\yuvconvert.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\abstract.obj : n:\python\python-1.4b0b\ob&
-jects\abstract.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\accessobject.obj : n:\python\python-1.4b0&
-b\objects\accessobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\classobject.obj : n:\python\python-1.4b0b&
-\objects\classobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\cobject.obj : n:\python\python-1.4b0b\obj&
-ects\cobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\complexobject.obj : n:\python\python-1.4b&
-0b\objects\complexobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
-TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj : n:\python\python-1.4b0b\&
-objects\fileobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\floatobject.obj : n:\python\python-1.4b0b&
-\objects\floatobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\frameobject.obj : n:\python\python-1.4b0b&
-\objects\frameobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj : n:\python\python-1.4b0b\&
-objects\funcobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\intobject.obj : n:\python\python-1.4b0b\o&
-bjects\intobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\listobject.obj : n:\python\python-1.4b0b\&
-objects\listobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\longobject.obj : n:\python\python-1.4b0b\&
-objects\longobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b&
-0b\objects\mappingobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
-TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\methodobject.obj : n:\python\python-1.4b0&
-b\objects\methodobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b0&
-b\objects\moduleobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\object.obj : n:\python\python-1.4b0b\obje&
-cts\object.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
-os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b0b&
-\objects\rangeobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj : n:\python\python-1.4b0&
-b\objects\stringobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
-COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b0b&
-\objects\tupleobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\typeobject.obj : n:\python\python-1.4b0b\&
-objects\typeobject.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\acceler.obj : n:\python\python-1.4b0b\par&
-ser\acceler.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
-os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\grammar1.obj : n:\python\python-1.4b0b\pa&
-rser\grammar1.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\myreadline.obj : n:\python\python-1.4b0b\&
-parser\myreadline.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\node.obj : n:\python\python-1.4b0b\parser&
-\node.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2&
- -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\parser.obj : n:\python\python-1.4b0b\pars&
-er\parser.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
-s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj : n:\python\python-1.4b0b\pa&
-rser\parsetok.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b0b\p&
-arser\tokenizer.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b0b&
-\python\bltinmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\ceval.obj : n:\python\python-1.4b0b\pytho&
-n\ceval.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
-2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b0b&
-\python\cgensupport.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\compile.obj : n:\python\python-1.4b0b\pyt&
-hon\compile.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
-os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\errors.obj : n:\python\python-1.4b0b\pyth&
-on\errors.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
-s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\frozen.obj : n:\python\python-1.4b0b\pyth&
-on\frozen.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
-s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getargs.obj : n:\python\python-1.4b0b\pyt&
-hon\getargs.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
-os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b0b&
-\python\getcompiler.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b0&
-b\python\getcopyright.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj : n:\python\python-1.4b0b\py&
-thon\getmtime.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getopt.obj : n:\python\python-1.4b0b\pyth&
-on\getopt.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
-s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getplatform.obj : n:\python\python-1.4b0b&
-\python\getplatform.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
-M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\getversion.obj : n:\python\python-1.4b0b\&
-python\getversion.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\graminit.obj : n:\python\python-1.4b0b\py&
-thon\graminit.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\import.obj : n:\python\python-1.4b0b\pyth&
-on\import.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\import.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
-s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\importdl.obj : n:\python\python-1.4b0b\py&
-thon\importdl.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
-\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\marshal.obj : n:\python\python-1.4b0b\pyt&
-hon\marshal.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
-os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj : n:\python\python-1.4b0b\&
-python\modsupport.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
-\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b0b\p&
-ython\mystrtoul.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b0b\p&
-ython\pythonrun.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\structmember.obj : n:\python\python-1.4b0&
-b\python\structmember.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
-OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b0b\p&
-ython\sysmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\traceback.obj : n:\python\python-1.4b0b\p&
-ython\traceback.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
-h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\config.obj : n:\python\python-1.4b0b\pc\c&
-onfig.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w4 -e2&
-5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b0b&
-\pc\posixmodule.c .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- *wcc386 ..\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w&
-4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
-
-n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b0b\pc&
-\wat_os2\arraymodule.obj n:\python\python-1.4b0b\pc\wat_os2\audioop.obj n:\p&
-ython\python-1.4b0b\pc\wat_os2\binascii.obj n:\python\python-1.4b0b\pc\wat_o&
-s2\cmathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\environment.obj n:\pyt&
-hon\python-1.4b0b\pc\wat_os2\getpath.obj n:\python\python-1.4b0b\pc\wat_os2\&
-imageop.obj n:\python\python-1.4b0b\pc\wat_os2\main.obj n:\python\python-1.4&
-b0b\pc\wat_os2\mathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\md5c.obj n:&
-\python\python-1.4b0b\pc\wat_os2\md5module.obj n:\python\python-1.4b0b\pc\wa&
-t_os2\newmodule.obj n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj n:\py&
-thon\python-1.4b0b\pc\wat_os2\regexpr.obj n:\python\python-1.4b0b\pc\wat_os2&
-\rgbimgmodule.obj n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj n:\pyth&
-on\python-1.4b0b\pc\wat_os2\signalmodule.obj n:\python\python-1.4b0b\pc\wat_&
-os2\soundex.obj n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj n:\python&
-\python-1.4b0b\pc\wat_os2\structmodule.obj n:\python\python-1.4b0b\pc\wat_os&
-2\timemodule.obj n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj n:\python&
-\python-1.4b0b\pc\wat_os2\abstract.obj n:\python\python-1.4b0b\pc\wat_os2\ac&
-cessobject.obj n:\python\python-1.4b0b\pc\wat_os2\classobject.obj n:\python\&
-python-1.4b0b\pc\wat_os2\cobject.obj n:\python\python-1.4b0b\pc\wat_os2\comp&
-lexobject.obj n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj n:\python\py&
-thon-1.4b0b\pc\wat_os2\floatobject.obj n:\python\python-1.4b0b\pc\wat_os2\fr&
-ameobject.obj n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj n:\python\py&
-thon-1.4b0b\pc\wat_os2\intobject.obj n:\python\python-1.4b0b\pc\wat_os2\list&
-object.obj n:\python\python-1.4b0b\pc\wat_os2\longobject.obj n:\python\pytho&
-n-1.4b0b\pc\wat_os2\mappingobject.obj n:\python\python-1.4b0b\pc\wat_os2\met&
-hodobject.obj n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj n:\python\&
-python-1.4b0b\pc\wat_os2\object.obj n:\python\python-1.4b0b\pc\wat_os2\range&
-object.obj n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj n:\python\pyt&
-hon-1.4b0b\pc\wat_os2\tupleobject.obj n:\python\python-1.4b0b\pc\wat_os2\typ&
-eobject.obj n:\python\python-1.4b0b\pc\wat_os2\acceler.obj n:\python\python-&
-1.4b0b\pc\wat_os2\grammar1.obj n:\python\python-1.4b0b\pc\wat_os2\myreadline&
-.obj n:\python\python-1.4b0b\pc\wat_os2\node.obj n:\python\python-1.4b0b\pc\&
-wat_os2\parser.obj n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj n:\python&
-\python-1.4b0b\pc\wat_os2\tokenizer.obj n:\python\python-1.4b0b\pc\wat_os2\b&
-ltinmodule.obj n:\python\python-1.4b0b\pc\wat_os2\ceval.obj n:\python\python&
--1.4b0b\pc\wat_os2\cgensupport.obj n:\python\python-1.4b0b\pc\wat_os2\compil&
-e.obj n:\python\python-1.4b0b\pc\wat_os2\errors.obj n:\python\python-1.4b0b\&
-pc\wat_os2\frozen.obj n:\python\python-1.4b0b\pc\wat_os2\getargs.obj n:\pyth&
-on\python-1.4b0b\pc\wat_os2\getcompiler.obj n:\python\python-1.4b0b\pc\wat_o&
-s2\getcopyright.obj n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj n:\pytho&
-n\python-1.4b0b\pc\wat_os2\getopt.obj n:\python\python-1.4b0b\pc\wat_os2\get&
-platform.obj n:\python\python-1.4b0b\pc\wat_os2\getversion.obj n:\python\pyt&
-hon-1.4b0b\pc\wat_os2\graminit.obj n:\python\python-1.4b0b\pc\wat_os2\import&
-.obj n:\python\python-1.4b0b\pc\wat_os2\importdl.obj n:\python\python-1.4b0b&
-\pc\wat_os2\marshal.obj n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj n:&
-\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b0b\pc\wa&
-t_os2\pythonrun.obj n:\python\python-1.4b0b\pc\wat_os2\structmember.obj n:\p&
-ython\python-1.4b0b\pc\wat_os2\sysmodule.obj n:\python\python-1.4b0b\pc\wat_&
-os2\traceback.obj n:\python\python-1.4b0b\pc\wat_os2\config.obj n:\python\py&
-thon-1.4b0b\pc\wat_os2\posixmodule.obj .AUTODEPEND
- @n:
- cd n:\python\python-1.4b0b\pc\wat_os2
- @%write pyth_os2.lk1 NAME pyth_os2
- @%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
-ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
-.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.ob&
-j,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.&
-obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.&
-obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject&
-.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobjec&
-t.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobj&
-ect.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.o&
-bj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,&
-cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.ob&
-j,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,gr&
-aminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,&
-pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixm&
-odule.obj
- @%append pyth_os2.lk1 
-!ifneq BLANK ""
- *wlib -q -n -b pyth_os2.imp 
- @%append pyth_os2.lk1 LIBR pyth_os2.imp
-!endif
- *wlink SYS os2v2 op m op st=128k op maxe=25 op q op symf @pyth_os2.lk1
-!ifneq BLANK ""
- rc -i $[: -i C:\WATCOM\h -i C:\WATCOM\h\os2  pyth_os2.exe
-!endif
-
+!define BLANK ""\r
+n:\python\python-1.4b2\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b2\m&\r
+odules\arraymodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\audioop.obj : n:\python\python-1.4b2\modul&\r
+es\audioop.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\binascii.obj : n:\python\python-1.4b2\modu&\r
+les\binascii.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b2\m&\r
+odules\cmathmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\environment.obj : n:\python\python-1.4b2\m&\r
+odules\environment.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getpath.obj : n:\python\python-1.4b2\modul&\r
+es\getpath.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\imageop.obj : n:\python\python-1.4b2\modul&\r
+es\imageop.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\main.obj : n:\python\python-1.4b2\modules\&\r
+main.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&\r
+2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b2\mo&\r
+dules\mathmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\md5c.obj : n:\python\python-1.4b2\modules\&\r
+md5c.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&\r
+2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\md5module.obj : n:\python\python-1.4b2\mod&\r
+ules\md5module.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\newmodule.obj : n:\python\python-1.4b2\mod&\r
+ules\newmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b2\m&\r
+odules\posixmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b2\m&\r
+odules\regexmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\regexpr.obj : n:\python\python-1.4b2\modul&\r
+es\regexpr.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b2\&\r
+modules\rgbimgmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b2\m&\r
+odules\rotormodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b2\&\r
+modules\signalmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\soundex.obj : n:\python\python-1.4b2\modul&\r
+es\soundex.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b2\m&\r
+odules\stropmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\structmodule.obj : n:\python\python-1.4b2\&\r
+modules\structmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\timemodule.obj : n:\python\python-1.4b2\mo&\r
+dules\timemodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b2\mo&\r
+dules\yuvconvert.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\abstract.obj : n:\python\python-1.4b2\obje&\r
+cts\abstract.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\accessobject.obj : n:\python\python-1.4b2\&\r
+objects\accessobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\classobject.obj : n:\python\python-1.4b2\o&\r
+bjects\classobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\cobject.obj : n:\python\python-1.4b2\objec&\r
+ts\cobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\complexobject.obj : n:\python\python-1.4b2&\r
+\objects\complexobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&\r
+TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\fileobject.obj : n:\python\python-1.4b2\ob&\r
+jects\fileobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\floatobject.obj : n:\python\python-1.4b2\o&\r
+bjects\floatobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\frameobject.obj : n:\python\python-1.4b2\o&\r
+bjects\frameobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\funcobject.obj : n:\python\python-1.4b2\ob&\r
+jects\funcobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\intobject.obj : n:\python\python-1.4b2\obj&\r
+ects\intobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\listobject.obj : n:\python\python-1.4b2\ob&\r
+jects\listobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\longobject.obj : n:\python\python-1.4b2\ob&\r
+jects\longobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b2&\r
+\objects\mappingobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&\r
+TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\methodobject.obj : n:\python\python-1.4b2\&\r
+objects\methodobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b2\&\r
+objects\moduleobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\object.obj : n:\python\python-1.4b2\object&\r
+s\object.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&\r
+os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b2\o&\r
+bjects\rangeobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\stringobject.obj : n:\python\python-1.4b2\&\r
+objects\stringobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&\r
+COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b2\o&\r
+bjects\tupleobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\typeobject.obj : n:\python\python-1.4b2\ob&\r
+jects\typeobject.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\acceler.obj : n:\python\python-1.4b2\parse&\r
+r\acceler.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&\r
+os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\grammar1.obj : n:\python\python-1.4b2\pars&\r
+er\grammar1.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\myreadline.obj : n:\python\python-1.4b2\pa&\r
+rser\myreadline.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\node.obj : n:\python\python-1.4b2\parser\n&\r
+ode.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2&\r
+ -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\parser.obj : n:\python\python-1.4b2\parser&\r
+\parser.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&\r
+s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\parsetok.obj : n:\python\python-1.4b2\pars&\r
+er\parsetok.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b2\par&\r
+ser\tokenizer.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b2\p&\r
+ython\bltinmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\ceval.obj : n:\python\python-1.4b2\python\&\r
+ceval.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&\r
+2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b2\p&\r
+ython\cgensupport.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\compile.obj : n:\python\python-1.4b2\pytho&\r
+n\compile.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&\r
+os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\errors.obj : n:\python\python-1.4b2\python&\r
+\errors.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&\r
+s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\frozen.obj : n:\python\python-1.4b2\python&\r
+\frozen.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&\r
+s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getargs.obj : n:\python\python-1.4b2\pytho&\r
+n\getargs.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&\r
+os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b2\p&\r
+ython\getcompiler.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b2\&\r
+python\getcopyright.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getmtime.obj : n:\python\python-1.4b2\pyth&\r
+on\getmtime.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getopt.obj : n:\python\python-1.4b2\python&\r
+\getopt.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&\r
+s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getplatform.obj : n:\python\python-1.4b2\p&\r
+ython\getplatform.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&\r
+M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\getversion.obj : n:\python\python-1.4b2\py&\r
+thon\getversion.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\graminit.obj : n:\python\python-1.4b2\pyth&\r
+on\graminit.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\import.obj : n:\python\python-1.4b2\python&\r
+\import.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\import.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&\r
+s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\importdl.obj : n:\python\python-1.4b2\pyth&\r
+on\importdl.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&\r
+\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\marshal.obj : n:\python\python-1.4b2\pytho&\r
+n\marshal.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&\r
+os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\modsupport.obj : n:\python\python-1.4b2\py&\r
+thon\modsupport.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&\r
+\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b2\pyt&\r
+hon\mystrtoul.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b2\pyt&\r
+hon\pythonrun.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\structmember.obj : n:\python\python-1.4b2\&\r
+python\structmember.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&\r
+OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b2\pyt&\r
+hon\sysmodule.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\traceback.obj : n:\python\python-1.4b2\pyt&\r
+hon\traceback.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&\r
+h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\config.obj : n:\python\python-1.4b2\pc\con&\r
+fig.c .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ *wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w4 -e2&\r
+5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf\r
+\r
+n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b2\pc\w&\r
+at_os2\arraymodule.obj n:\python\python-1.4b2\pc\wat_os2\audioop.obj n:\pyth&\r
+on\python-1.4b2\pc\wat_os2\binascii.obj n:\python\python-1.4b2\pc\wat_os2\cm&\r
+athmodule.obj n:\python\python-1.4b2\pc\wat_os2\environment.obj n:\python\py&\r
+thon-1.4b2\pc\wat_os2\getpath.obj n:\python\python-1.4b2\pc\wat_os2\imageop.&\r
+obj n:\python\python-1.4b2\pc\wat_os2\main.obj n:\python\python-1.4b2\pc\wat&\r
+_os2\mathmodule.obj n:\python\python-1.4b2\pc\wat_os2\md5c.obj n:\python\pyt&\r
+hon-1.4b2\pc\wat_os2\md5module.obj n:\python\python-1.4b2\pc\wat_os2\newmodu&\r
+le.obj n:\python\python-1.4b2\pc\wat_os2\posixmodule.obj n:\python\python-1.&\r
+4b2\pc\wat_os2\regexmodule.obj n:\python\python-1.4b2\pc\wat_os2\regexpr.obj&\r
+ n:\python\python-1.4b2\pc\wat_os2\rgbimgmodule.obj n:\python\python-1.4b2\p&\r
+c\wat_os2\rotormodule.obj n:\python\python-1.4b2\pc\wat_os2\signalmodule.obj&\r
+ n:\python\python-1.4b2\pc\wat_os2\soundex.obj n:\python\python-1.4b2\pc\wat&\r
+_os2\stropmodule.obj n:\python\python-1.4b2\pc\wat_os2\structmodule.obj n:\p&\r
+ython\python-1.4b2\pc\wat_os2\timemodule.obj n:\python\python-1.4b2\pc\wat_o&\r
+s2\yuvconvert.obj n:\python\python-1.4b2\pc\wat_os2\abstract.obj n:\python\p&\r
+ython-1.4b2\pc\wat_os2\accessobject.obj n:\python\python-1.4b2\pc\wat_os2\cl&\r
+assobject.obj n:\python\python-1.4b2\pc\wat_os2\cobject.obj n:\python\python&\r
+-1.4b2\pc\wat_os2\complexobject.obj n:\python\python-1.4b2\pc\wat_os2\fileob&\r
+ject.obj n:\python\python-1.4b2\pc\wat_os2\floatobject.obj n:\python\python-&\r
+1.4b2\pc\wat_os2\frameobject.obj n:\python\python-1.4b2\pc\wat_os2\funcobjec&\r
+t.obj n:\python\python-1.4b2\pc\wat_os2\intobject.obj n:\python\python-1.4b2&\r
+\pc\wat_os2\listobject.obj n:\python\python-1.4b2\pc\wat_os2\longobject.obj &\r
+n:\python\python-1.4b2\pc\wat_os2\mappingobject.obj n:\python\python-1.4b2\p&\r
+c\wat_os2\methodobject.obj n:\python\python-1.4b2\pc\wat_os2\moduleobject.ob&\r
+j n:\python\python-1.4b2\pc\wat_os2\object.obj n:\python\python-1.4b2\pc\wat&\r
+_os2\rangeobject.obj n:\python\python-1.4b2\pc\wat_os2\stringobject.obj n:\p&\r
+ython\python-1.4b2\pc\wat_os2\tupleobject.obj n:\python\python-1.4b2\pc\wat_&\r
+os2\typeobject.obj n:\python\python-1.4b2\pc\wat_os2\acceler.obj n:\python\p&\r
+ython-1.4b2\pc\wat_os2\grammar1.obj n:\python\python-1.4b2\pc\wat_os2\myread&\r
+line.obj n:\python\python-1.4b2\pc\wat_os2\node.obj n:\python\python-1.4b2\p&\r
+c\wat_os2\parser.obj n:\python\python-1.4b2\pc\wat_os2\parsetok.obj n:\pytho&\r
+n\python-1.4b2\pc\wat_os2\tokenizer.obj n:\python\python-1.4b2\pc\wat_os2\bl&\r
+tinmodule.obj n:\python\python-1.4b2\pc\wat_os2\ceval.obj n:\python\python-1&\r
+.4b2\pc\wat_os2\cgensupport.obj n:\python\python-1.4b2\pc\wat_os2\compile.ob&\r
+j n:\python\python-1.4b2\pc\wat_os2\errors.obj n:\python\python-1.4b2\pc\wat&\r
+_os2\frozen.obj n:\python\python-1.4b2\pc\wat_os2\getargs.obj n:\python\pyth&\r
+on-1.4b2\pc\wat_os2\getcompiler.obj n:\python\python-1.4b2\pc\wat_os2\getcop&\r
+yright.obj n:\python\python-1.4b2\pc\wat_os2\getmtime.obj n:\python\python-1&\r
+.4b2\pc\wat_os2\getopt.obj n:\python\python-1.4b2\pc\wat_os2\getplatform.obj&\r
+ n:\python\python-1.4b2\pc\wat_os2\getversion.obj n:\python\python-1.4b2\pc\&\r
+wat_os2\graminit.obj n:\python\python-1.4b2\pc\wat_os2\import.obj n:\python\&\r
+python-1.4b2\pc\wat_os2\importdl.obj n:\python\python-1.4b2\pc\wat_os2\marsh&\r
+al.obj n:\python\python-1.4b2\pc\wat_os2\modsupport.obj n:\python\python-1.4&\r
+b2\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b2\pc\wat_os2\pythonrun.obj &\r
+n:\python\python-1.4b2\pc\wat_os2\structmember.obj n:\python\python-1.4b2\pc&\r
+\wat_os2\sysmodule.obj n:\python\python-1.4b2\pc\wat_os2\traceback.obj n:\py&\r
+thon\python-1.4b2\pc\wat_os2\config.obj .AUTODEPEND\r
+ @n:\r
+ cd n:\python\python-1.4b2\pc\wat_os2\r
+ @%write pyth_os2.lk1 NAME pyth_os2\r
+ @%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&\r
+ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&\r
+.obj,md5module.obj,newmodule.obj,posixmodule.obj,regexmodule.obj,regexpr.obj&\r
+,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.o&\r
+bj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.&\r
+obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject&\r
+.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.&\r
+obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobje&\r
+ct.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.&\r
+obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodul&\r
+e.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.ob&\r
+j,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,g&\r
+etversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.ob&\r
+j,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,c&\r
+onfig.obj\r
+ @%append pyth_os2.lk1 \r
+!ifneq BLANK ""\r
+ *wlib -q -n -b pyth_os2.imp \r
+ @%append pyth_os2.lk1 LIBR pyth_os2.imp\r
+!endif\r
+ *wlink SYS os2v2 op m op st=128k op maxe=25 op q op symf @pyth_os2.lk1\r
+!ifneq BLANK ""\r
+ rc -i $[: -i C:\WATCOM\h -i C:\WATCOM\h\os2  pyth_os2.exe\r
+!endif\r
+\r
index a2f4e6928cca3592a7ed20a6a9a996ca9c3c2840..f2e6bd3853ebe88b4e2adfa39893d28939cf1f3e 100755 (executable)
-40
-targetIdent
-0
-MProject
-1
-MComponent
-0
-2
-WString
-4
-OEXE
-3
-WString
-5
-oc2en
-1
-0
-0
-4
-MCommand
-0
-5
-MCommand
-0
-6
-MItem
-12
-pyth_os2.exe
-7
-WString
-4
-OEXE
-8
-WVList
-1
-9
-MVState
-10
-WString
-7
-OS2LINK
-11
-WString
-11
-?????Stack:
-0
-12
-WString
-4
-128k
-0
-13
-WVList
-0
--1
-1
-1
-0
-14
-WPickList
-75
-15
-MItem
-3
-*.c
-16
-WString
-4
-COBJ
-17
-WVList
-5
-18
-MVState
-19
-WString
-3
-WCC
-20
-WString
-25
-o?2??Include directories:
-0
-21
-WString
-46
-..;..\..\Include;$(%watcom)\h;$(%watcom)\h\os2
-0
-22
-MVState
-23
-WString
-3
-WCC
-24
-WString
-23
-?????Macro definitions:
-0
-25
-WString
-13
-HAVE_CONFIG_H
-0
-26
-MCState
-27
-WString
-3
-WCC
-28
-WString
-31
-?????Force enums to be type int
-0
-1
-29
-MRState
-30
-WString
-3
-WCC
-31
-WString
-20
-?????Pack structures
-0
-0
-32
-MRState
-33
-WString
-3
-WCC
-34
-WString
-21
-?????4 byte alignment
-0
-1
-35
-WVList
-0
--1
-1
-1
-0
-36
-MItem
-27
-..\..\modules\arraymodule.c
-37
-WString
-4
-COBJ
-38
-WVList
-0
-39
-WVList
-0
-15
-1
-1
-0
-40
-MItem
-23
-..\..\modules\audioop.c
-41
-WString
-4
-COBJ
-42
-WVList
-0
-43
-WVList
-0
-15
-1
-1
-0
-44
-MItem
-24
-..\..\modules\binascii.c
-45
-WString
-4
-COBJ
-46
-WVList
-0
-47
-WVList
-0
-15
-1
-1
-0
-48
-MItem
-27
-..\..\modules\cmathmodule.c
-49
-WString
-4
-COBJ
-50
-WVList
-0
-51
-WVList
-0
-15
-1
-1
-0
-52
-MItem
-27
-..\..\modules\environment.c
-53
-WString
-4
-COBJ
-54
-WVList
-0
-55
-WVList
-0
-15
-1
-1
-0
-56
-MItem
-23
-..\..\modules\getpath.c
-57
-WString
-4
-COBJ
-58
-WVList
-0
-59
-WVList
-0
-15
-1
-1
-0
-60
-MItem
-23
-..\..\modules\imageop.c
-61
-WString
-4
-COBJ
-62
-WVList
-0
-63
-WVList
-0
-15
-1
-1
-0
-64
-MItem
-20
-..\..\modules\main.c
-65
-WString
-4
-COBJ
-66
-WVList
-0
-67
-WVList
-0
-15
-1
-1
-0
-68
-MItem
-26
-..\..\modules\mathmodule.c
-69
-WString
-4
-COBJ
-70
-WVList
-0
-71
-WVList
-0
-15
-1
-1
-0
-72
-MItem
-20
-..\..\modules\md5c.c
-73
-WString
-4
-COBJ
-74
-WVList
-0
-75
-WVList
-0
-15
-1
-1
-0
-76
-MItem
-25
-..\..\modules\md5module.c
-77
-WString
-4
-COBJ
-78
-WVList
-0
-79
-WVList
-0
-15
-1
-1
-0
-80
-MItem
-25
-..\..\modules\newmodule.c
-81
-WString
-4
-COBJ
-82
-WVList
-0
-83
-WVList
-0
-15
-1
-1
-0
-84
-MItem
-27
-..\..\modules\regexmodule.c
-85
-WString
-4
-COBJ
-86
-WVList
-0
-87
-WVList
-0
-15
-1
-1
-0
-88
-MItem
-23
-..\..\modules\regexpr.c
-89
-WString
-4
-COBJ
-90
-WVList
-0
-91
-WVList
-0
-15
-1
-1
-0
-92
-MItem
-28
-..\..\modules\rgbimgmodule.c
-93
-WString
-4
-COBJ
-94
-WVList
-0
-95
-WVList
-0
-15
-1
-1
-0
-96
-MItem
-27
-..\..\modules\rotormodule.c
-97
-WString
-4
-COBJ
-98
-WVList
-0
-99
-WVList
-0
-15
-1
-1
-0
-100
-MItem
-28
-..\..\modules\signalmodule.c
-101
-WString
-4
-COBJ
-102
-WVList
-0
-103
-WVList
-0
-15
-1
-1
-0
-104
-MItem
-23
-..\..\modules\soundex.c
-105
-WString
-4
-COBJ
-106
-WVList
-0
-107
-WVList
-0
-15
-1
-1
-0
-108
-MItem
-27
-..\..\modules\stropmodule.c
-109
-WString
-4
-COBJ
-110
-WVList
-0
-111
-WVList
-0
-15
-1
-1
-0
-112
-MItem
-28
-..\..\modules\structmodule.c
-113
-WString
-4
-COBJ
-114
-WVList
-0
-115
-WVList
-0
-15
-1
-1
-0
-116
-MItem
-26
-..\..\modules\timemodule.c
-117
-WString
-4
-COBJ
-118
-WVList
-0
-119
-WVList
-0
-15
-1
-1
-0
-120
-MItem
-26
-..\..\modules\yuvconvert.c
-121
-WString
-4
-COBJ
-122
-WVList
-0
-123
-WVList
-0
-15
-1
-1
-0
-124
-MItem
-24
-..\..\objects\abstract.c
-125
-WString
-4
-COBJ
-126
-WVList
-0
-127
-WVList
-0
-15
-1
-1
-0
-128
-MItem
-28
-..\..\objects\accessobject.c
-129
-WString
-4
-COBJ
-130
-WVList
-0
-131
-WVList
-0
-15
-1
-1
-0
-132
-MItem
-27
-..\..\objects\classobject.c
-133
-WString
-4
-COBJ
-134
-WVList
-0
-135
-WVList
-0
-15
-1
-1
-0
-136
-MItem
-23
-..\..\objects\cobject.c
-137
-WString
-4
-COBJ
-138
-WVList
-0
-139
-WVList
-0
-15
-1
-1
-0
-140
-MItem
-29
-..\..\objects\complexobject.c
-141
-WString
-4
-COBJ
-142
-WVList
-0
-143
-WVList
-0
-15
-1
-1
-0
-144
-MItem
-26
-..\..\objects\fileobject.c
-145
-WString
-4
-COBJ
-146
-WVList
-0
-147
-WVList
-0
-15
-1
-1
-0
-148
-MItem
-27
-..\..\objects\floatobject.c
-149
-WString
-4
-COBJ
-150
-WVList
-0
-151
-WVList
-0
-15
-1
-1
-0
-152
-MItem
-27
-..\..\objects\frameobject.c
-153
-WString
-4
-COBJ
-154
-WVList
-0
-155
-WVList
-0
-15
-1
-1
-0
-156
-MItem
-26
-..\..\objects\funcobject.c
-157
-WString
-4
-COBJ
-158
-WVList
-0
-159
-WVList
-0
-15
-1
-1
-0
-160
-MItem
-25
-..\..\objects\intobject.c
-161
-WString
-4
-COBJ
-162
-WVList
-0
-163
-WVList
-0
-15
-1
-1
-0
-164
-MItem
-26
-..\..\objects\listobject.c
-165
-WString
-4
-COBJ
-166
-WVList
-0
-167
-WVList
-0
-15
-1
-1
-0
-168
-MItem
-26
-..\..\objects\longobject.c
-169
-WString
-4
-COBJ
-170
-WVList
-0
-171
-WVList
-0
-15
-1
-1
-0
-172
-MItem
-29
-..\..\objects\mappingobject.c
-173
-WString
-4
-COBJ
-174
-WVList
-0
-175
-WVList
-0
-15
-1
-1
-0
-176
-MItem
-28
-..\..\objects\methodobject.c
-177
-WString
-4
-COBJ
-178
-WVList
-0
-179
-WVList
-0
-15
-1
-1
-0
-180
-MItem
-28
-..\..\objects\moduleobject.c
-181
-WString
-4
-COBJ
-182
-WVList
-0
-183
-WVList
-0
-15
-1
-1
-0
-184
-MItem
-22
-..\..\objects\object.c
-185
-WString
-4
-COBJ
-186
-WVList
-0
-187
-WVList
-0
-15
-1
-1
-0
-188
-MItem
-27
-..\..\objects\rangeobject.c
-189
-WString
-4
-COBJ
-190
-WVList
-0
-191
-WVList
-0
-15
-1
-1
-0
-192
-MItem
-28
-..\..\objects\stringobject.c
-193
-WString
-4
-COBJ
-194
-WVList
-0
-195
-WVList
-0
-15
-1
-1
-0
-196
-MItem
-27
-..\..\objects\tupleobject.c
-197
-WString
-4
-COBJ
-198
-WVList
-0
-199
-WVList
-0
-15
-1
-1
-0
-200
-MItem
-26
-..\..\objects\typeobject.c
-201
-WString
-4
-COBJ
-202
-WVList
-0
-203
-WVList
-0
-15
-1
-1
-0
-204
-MItem
-22
-..\..\parser\acceler.c
-205
-WString
-4
-COBJ
-206
-WVList
-0
-207
-WVList
-0
-15
-1
-1
-0
-208
-MItem
-23
-..\..\parser\grammar1.c
-209
-WString
-4
-COBJ
-210
-WVList
-0
-211
-WVList
-0
-15
-1
-1
-0
-212
-MItem
-25
-..\..\parser\myreadline.c
-213
-WString
-4
-COBJ
-214
-WVList
-0
-215
-WVList
-0
-15
-1
-1
-0
-216
-MItem
-19
-..\..\parser\node.c
-217
-WString
-4
-COBJ
-218
-WVList
-0
-219
-WVList
-0
-15
-1
-1
-0
-220
-MItem
-21
-..\..\parser\parser.c
-221
-WString
-4
-COBJ
-222
-WVList
-0
-223
-WVList
-0
-15
-1
-1
-0
-224
-MItem
-23
-..\..\parser\parsetok.c
-225
-WString
-4
-COBJ
-226
-WVList
-0
-227
-WVList
-0
-15
-1
-1
-0
-228
-MItem
-24
-..\..\parser\tokenizer.c
-229
-WString
-4
-COBJ
-230
-WVList
-0
-231
-WVList
-0
-15
-1
-1
-0
-232
-MItem
-26
-..\..\python\bltinmodule.c
-233
-WString
-4
-COBJ
-234
-WVList
-0
-235
-WVList
-0
-15
-1
-1
-0
-236
-MItem
-20
-..\..\python\ceval.c
-237
-WString
-4
-COBJ
-238
-WVList
-0
-239
-WVList
-0
-15
-1
-1
-0
-240
-MItem
-26
-..\..\python\cgensupport.c
-241
-WString
-4
-COBJ
-242
-WVList
-0
-243
-WVList
-0
-15
-1
-1
-0
-244
-MItem
-22
-..\..\python\compile.c
-245
-WString
-4
-COBJ
-246
-WVList
-0
-247
-WVList
-0
-15
-1
-1
-0
-248
-MItem
-21
-..\..\python\errors.c
-249
-WString
-4
-COBJ
-250
-WVList
-0
-251
-WVList
-0
-15
-1
-1
-0
-252
-MItem
-21
-..\..\python\frozen.c
-253
-WString
-4
-COBJ
-254
-WVList
-0
-255
-WVList
-0
-15
-1
-1
-0
-256
-MItem
-22
-..\..\python\getargs.c
-257
-WString
-4
-COBJ
-258
-WVList
-0
-259
-WVList
-0
-15
-1
-1
-0
-260
-MItem
-26
-..\..\python\getcompiler.c
-261
-WString
-4
-COBJ
-262
-WVList
-0
-263
-WVList
-0
-15
-1
-1
-0
-264
-MItem
-27
-..\..\python\getcopyright.c
-265
-WString
-4
-COBJ
-266
-WVList
-0
-267
-WVList
-0
-15
-1
-1
-0
-268
-MItem
-23
-..\..\python\getmtime.c
-269
-WString
-4
-COBJ
-270
-WVList
-0
-271
-WVList
-0
-15
-1
-1
-0
-272
-MItem
-21
-..\..\python\getopt.c
-273
-WString
-4
-COBJ
-274
-WVList
-0
-275
-WVList
-0
-15
-1
-1
-0
-276
-MItem
-26
-..\..\python\getplatform.c
-277
-WString
-4
-COBJ
-278
-WVList
-0
-279
-WVList
-0
-15
-1
-1
-0
-280
-MItem
-25
-..\..\python\getversion.c
-281
-WString
-4
-COBJ
-282
-WVList
-0
-283
-WVList
-0
-15
-1
-1
-0
-284
-MItem
-23
-..\..\python\graminit.c
-285
-WString
-4
-COBJ
-286
-WVList
-0
-287
-WVList
-0
-15
-1
-1
-0
-288
-MItem
-21
-..\..\python\import.c
-289
-WString
-4
-COBJ
-290
-WVList
-0
-291
-WVList
-0
-15
-1
-1
-0
-292
-MItem
-23
-..\..\python\importdl.c
-293
-WString
-4
-COBJ
-294
-WVList
-0
-295
-WVList
-0
-15
-1
-1
-0
-296
-MItem
-22
-..\..\python\marshal.c
-297
-WString
-4
-COBJ
-298
-WVList
-0
-299
-WVList
-0
-15
-1
-1
-0
-300
-MItem
-25
-..\..\python\modsupport.c
-301
-WString
-4
-COBJ
-302
-WVList
-0
-303
-WVList
-0
-15
-1
-1
-0
-304
-MItem
-24
-..\..\python\mystrtoul.c
-305
-WString
-4
-COBJ
-306
-WVList
-0
-307
-WVList
-0
-15
-1
-1
-0
-308
-MItem
-24
-..\..\python\pythonrun.c
-309
-WString
-4
-COBJ
-310
-WVList
-0
-311
-WVList
-0
-15
-1
-1
-0
-312
-MItem
-27
-..\..\python\structmember.c
-313
-WString
-4
-COBJ
-314
-WVList
-0
-315
-WVList
-0
-15
-1
-1
-0
-316
-MItem
-24
-..\..\python\sysmodule.c
-317
-WString
-4
-COBJ
-318
-WVList
-0
-319
-WVList
-0
-15
-1
-1
-0
-320
-MItem
-24
-..\..\python\traceback.c
-321
-WString
-4
-COBJ
-322
-WVList
-0
-323
-WVList
-0
-15
-1
-1
-0
-324
-MItem
-11
-..\config.c
-325
-WString
-4
-COBJ
-326
-WVList
-0
-327
-WVList
-0
-15
-1
-1
-0
-328
-MItem
-16
-..\posixmodule.c
-329
-WString
-4
-COBJ
-330
-WVList
-0
-331
-WVList
-0
-15
-1
-1
-0
+40\r
+targetIdent\r
+0\r
+MProject\r
+1\r
+MComponent\r
+0\r
+2\r
+WString\r
+4\r
+OEXE\r
+3\r
+WString\r
+5\r
+oc2en\r
+1\r
+0\r
+0\r
+4\r
+MCommand\r
+0\r
+5\r
+MCommand\r
+0\r
+6\r
+MItem\r
+12\r
+pyth_os2.exe\r
+7\r
+WString\r
+4\r
+OEXE\r
+8\r
+WVList\r
+1\r
+9\r
+MVState\r
+10\r
+WString\r
+7\r
+OS2LINK\r
+11\r
+WString\r
+11\r
+?????Stack:\r
+0\r
+12\r
+WString\r
+4\r
+128k\r
+0\r
+13\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+14\r
+WPickList\r
+77\r
+15\r
+MItem\r
+3\r
+*.c\r
+16\r
+WString\r
+4\r
+COBJ\r
+17\r
+WVList\r
+5\r
+18\r
+MVState\r
+19\r
+WString\r
+3\r
+WCC\r
+20\r
+WString\r
+25\r
+o?2??Include directories:\r
+0\r
+21\r
+WString\r
+46\r
+..;..\..\Include;$(%watcom)\h;$(%watcom)\h\os2\r
+0\r
+22\r
+MVState\r
+23\r
+WString\r
+3\r
+WCC\r
+24\r
+WString\r
+23\r
+?????Macro definitions:\r
+0\r
+25\r
+WString\r
+13\r
+HAVE_CONFIG_H\r
+0\r
+26\r
+MCState\r
+27\r
+WString\r
+3\r
+WCC\r
+28\r
+WString\r
+31\r
+?????Force enums to be type int\r
+0\r
+1\r
+29\r
+MRState\r
+30\r
+WString\r
+3\r
+WCC\r
+31\r
+WString\r
+20\r
+?????Pack structures\r
+0\r
+0\r
+32\r
+MRState\r
+33\r
+WString\r
+3\r
+WCC\r
+34\r
+WString\r
+21\r
+?????4 byte alignment\r
+0\r
+1\r
+35\r
+WVList\r
+0\r
+-1\r
+1\r
+1\r
+0\r
+36\r
+MItem\r
+27\r
+..\..\modules\arraymodule.c\r
+37\r
+WString\r
+4\r
+COBJ\r
+38\r
+WVList\r
+0\r
+39\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+40\r
+MItem\r
+23\r
+..\..\modules\audioop.c\r
+41\r
+WString\r
+4\r
+COBJ\r
+42\r
+WVList\r
+0\r
+43\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+44\r
+MItem\r
+24\r
+..\..\modules\binascii.c\r
+45\r
+WString\r
+4\r
+COBJ\r
+46\r
+WVList\r
+0\r
+47\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+48\r
+MItem\r
+27\r
+..\..\modules\cmathmodule.c\r
+49\r
+WString\r
+4\r
+COBJ\r
+50\r
+WVList\r
+0\r
+51\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+52\r
+MItem\r
+27\r
+..\..\modules\environment.c\r
+53\r
+WString\r
+4\r
+COBJ\r
+54\r
+WVList\r
+0\r
+55\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+56\r
+MItem\r
+27\r
+..\..\modules\errnomodule.c\r
+57\r
+WString\r
+4\r
+COBJ\r
+58\r
+WVList\r
+0\r
+59\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+60\r
+MItem\r
+23\r
+..\..\modules\getpath.c\r
+61\r
+WString\r
+4\r
+COBJ\r
+62\r
+WVList\r
+0\r
+63\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+64\r
+MItem\r
+23\r
+..\..\modules\imageop.c\r
+65\r
+WString\r
+4\r
+COBJ\r
+66\r
+WVList\r
+0\r
+67\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+68\r
+MItem\r
+20\r
+..\..\modules\main.c\r
+69\r
+WString\r
+4\r
+COBJ\r
+70\r
+WVList\r
+0\r
+71\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+72\r
+MItem\r
+26\r
+..\..\modules\mathmodule.c\r
+73\r
+WString\r
+4\r
+COBJ\r
+74\r
+WVList\r
+0\r
+75\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+76\r
+MItem\r
+20\r
+..\..\modules\md5c.c\r
+77\r
+WString\r
+4\r
+COBJ\r
+78\r
+WVList\r
+0\r
+79\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+80\r
+MItem\r
+25\r
+..\..\modules\md5module.c\r
+81\r
+WString\r
+4\r
+COBJ\r
+82\r
+WVList\r
+0\r
+83\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+84\r
+MItem\r
+25\r
+..\..\modules\newmodule.c\r
+85\r
+WString\r
+4\r
+COBJ\r
+86\r
+WVList\r
+0\r
+87\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+88\r
+MItem\r
+24\r
+..\..\modules\operator.c\r
+89\r
+WString\r
+4\r
+COBJ\r
+90\r
+WVList\r
+0\r
+91\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+92\r
+MItem\r
+27\r
+..\..\modules\posixmodule.c\r
+93\r
+WString\r
+4\r
+COBJ\r
+94\r
+WVList\r
+0\r
+95\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+96\r
+MItem\r
+27\r
+..\..\modules\regexmodule.c\r
+97\r
+WString\r
+4\r
+COBJ\r
+98\r
+WVList\r
+0\r
+99\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+100\r
+MItem\r
+23\r
+..\..\modules\regexpr.c\r
+101\r
+WString\r
+4\r
+COBJ\r
+102\r
+WVList\r
+0\r
+103\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+104\r
+MItem\r
+28\r
+..\..\modules\rgbimgmodule.c\r
+105\r
+WString\r
+4\r
+COBJ\r
+106\r
+WVList\r
+0\r
+107\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+108\r
+MItem\r
+27\r
+..\..\modules\rotormodule.c\r
+109\r
+WString\r
+4\r
+COBJ\r
+110\r
+WVList\r
+0\r
+111\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+112\r
+MItem\r
+28\r
+..\..\modules\signalmodule.c\r
+113\r
+WString\r
+4\r
+COBJ\r
+114\r
+WVList\r
+0\r
+115\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+116\r
+MItem\r
+23\r
+..\..\modules\soundex.c\r
+117\r
+WString\r
+4\r
+COBJ\r
+118\r
+WVList\r
+0\r
+119\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+120\r
+MItem\r
+27\r
+..\..\modules\stropmodule.c\r
+121\r
+WString\r
+4\r
+COBJ\r
+122\r
+WVList\r
+0\r
+123\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+124\r
+MItem\r
+28\r
+..\..\modules\structmodule.c\r
+125\r
+WString\r
+4\r
+COBJ\r
+126\r
+WVList\r
+0\r
+127\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+128\r
+MItem\r
+26\r
+..\..\modules\timemodule.c\r
+129\r
+WString\r
+4\r
+COBJ\r
+130\r
+WVList\r
+0\r
+131\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+132\r
+MItem\r
+26\r
+..\..\modules\yuvconvert.c\r
+133\r
+WString\r
+4\r
+COBJ\r
+134\r
+WVList\r
+0\r
+135\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+136\r
+MItem\r
+24\r
+..\..\objects\abstract.c\r
+137\r
+WString\r
+4\r
+COBJ\r
+138\r
+WVList\r
+0\r
+139\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+140\r
+MItem\r
+28\r
+..\..\objects\accessobject.c\r
+141\r
+WString\r
+4\r
+COBJ\r
+142\r
+WVList\r
+0\r
+143\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+144\r
+MItem\r
+27\r
+..\..\objects\classobject.c\r
+145\r
+WString\r
+4\r
+COBJ\r
+146\r
+WVList\r
+0\r
+147\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+148\r
+MItem\r
+23\r
+..\..\objects\cobject.c\r
+149\r
+WString\r
+4\r
+COBJ\r
+150\r
+WVList\r
+0\r
+151\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+152\r
+MItem\r
+29\r
+..\..\objects\complexobject.c\r
+153\r
+WString\r
+4\r
+COBJ\r
+154\r
+WVList\r
+0\r
+155\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+156\r
+MItem\r
+26\r
+..\..\objects\fileobject.c\r
+157\r
+WString\r
+4\r
+COBJ\r
+158\r
+WVList\r
+0\r
+159\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+160\r
+MItem\r
+27\r
+..\..\objects\floatobject.c\r
+161\r
+WString\r
+4\r
+COBJ\r
+162\r
+WVList\r
+0\r
+163\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+164\r
+MItem\r
+27\r
+..\..\objects\frameobject.c\r
+165\r
+WString\r
+4\r
+COBJ\r
+166\r
+WVList\r
+0\r
+167\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+168\r
+MItem\r
+26\r
+..\..\objects\funcobject.c\r
+169\r
+WString\r
+4\r
+COBJ\r
+170\r
+WVList\r
+0\r
+171\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+172\r
+MItem\r
+25\r
+..\..\objects\intobject.c\r
+173\r
+WString\r
+4\r
+COBJ\r
+174\r
+WVList\r
+0\r
+175\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+176\r
+MItem\r
+26\r
+..\..\objects\listobject.c\r
+177\r
+WString\r
+4\r
+COBJ\r
+178\r
+WVList\r
+0\r
+179\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+180\r
+MItem\r
+26\r
+..\..\objects\longobject.c\r
+181\r
+WString\r
+4\r
+COBJ\r
+182\r
+WVList\r
+0\r
+183\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+184\r
+MItem\r
+29\r
+..\..\objects\mappingobject.c\r
+185\r
+WString\r
+4\r
+COBJ\r
+186\r
+WVList\r
+0\r
+187\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+188\r
+MItem\r
+28\r
+..\..\objects\methodobject.c\r
+189\r
+WString\r
+4\r
+COBJ\r
+190\r
+WVList\r
+0\r
+191\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+192\r
+MItem\r
+28\r
+..\..\objects\moduleobject.c\r
+193\r
+WString\r
+4\r
+COBJ\r
+194\r
+WVList\r
+0\r
+195\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+196\r
+MItem\r
+22\r
+..\..\objects\object.c\r
+197\r
+WString\r
+4\r
+COBJ\r
+198\r
+WVList\r
+0\r
+199\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+200\r
+MItem\r
+27\r
+..\..\objects\rangeobject.c\r
+201\r
+WString\r
+4\r
+COBJ\r
+202\r
+WVList\r
+0\r
+203\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+204\r
+MItem\r
+28\r
+..\..\objects\stringobject.c\r
+205\r
+WString\r
+4\r
+COBJ\r
+206\r
+WVList\r
+0\r
+207\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+208\r
+MItem\r
+27\r
+..\..\objects\tupleobject.c\r
+209\r
+WString\r
+4\r
+COBJ\r
+210\r
+WVList\r
+0\r
+211\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+212\r
+MItem\r
+26\r
+..\..\objects\typeobject.c\r
+213\r
+WString\r
+4\r
+COBJ\r
+214\r
+WVList\r
+0\r
+215\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+216\r
+MItem\r
+22\r
+..\..\parser\acceler.c\r
+217\r
+WString\r
+4\r
+COBJ\r
+218\r
+WVList\r
+0\r
+219\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+220\r
+MItem\r
+23\r
+..\..\parser\grammar1.c\r
+221\r
+WString\r
+4\r
+COBJ\r
+222\r
+WVList\r
+0\r
+223\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+224\r
+MItem\r
+25\r
+..\..\parser\myreadline.c\r
+225\r
+WString\r
+4\r
+COBJ\r
+226\r
+WVList\r
+0\r
+227\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+228\r
+MItem\r
+19\r
+..\..\parser\node.c\r
+229\r
+WString\r
+4\r
+COBJ\r
+230\r
+WVList\r
+0\r
+231\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+232\r
+MItem\r
+21\r
+..\..\parser\parser.c\r
+233\r
+WString\r
+4\r
+COBJ\r
+234\r
+WVList\r
+0\r
+235\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+236\r
+MItem\r
+23\r
+..\..\parser\parsetok.c\r
+237\r
+WString\r
+4\r
+COBJ\r
+238\r
+WVList\r
+0\r
+239\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+240\r
+MItem\r
+24\r
+..\..\parser\tokenizer.c\r
+241\r
+WString\r
+4\r
+COBJ\r
+242\r
+WVList\r
+0\r
+243\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+244\r
+MItem\r
+26\r
+..\..\python\bltinmodule.c\r
+245\r
+WString\r
+4\r
+COBJ\r
+246\r
+WVList\r
+0\r
+247\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+248\r
+MItem\r
+20\r
+..\..\python\ceval.c\r
+249\r
+WString\r
+4\r
+COBJ\r
+250\r
+WVList\r
+0\r
+251\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+252\r
+MItem\r
+26\r
+..\..\python\cgensupport.c\r
+253\r
+WString\r
+4\r
+COBJ\r
+254\r
+WVList\r
+0\r
+255\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+256\r
+MItem\r
+22\r
+..\..\python\compile.c\r
+257\r
+WString\r
+4\r
+COBJ\r
+258\r
+WVList\r
+0\r
+259\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+260\r
+MItem\r
+21\r
+..\..\python\errors.c\r
+261\r
+WString\r
+4\r
+COBJ\r
+262\r
+WVList\r
+0\r
+263\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+264\r
+MItem\r
+21\r
+..\..\python\frozen.c\r
+265\r
+WString\r
+4\r
+COBJ\r
+266\r
+WVList\r
+0\r
+267\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+268\r
+MItem\r
+22\r
+..\..\python\getargs.c\r
+269\r
+WString\r
+4\r
+COBJ\r
+270\r
+WVList\r
+0\r
+271\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+272\r
+MItem\r
+26\r
+..\..\python\getcompiler.c\r
+273\r
+WString\r
+4\r
+COBJ\r
+274\r
+WVList\r
+0\r
+275\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+276\r
+MItem\r
+27\r
+..\..\python\getcopyright.c\r
+277\r
+WString\r
+4\r
+COBJ\r
+278\r
+WVList\r
+0\r
+279\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+280\r
+MItem\r
+23\r
+..\..\python\getmtime.c\r
+281\r
+WString\r
+4\r
+COBJ\r
+282\r
+WVList\r
+0\r
+283\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+284\r
+MItem\r
+21\r
+..\..\python\getopt.c\r
+285\r
+WString\r
+4\r
+COBJ\r
+286\r
+WVList\r
+0\r
+287\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+288\r
+MItem\r
+26\r
+..\..\python\getplatform.c\r
+289\r
+WString\r
+4\r
+COBJ\r
+290\r
+WVList\r
+0\r
+291\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+292\r
+MItem\r
+25\r
+..\..\python\getversion.c\r
+293\r
+WString\r
+4\r
+COBJ\r
+294\r
+WVList\r
+0\r
+295\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+296\r
+MItem\r
+23\r
+..\..\python\graminit.c\r
+297\r
+WString\r
+4\r
+COBJ\r
+298\r
+WVList\r
+0\r
+299\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+300\r
+MItem\r
+21\r
+..\..\python\import.c\r
+301\r
+WString\r
+4\r
+COBJ\r
+302\r
+WVList\r
+0\r
+303\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+304\r
+MItem\r
+23\r
+..\..\python\importdl.c\r
+305\r
+WString\r
+4\r
+COBJ\r
+306\r
+WVList\r
+0\r
+307\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+308\r
+MItem\r
+22\r
+..\..\python\marshal.c\r
+309\r
+WString\r
+4\r
+COBJ\r
+310\r
+WVList\r
+0\r
+311\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+312\r
+MItem\r
+25\r
+..\..\python\modsupport.c\r
+313\r
+WString\r
+4\r
+COBJ\r
+314\r
+WVList\r
+0\r
+315\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+316\r
+MItem\r
+24\r
+..\..\python\mystrtoul.c\r
+317\r
+WString\r
+4\r
+COBJ\r
+318\r
+WVList\r
+0\r
+319\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+320\r
+MItem\r
+24\r
+..\..\python\pythonrun.c\r
+321\r
+WString\r
+4\r
+COBJ\r
+322\r
+WVList\r
+0\r
+323\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+324\r
+MItem\r
+27\r
+..\..\python\structmember.c\r
+325\r
+WString\r
+4\r
+COBJ\r
+326\r
+WVList\r
+0\r
+327\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+328\r
+MItem\r
+24\r
+..\..\python\sysmodule.c\r
+329\r
+WString\r
+4\r
+COBJ\r
+330\r
+WVList\r
+0\r
+331\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+332\r
+MItem\r
+24\r
+..\..\python\traceback.c\r
+333\r
+WString\r
+4\r
+COBJ\r
+334\r
+WVList\r
+0\r
+335\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r
+336\r
+MItem\r
+11\r
+..\config.c\r
+337\r
+WString\r
+4\r
+COBJ\r
+338\r
+WVList\r
+0\r
+339\r
+WVList\r
+0\r
+15\r
+1\r
+1\r
+0\r