From 1bc716f2fc2aeb4ef4481089727450eb7357f696 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 28 Jun 1996 19:12:06 +0000 Subject: [PATCH] Added PC files from Jim Ahlstrom. --- PC/config.c | 19 +- PC/config.h | 41 +- PC/makesrc.exe | Bin 0 -> 25600 bytes PC/pyth_w31.def | 5 + PC/python.def | 231 + PC/python.mk | 5 + PC/python.wpj | 63 + PC/readme.txt | 106 + PC/testpy.py | 31 + PC/utils/makesrc.c | 67 + PC/utils/makesrc.lk1 | 3 + PC/utils/makesrc.mk1 | 24 + PC/utils/makesrc.tgt | 185 + PC/utils/utils.mk | 3 + PC/utils/utils.wpj | 43 + PC/vc15_lib/_.c | 0 PC/vc15_lib/python.mak | 2812 +++++++++++ PC/vc15_lib/python.vcw | 6 + PC/vc15_lib/python.wsp | Bin 0 -> 254 bytes PC/vc15_w31/_.c | 0 PC/vc15_w31/pyth_w31.mak | 220 + PC/vc15_w31/pyth_w31.pdb | Bin 0 -> 4774 bytes PC/vc15_w31/pyth_w31.vcw | 6 + PC/vc15_w31/pyth_w31.wsp | Bin 0 -> 254 bytes PC/vc40.mak | 9633 ++++++++++++++++++++++++++++++++++++++ PC/vc40.mdp | Bin 0 -> 82944 bytes PC/vc40.ncb | Bin 0 -> 746492 bytes PC/wat_dos/pyth_dos.lk1 | 3 + PC/wat_dos/pyth_dos.mk1 | 590 +++ PC/wat_dos/pyth_dos.tgt | 1563 +++++++ PC/wat_os2/pyth_os2.lk1 | 3 + PC/wat_os2/pyth_os2.mk1 | 596 +++ PC/wat_os2/pyth_os2.tgt | 1479 ++++++ 33 files changed, 17716 insertions(+), 21 deletions(-) create mode 100644 PC/makesrc.exe create mode 100644 PC/pyth_w31.def create mode 100644 PC/python.def create mode 100644 PC/python.mk create mode 100644 PC/python.wpj create mode 100644 PC/readme.txt create mode 100644 PC/testpy.py create mode 100755 PC/utils/makesrc.c create mode 100755 PC/utils/makesrc.lk1 create mode 100755 PC/utils/makesrc.mk1 create mode 100755 PC/utils/makesrc.tgt create mode 100755 PC/utils/utils.mk create mode 100755 PC/utils/utils.wpj create mode 100644 PC/vc15_lib/_.c create mode 100644 PC/vc15_lib/python.mak create mode 100644 PC/vc15_lib/python.vcw create mode 100644 PC/vc15_lib/python.wsp create mode 100644 PC/vc15_w31/_.c create mode 100644 PC/vc15_w31/pyth_w31.mak create mode 100644 PC/vc15_w31/pyth_w31.pdb create mode 100644 PC/vc15_w31/pyth_w31.vcw create mode 100644 PC/vc15_w31/pyth_w31.wsp create mode 100644 PC/vc40.mak create mode 100644 PC/vc40.mdp create mode 100644 PC/vc40.ncb create mode 100755 PC/wat_dos/pyth_dos.lk1 create mode 100755 PC/wat_dos/pyth_dos.mk1 create mode 100755 PC/wat_dos/pyth_dos.tgt create mode 100755 PC/wat_os2/pyth_os2.lk1 create mode 100755 PC/wat_os2/pyth_os2.mk1 create mode 100755 PC/wat_os2/pyth_os2.tgt diff --git a/PC/config.c b/PC/config.c index ffe6c7a5073..f8f0cb514d1 100644 --- a/PC/config.c +++ b/PC/config.c @@ -29,15 +29,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "Python.h" -#ifndef MS_WIN16 -/* Assume all 32-bit platforms come standard with a WINSOCK library */ -#define USE_SOCKET -#define USE_SELECT -#endif - extern void initarray(); extern void initaudioop(); extern void initbinascii(); +extern void initcmath(); extern void initenvironment(); extern void initimageop(); extern void initmath(); @@ -47,8 +42,8 @@ extern void initnt(); extern void initregex(); extern void initrgbimg(); extern void initrotor(); -extern void initselect(); extern void initsignal(); +extern void initselect(); extern void init_socket(); extern void initsoundex(); extern void initstrop(); @@ -60,16 +55,14 @@ extern void inittime(); extern void PyMarshal_Init(); extern void initimp(); -struct { - char *name; - void (*initfunc)(); -} inittab[] = { +struct _inittab inittab[] = { {"array", initarray}, #ifdef M_I386 {"audioop", initaudioop}, #endif {"binascii", initbinascii}, + {"cmath", initcmath}, {"environment", initenvironment}, {"imageop", initimageop}, {"math", initmath}, @@ -79,12 +72,10 @@ struct { {"regex", initregex}, {"rgbimg", initrgbimg}, {"rotor", initrotor}, -#ifdef USE_SELECT - {"select", initselect}, -#endif {"signal", initsignal}, #ifdef USE_SOCKET {"_socket", init_socket}, + {"select", initselect}, #endif {"soundex", initsoundex}, {"strop", initstrop}, diff --git a/PC/config.h b/PC/config.h index 3a914904d4e..a6cd6f794ac 100644 --- a/PC/config.h +++ b/PC/config.h @@ -24,19 +24,23 @@ standard part of the Python distribution. #define HAVE_HYPOT #define DONT_HAVE_SIG_ALARM #define DONT_HAVE_SIG_PAUSE +#define LONG_BIT 32 /* Microsoft C defines _MSC_VER */ #if defined(_MSC_VER) && _MSC_VER > 850 -/* Start of defines for NT using VC++ 2.0 and up */ -#define NT +/* Start of defines for MS_WIN32 using VC++ 2.0 and up */ +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#define MS_WINDOWS #ifdef _M_IX86 #define COMPILER "[MSC 32 bit (Intel)]" #else #define COMPILER "[MSC (Unknown)]" #endif -#define PYTHONPATH "c:\\python\\lib" +#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win" typedef int pid_t; +#define WORD_BIT 32 #pragma warning(disable:4113) #define hypot _hypot #include @@ -44,6 +48,7 @@ typedef int pid_t; #define HAVE_STRFTIME #define NT_THREADS #define WITH_THREAD +#define _COMPLEX_DEFINED #ifndef NETSCAPE_PI #define USE_SOCKET #endif @@ -53,15 +58,20 @@ typedef int pid_t; #ifdef USE_DL_EXPORT #define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE #endif -#endif /* NT */ +#endif /* MS_WIN32 */ #if defined(_MSC_VER) && _MSC_VER <= 850 /* Start of defines for 16-bit Windows using VC++ 1.5 */ #define COMPILER "[MSC 16-bit]" +#ifdef _WINDOWS #define MS_WIN16 -#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\dos_8x3" +#define MS_WINDOWS +#endif +#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\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 @@ -99,13 +109,30 @@ int sscanf(const char *, const char *, ...); /* The Watcom compiler defines __WATCOMC__ */ #ifdef __WATCOMC__ #define COMPILER "[Watcom]" -#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\dos_8x3" +#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3" #define IMPORT_8x3_NAMES #include #include typedef int mode_t; typedef int uid_t; typedef int gid_t; +typedef int pid_t; +#if defined(__NT__) +#define NT /* NT is obsolete - please use MS_WIN32 instead */ +#define MS_WIN32 +#define MS_WINDOWS +#define NT_THREADS +#define USE_SOCKET +#define WITH_THREAD +#elif defined(__WINDOWS__) +#define MS_WIN16 +#define MS_WINDOWS +#endif +#ifdef M_I386 +#define WORD_BIT 32 +#else +#define WORD_BIT 16 +#endif #define VA_LIST_IS_ARRAY #define HAVE_CLOCK #define HAVE_STRFTIME @@ -117,7 +144,7 @@ typedef int gid_t; /* The Borland compiler defines __BORLANDC__ */ #ifdef __BORLANDC__ #define COMPILER "[Borland]" -#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\dos_8x3" +#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3" #define IMPORT_8x3_NAMES #define HAVE_CLOCK #define HAVE_STRFTIME diff --git a/PC/makesrc.exe b/PC/makesrc.exe new file mode 100644 index 0000000000000000000000000000000000000000..18bb43eb20d9d882e2eb918b2f22f1742ea3884c GIT binary patch literal 25600 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 literal 0 HcmV?d00001 diff --git a/PC/pyth_w31.def b/PC/pyth_w31.def new file mode 100644 index 00000000000..4fe063c69b7 --- /dev/null +++ b/PC/pyth_w31.def @@ -0,0 +1,5 @@ +NAME +EXETYPE WINDOWS +CODE PRELOAD MOVABLE DISCARDABLE +DATA PRELOAD MOVABLE +HEAPSIZE 4096 diff --git a/PC/python.def b/PC/python.def new file mode 100644 index 00000000000..77f26d3ca6c --- /dev/null +++ b/PC/python.def @@ -0,0 +1,231 @@ +EXPORTS + Py_GetCopyright + Py_GetVersion + Py_FindMethod + _PyObject_New + _PyString_Resize + PySys_SetArgv + PyObject_Cmp + PyObject_CallObject + PyObject_CallFunction + PyObject_CallMethod + PyObject_Type + PyObject_Length + PyObject_GetItem + PyObject_SetItem + PyNumber_Check + PyNumber_Add + PyNumber_Subtract + PyNumber_Multiply + PyNumber_Divide + PyNumber_Remainder + PyNumber_Divmod + PyNumber_Power + PyNumber_Negative + PyNumber_Positive + PyNumber_Absolute + PyNumber_Invert + PyNumber_Lshift + PyNumber_Rshift + PyNumber_And + PyNumber_Xor + PyNumber_Or + PyNumber_Int + PyNumber_Long + PyNumber_Float + PySequence_Check + PySequence_Concat + PySequence_Repeat + PySequence_GetItem + PySequence_GetSlice + PySequence_SetItem + PySequence_SetSlice + PySequence_Tuple + PySequence_Count + PySequence_In + PySequence_Index + PyMapping_Check + PyMapping_Length + PyMapping_HasKeyString + PyMapping_HasKey + PyMapping_GetItemString + PyMapping_SetItemString + PyAccess_FromValue + PyAccess_AsValue + PyAccess_SetValue + PyAccess_SetOwner + PyAccess_Clone + PyAccess_HasValue + PyEval_CallObject + PyEval_GetBuiltins + PyEval_GetGlobals + PyEval_GetLocals + PyEval_GetOwner + PyEval_GetFrame + PyEval_GetRestricted + Py_FlushLine + Py_AddPendingCall + Py_MakePendingCalls + PyEval_InitThreads + PyEval_SaveThread + PyEval_RestoreThread + PyArg_GetObject + PyArg_GetLong + PyArg_GetShort + PyArg_GetFloat + PyArg_GetString + PyClass_New + PyInstance_New + PyMethod_New + PyMethod_Function + PyMethod_Self + PyMethod_Class + PyClass_IsSubclass + PyNode_Compile + PyCode_New + PyErr_SetNone + PyErr_SetObject + PyErr_SetString + PyErr_Occurred + PyErr_Clear + PyErr_Fetch + PyErr_Restore + PyErr_BadArgument + PyErr_NoMemory + PyErr_SetFromErrno + PyErr_BadInternalCall + PyErr_CheckSignals + PyEval_EvalCode + PyFile_FromFile + PyFile_FromString + PyFile_SetBufSize + PyFile_AsFile + PyFile_Name + PyFile_GetLine + PyFloat_FromDouble + PyFloat_AsDouble + PyFrame_BlockSetup + PyFrame_BlockPop + PyFrame_LocalsToFast + PyFrame_FastToLocals + PyFunction_New + PyFunction_GetCode + PyFunction_GetGlobals + PyFunction_GetDefaults + PyFunction_SetDefaults + PyGrammar_FindDFA + PyGrammar_LabelRepr + PyGrammar_AddAccelerators + PyImport_GetMagicNumber + PyImport_ExecCodeModule + PyImport_GetModuleDict + PyImport_AddModule + PyImport_ImportModule + PyImport_ReloadModule + PyImport_Cleanup + PyInt_FromLong + PyInt_AsLong + PyOS_InterruptOccurred + PyOS_InitInterrupts + PyList_New + PyList_Size + PyList_GetItem + PyList_SetItem + PyList_Insert + PyList_Append + PyList_GetSlice + PyList_SetSlice + PyList_Sort + PyList_Reverse + PyList_AsTuple + PyLong_FromLong + PyLong_FromDouble + PyLong_AsLong + PyLong_AsDouble + PyLong_FromString + PyDict_New + PyDict_GetItem + PyDict_SetItem + PyDict_DelItem + PyDict_Clear + PyDict_Keys + PyDict_Values + PyDict_Items + PyDict_Size + PyDict_GetItemString + PyDict_SetItemString + PyDict_DelItemString + PyMarshal_WriteLongToFile + PyMarshal_WriteObjectToFile + PyMarshal_ReadLongFromFile + PyMarshal_ReadObjectFromFile + PyMarshal_ReadObjectFromString + PyCFunction_GetFunction + PyCFunction_GetSelf + PyCFunction_GetFlags + PyArg_Parse + PyArg_ParseTuple + Py_BuildValue + Py_VaBuildValue + Py_InitModule4 + PyModule_New + PyModule_GetDict + PyModule_GetName + PyNode_New + PyNode_AddChild + PyNode_Free + PyObject_Print + PyObject_Repr + PyObject_Str + PyObject_Compare + PyObject_GetAttrString + PyObject_SetAttrString + PyObject_HasAttrString + PyObject_GetAttr + PyObject_SetAttr + PyObject_Hash + PyObject_IsTrue + PyCallable_Check + PyParser_ParseString + PyParser_ParseFile + Py_FatalError + Py_Initialize + PyRun_AnyFile + PyRun_SimpleString + PyRun_SimpleFile + PyRun_InteractiveOne + PyRun_InteractiveLoop + PyParser_SimpleParseString + PyParser_SimpleParseFile + PyRun_String + PyRun_File + Py_CompileString + PyErr_Print + Py_AtExit + Py_Exit + Py_Cleanup + PyRange_New + PyString_FromStringAndSize + PyString_FromString + PyString_Size + PyString_AsString + PyString_Concat + PyString_ConcatAndDel + PyString_Format + PyMember_Get + PyMember_Set + PySys_GetObject + PySys_SetObject + PySys_GetFile + PySys_Init + PyToken_OneChar + PyToken_TwoChars + PyTraceBack_Here + PyTraceBack_Fetch + PyTraceBack_Store + PyTraceBack_Print + PyTuple_New + PyTuple_Size + PyTuple_GetItem + PyTuple_SetItem + PyTuple_GetSlice diff --git a/PC/python.mk b/PC/python.mk new file mode 100644 index 00000000000..91be0ad527b --- /dev/null +++ b/PC/python.mk @@ -0,0 +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 diff --git a/PC/python.wpj b/PC/python.wpj new file mode 100644 index 00000000000..afc8221264b --- /dev/null +++ b/PC/python.wpj @@ -0,0 +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 diff --git a/PC/readme.txt b/PC/readme.txt new file mode 100644 index 00000000000..e0c6d4e8cb6 --- /dev/null +++ b/PC/readme.txt @@ -0,0 +1,106 @@ +Welcome to the "PC" subdirectory of the Python distribution! + + +This "PC" subdirectory contains complete project files to make +several PC ports of Python, as well as all the PC-specific +Python source files. It should be located in the root of the +Python distribution, and there should be directories "Modules", +"Objects", "Python", etc. in the parent directory of this "PC" +subdirectory. + +Be sure to read the documentation in the Python distribution. You +must set the environment variable PYTHONPATH to point to your Python +library directory. This is "../Lib", but you must use an absolute path, +and perhaps copy it somewhere else. Be sure to include the Windows +specific directory "win" too. If you use a DOS FAT file system and +either a DOS or Windows 3.1x Python version, you should also put +../Lib/dos_8x3 on your PYTHONPATH too, since it has DOS 8x3 names +for the standard Python library names. So your autoexec.bat should have: + set PYTHONPATH=.;c:\python\lib;c:\python\lib\win +for Windows NT or + set PYTHONPATH=.;c:\python\lib;c:\python\lib\win;c:\python\lib\dos_8x3 +for DOS or Windows 3.1x (change the path to the correct path). + +There are several add-in modules to build Python programs which use +the native Windows operating environment. The ports here just make +"QuickWin" and DOS Python versions which support a character-mode +(console) environment. Look in www.python.org for Tkinter, PythonWin, +WPY and wxPython. + +To make a Python port, start the Integrated Development Environment +(IDE) of your compiler, and read in the native "project file" +(or makefile) provided. This will enable you to change any source +files or build settings so you can make custom builds. + +config.h An important configuration file specific to PC's. + +config.c The list of C modules to include in the Python PC + version. Manually edit this file to add or + remove Python modules. + +testpy.py A Python test program. Run this to test your + Python port. It should say "all tests OK". + +src A subdirectory used only for VC++ version 1.5 Python + source files. See below. The other compilers do not + use it. They reference the actual distribution + directories instead. + +Watcom C++ Version 10.6 +======================= + +The project file for the Watcom compiler is ./python.wpj. +It will build Watcom versions in the directories wat_*. + +wat_dos A 32-bit extended DOS Python (console-mode) using the + dos4gw DOS extender. Sockets are not included. + +wat_os2 A 32-bit OS/2 Python (console-mode). + Sockets are not included. + + +Microsoft Visual C++ Version 4.0 (32-bit Windows) +================================================= + +The project files are vc40.mdp, vc40.ncb and vc40.mak. They +will NOT work from this PC directory. To use them, first copy +them to the Python distribution directory with this command: + copy vc40.* .. +You may then want to remove them from here to prevent confusion. + +Once the project files are located in the directory just above +this one, start VC++ and read in the project. The targets are built +in the subdirectories vc40_*. + +vc40_dll The Python core built as an NT DLL. + +vc40_nt A Windows NT and 95 Python QuickWin (console-mode) + version of Python including sockets. It is + self-contained, and does not require any DLL's. + + +Microsoft Visual C++ Version 1.5 (16-bit Windows) +================================================= + +Since VC++1.5 does not handle long file names, it is necessary +to run the "makesrc.exe" program in this directory to copy +Python files from the distribution to the directory "src" +with shortened names. Included file names are shortened too. +Do this before you attempt to build Python. + +The "makesrc.exe" program is a native NT program, and you must +have NT, Windows 95 or Win32s to run it. Otherwise you will need +to copy distribution files to src yourself. + +The makefiles are named *.mak and are located in directories +starting with "vc15_". NOTE: When dependencies are scanned +VC++ will create dependencies for directories which are not +used because it fails to evaluate "#define" properly. You +must manaully edit makefiles (*.mak) to remove references to +"sys/" and other bad directories. + +vc15_lib A static Python library. Create this first because is + is required for vc15_w31. + +vc15_w31 A Windows 3.1x Python QuickWin (console-mode) + Python including sockets. Requires vc15_lib. diff --git a/PC/testpy.py b/PC/testpy.py new file mode 100644 index 00000000000..c037618c332 --- /dev/null +++ b/PC/testpy.py @@ -0,0 +1,31 @@ +import sys + +# This is a test module for Python. It looks in the standard +# places for various *.py files. If these are moved, you must +# change this module too. + +try: + import string +except: + print """Could not import the standard "string" module. +Please check your PYTHONPATH environment variable.""" + sys.exit(1) + +try: + import regex_syntax +except: + print """Could not import the standard "regex_syntax" module. If this is +a PC, you should add the dos_8x3 directory to your PYTHONPATH.""" + sys.exit(1) + +import os + +for dir in sys.path: + file = os.path.join(dir, "string.py") + if os.path.isfile(file): + test = os.path.join(dir, "test") + if os.path.isdir(test): + # Add the "test" directory to PYTHONPATH. + sys.path = sys.path + [test] + +import autotest # Standard Python tester. diff --git a/PC/utils/makesrc.c b/PC/utils/makesrc.c new file mode 100755 index 00000000000..883b4d8e706 --- /dev/null +++ b/PC/utils/makesrc.c @@ -0,0 +1,67 @@ +#include +#include +#include + +/* Copy files from source directories to ./src changing +file names and #include names to 8x3 lower case */ + +char *usage = "You must be in the \"pc\" directory.\n"; +char *list[] = {"..\\Include", "..\\Modules", "..\\Objects", "..\\Parser", "..\\Python", ".", 0}; +main() +{ + DIR *dpath; + struct dirent *dir; + int len; + char **plist; + char *pt1, *pt2, *name; + char dest_path[256], src_path[256], buf256[256]; + FILE *fpin, *fpout; + + for (plist = list; *plist; plist++){ + if ((dpath = opendir(*plist)) == NULL){ + printf(usage); + return 1; + } + + while (dir = readdir(dpath)){ + name = dir->d_name; + len = strlen(name); + if (len > 2 && name[len - 2] == '.' && + (name[len - 1] == 'c' || name[len - 1] == 'h')){ + strcpy(buf256, name); + if (len > 10){ + buf256[8] = '.'; + buf256[9] = name[len - 1]; + buf256[10] = 0; + } + strlwr(buf256); + strncpy(src_path, *plist, 256); + strncat(src_path, "\\", 256); + strncat(src_path, name, 256); + strncpy(dest_path, ".\\src\\", 256); + strncat(dest_path, buf256, 256); + printf("Copying %-30s to %s\n", src_path, dest_path); + fpin = fopen(src_path, "r"); + fpout = fopen(dest_path, "w"); + while (fgets(buf256, 256, fpin)){ + if (!strncmp(buf256, "#include", 8)){ + strlwr(buf256); + if ((pt1 = strstr(buf256, "\"")) && + (pt2 = strstr(buf256, ".")) && + (*(pt2 + 1) == 'h') && + (pt2 - pt1 > 9)){ + for (pt1 += 9; *pt2; pt1++, pt2++) + *pt1 = *pt2; + *pt1 = 0; + } + } + fputs(buf256, fpout); + } + fclose(fpin); + fclose(fpout); + } + } + closedir(dpath); + } + return 0; + } diff --git a/PC/utils/makesrc.lk1 b/PC/utils/makesrc.lk1 new file mode 100755 index 00000000000..a1759fc7086 --- /dev/null +++ b/PC/utils/makesrc.lk1 @@ -0,0 +1,3 @@ +NAME makesrc +FIL makesrc.obj + diff --git a/PC/utils/makesrc.mk1 b/PC/utils/makesrc.mk1 new file mode 100755 index 00000000000..c722c379c89 --- /dev/null +++ b/PC/utils/makesrc.mk1 @@ -0,0 +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 + diff --git a/PC/utils/makesrc.tgt b/PC/utils/makesrc.tgt new file mode 100755 index 00000000000..f35173c6422 --- /dev/null +++ b/PC/utils/makesrc.tgt @@ -0,0 +1,185 @@ +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 diff --git a/PC/utils/utils.mk b/PC/utils/utils.mk new file mode 100755 index 00000000000..033c92c1616 --- /dev/null +++ b/PC/utils/utils.mk @@ -0,0 +1,3 @@ +project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC + +!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1 diff --git a/PC/utils/utils.wpj b/PC/utils/utils.wpj new file mode 100755 index 00000000000..5bbff04a85d --- /dev/null +++ b/PC/utils/utils.wpj @@ -0,0 +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 diff --git a/PC/vc15_lib/_.c b/PC/vc15_lib/_.c new file mode 100644 index 00000000000..e69de29bb2d diff --git a/PC/vc15_lib/python.mak b/PC/vc15_lib/python.mak new file mode 100644 index 00000000000..761445ac1f8 --- /dev/null +++ b/PC/vc15_lib/python.mak @@ -0,0 +1,2812 @@ +# 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) +<< diff --git a/PC/vc15_lib/python.vcw b/PC/vc15_lib/python.vcw new file mode 100644 index 00000000000..9ee63c4267b --- /dev/null +++ b/PC/vc15_lib/python.vcw @@ -0,0 +1,6 @@ +[MSVC Status File] +Version=1.00 +ProjectType=10 +External=0 +BrkptCount=0 +WatchCount=0 diff --git a/PC/vc15_lib/python.wsp b/PC/vc15_lib/python.wsp new file mode 100644 index 0000000000000000000000000000000000000000..4c1eaff37f2ad1a835c37de55b3ca8c265ac2e35 GIT binary patch literal 254 zcmXriGc{1qGXMfG!NAO==9-dO!hj2?xuhnQrsI@#E-fy}&&46F=3H7-l$wXra7G43 zh7gATV4%aG#UR5hz{J3CUJPU$BLg!Kivi&aCT&KL$mjncl7V3YmR?LQ82n313Q9`=DP<-O literal 0 HcmV?d00001 diff --git a/PC/vc15_w31/_.c b/PC/vc15_w31/_.c new file mode 100644 index 00000000000..e69de29bb2d diff --git a/PC/vc15_w31/pyth_w31.mak b/PC/vc15_w31/pyth_w31.mak new file mode 100644 index 00000000000..f2b5d92a605 --- /dev/null +++ b/PC/vc15_w31/pyth_w31.mak @@ -0,0 +1,220 @@ +# 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) +<< diff --git a/PC/vc15_w31/pyth_w31.pdb b/PC/vc15_w31/pyth_w31.pdb new file mode 100644 index 0000000000000000000000000000000000000000..e1f30f38a76d070cd28c92bc8576d3713b7a18ef GIT binary patch literal 4774 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 S&^wNtV_MR;Q6qKRJ^e4tuJLdH literal 0 HcmV?d00001 diff --git a/PC/vc15_w31/pyth_w31.vcw b/PC/vc15_w31/pyth_w31.vcw new file mode 100644 index 00000000000..9ee63c4267b --- /dev/null +++ b/PC/vc15_w31/pyth_w31.vcw @@ -0,0 +1,6 @@ +[MSVC Status File] +Version=1.00 +ProjectType=10 +External=0 +BrkptCount=0 +WatchCount=0 diff --git a/PC/vc15_w31/pyth_w31.wsp b/PC/vc15_w31/pyth_w31.wsp new file mode 100644 index 0000000000000000000000000000000000000000..29f13ebec20fbc82b5c90eb0e5788630bc80af72 GIT binary patch literal 254 zcmXriGc{1qGXMfG!NAO==9-dO!hj2?xuhnQrsI@#E-fy}&&46F=3H7-l$wXra7G43 zh7gATV4%aG#UR5hz{J3CUJPU$BLg!K>j2>kCPzk)$mjncl7V3YmR?LQ82n313Q9`=I#DJ# literal 0 HcmV?d00001 diff --git a/PC/vc40.mak b/PC/vc40.mak new file mode 100644 index 00000000000..5a6c36c1ee0 --- /dev/null +++ b/PC/vc40.mak @@ -0,0 +1,9633 @@ +# 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\longobject.obj" + -@erase ".\vc40_dll\Release\listobject.obj" + -@erase ".\vc40_dll\Release\intobject.obj" + -@erase ".\vc40_dll\Release\importdl.obj" + -@erase ".\vc40_dll\Release\import.obj" + -@erase ".\vc40_dll\Release\imageop.obj" + -@erase ".\vc40_dll\Release\grammar1.obj" + -@erase ".\vc40_dll\Release\graminit.obj" + -@erase ".\vc40_dll\Release\getversion.obj" + -@erase ".\vc40_dll\Release\getplatform.obj" + -@erase ".\vc40_dll\Release\getpath.obj" + -@erase ".\vc40_dll\Release\getmtime.obj" + -@erase ".\vc40_dll\Release\getcopyright.obj" + -@erase ".\vc40_dll\Release\getcompiler.obj" + -@erase ".\vc40_dll\Release\getargs.obj" + -@erase ".\vc40_dll\Release\funcobject.obj" + -@erase ".\vc40_dll\Release\frozen.obj" + -@erase ".\vc40_dll\Release\frameobject.obj" + -@erase ".\vc40_dll\Release\floatobject.obj" + -@erase ".\vc40_dll\Release\fileobject.obj" + -@erase ".\vc40_dll\Release\errors.obj" + -@erase ".\vc40_dll\Release\environment.obj" + -@erase ".\vc40_dll\Release\config.obj" + -@erase ".\vc40_dll\Release\complexobject.obj" + -@erase ".\vc40_dll\Release\compile.obj" + -@erase ".\vc40_dll\Release\cobject.obj" + -@erase ".\vc40_dll\Release\cmathmodule.obj" + -@erase ".\vc40_dll\Release\classobject.obj" + -@erase ".\vc40_dll\Release\cgensupport.obj" + -@erase ".\vc40_dll\Release\ceval.obj" + -@erase ".\vc40_dll\Release\bltinmodule.obj" + -@erase ".\vc40_dll\Release\binascii.obj" + -@erase ".\vc40_dll\Release\audioop.obj" + -@erase ".\vc40_dll\Release\arraymodule.obj" + -@erase ".\vc40_dll\Release\accessobject.obj" + -@erase ".\vc40_dll\Release\acceler.obj" + -@erase ".\vc40_dll\Release\abstract.obj" + -@erase ".\vc40_dll\Release\yuvconvert.obj" + -@erase ".\vc40_dll\Release\typeobject.obj" + -@erase ".\vc40_dll\Release\tupleobject.obj" + -@erase ".\vc40_dll\Release\traceback.obj" + -@erase ".\vc40_dll\Release\tokenizer.obj" + -@erase ".\vc40_dll\Release\timemodule.obj" + -@erase ".\vc40_dll\Release\threadmodule.obj" + -@erase ".\vc40_dll\Release\thread.obj" + -@erase ".\vc40_dll\Release\sysmodule.obj" + -@erase ".\vc40_dll\Release\structmodule.obj" + -@erase ".\vc40_dll\Release\structmember.obj" + -@erase ".\vc40_dll\Release\stropmodule.obj" + -@erase ".\vc40_dll\Release\stringobject.obj" + -@erase ".\vc40_dll\Release\soundex.obj" + -@erase ".\vc40_dll\Release\socketmodule.obj" + -@erase ".\vc40_dll\Release\signalmodule.obj" + -@erase ".\vc40_dll\Release\selectmodule.obj" + -@erase ".\vc40_dll\Release\rotormodule.obj" + -@erase ".\vc40_dll\Release\rgbimgmodule.obj" + -@erase ".\vc40_dll\Release\regexpr.obj" + -@erase ".\vc40_dll\Release\regexmodule.obj" + -@erase ".\vc40_dll\Release\rangeobject.obj" + -@erase ".\vc40_dll\Release\pythonrun.obj" + -@erase ".\vc40_dll\Release\posixmodule.obj" + -@erase ".\vc40_dll\Release\parsetok.obj" + -@erase ".\vc40_dll\Release\parser.obj" + -@erase ".\vc40_dll\Release\object.obj" + -@erase ".\vc40_dll\Release\node.obj" + -@erase ".\vc40_dll\Release\newmodule.obj" + -@erase ".\vc40_dll\Release\marshal.obj" + -@erase ".\vc40_dll\Release\mystrtoul.obj" + -@erase ".\vc40_dll\Release\myreadline.obj" + -@erase ".\vc40_dll\Release\moduleobject.obj" + -@erase ".\vc40_dll\Release\modsupport.obj" + -@erase ".\vc40_dll\Release\methodobject.obj" + -@erase ".\vc40_dll\Release\md5module.obj" + -@erase ".\vc40_dll\Release\md5c.obj" + -@erase ".\vc40_dll\Release\mathmodule.obj" + -@erase ".\vc40_dll\Release\mappingobject.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" /YX /c +CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "./PC" /I "./Include" /D "NDEBUG" /D\ + "WIN32" /D "_WINDOWS" /D "HAVE_CONFIG_H" /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\longobject.obj" \ + ".\vc40_dll\Release\listobject.obj" \ + ".\vc40_dll\Release\intobject.obj" \ + ".\vc40_dll\Release\importdl.obj" \ + ".\vc40_dll\Release\import.obj" \ + ".\vc40_dll\Release\imageop.obj" \ + ".\vc40_dll\Release\grammar1.obj" \ + ".\vc40_dll\Release\graminit.obj" \ + ".\vc40_dll\Release\getversion.obj" \ + ".\vc40_dll\Release\getplatform.obj" \ + ".\vc40_dll\Release\getpath.obj" \ + ".\vc40_dll\Release\getmtime.obj" \ + ".\vc40_dll\Release\getcopyright.obj" \ + ".\vc40_dll\Release\getcompiler.obj" \ + ".\vc40_dll\Release\getargs.obj" \ + ".\vc40_dll\Release\funcobject.obj" \ + ".\vc40_dll\Release\frozen.obj" \ + ".\vc40_dll\Release\frameobject.obj" \ + ".\vc40_dll\Release\floatobject.obj" \ + ".\vc40_dll\Release\fileobject.obj" \ + ".\vc40_dll\Release\errors.obj" \ + ".\vc40_dll\Release\environment.obj" \ + ".\vc40_dll\Release\config.obj" \ + ".\vc40_dll\Release\complexobject.obj" \ + ".\vc40_dll\Release\compile.obj" \ + ".\vc40_dll\Release\cobject.obj" \ + ".\vc40_dll\Release\cmathmodule.obj" \ + ".\vc40_dll\Release\classobject.obj" \ + ".\vc40_dll\Release\cgensupport.obj" \ + ".\vc40_dll\Release\ceval.obj" \ + ".\vc40_dll\Release\bltinmodule.obj" \ + ".\vc40_dll\Release\binascii.obj" \ + ".\vc40_dll\Release\audioop.obj" \ + ".\vc40_dll\Release\arraymodule.obj" \ + ".\vc40_dll\Release\accessobject.obj" \ + ".\vc40_dll\Release\acceler.obj" \ + ".\vc40_dll\Release\abstract.obj" \ + ".\vc40_dll\Release\yuvconvert.obj" \ + ".\vc40_dll\Release\typeobject.obj" \ + ".\vc40_dll\Release\tupleobject.obj" \ + ".\vc40_dll\Release\traceback.obj" \ + ".\vc40_dll\Release\tokenizer.obj" \ + ".\vc40_dll\Release\timemodule.obj" \ + ".\vc40_dll\Release\threadmodule.obj" \ + ".\vc40_dll\Release\thread.obj" \ + ".\vc40_dll\Release\sysmodule.obj" \ + ".\vc40_dll\Release\structmodule.obj" \ + ".\vc40_dll\Release\structmember.obj" \ + ".\vc40_dll\Release\stropmodule.obj" \ + ".\vc40_dll\Release\stringobject.obj" \ + ".\vc40_dll\Release\soundex.obj" \ + ".\vc40_dll\Release\socketmodule.obj" \ + ".\vc40_dll\Release\signalmodule.obj" \ + ".\vc40_dll\Release\selectmodule.obj" \ + ".\vc40_dll\Release\rotormodule.obj" \ + ".\vc40_dll\Release\rgbimgmodule.obj" \ + ".\vc40_dll\Release\regexpr.obj" \ + ".\vc40_dll\Release\regexmodule.obj" \ + ".\vc40_dll\Release\rangeobject.obj" \ + ".\vc40_dll\Release\pythonrun.obj" \ + ".\vc40_dll\Release\posixmodule.obj" \ + ".\vc40_dll\Release\parsetok.obj" \ + ".\vc40_dll\Release\parser.obj" \ + ".\vc40_dll\Release\object.obj" \ + ".\vc40_dll\Release\node.obj" \ + ".\vc40_dll\Release\newmodule.obj" \ + ".\vc40_dll\Release\marshal.obj" \ + ".\vc40_dll\Release\mystrtoul.obj" \ + ".\vc40_dll\Release\myreadline.obj" \ + ".\vc40_dll\Release\moduleobject.obj" \ + ".\vc40_dll\Release\modsupport.obj" \ + ".\vc40_dll\Release\methodobject.obj" \ + ".\vc40_dll\Release\md5module.obj" \ + ".\vc40_dll\Release\md5c.obj" \ + ".\vc40_dll\Release\mathmodule.obj" \ + ".\vc40_dll\Release\mappingobject.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\longobject.obj" + -@erase ".\vc40_dll\Debug\listobject.obj" + -@erase ".\vc40_dll\Debug\intobject.obj" + -@erase ".\vc40_dll\Debug\importdl.obj" + -@erase ".\vc40_dll\Debug\import.obj" + -@erase ".\vc40_dll\Debug\imageop.obj" + -@erase ".\vc40_dll\Debug\grammar1.obj" + -@erase ".\vc40_dll\Debug\graminit.obj" + -@erase ".\vc40_dll\Debug\getversion.obj" + -@erase ".\vc40_dll\Debug\getplatform.obj" + -@erase ".\vc40_dll\Debug\getpath.obj" + -@erase ".\vc40_dll\Debug\getmtime.obj" + -@erase ".\vc40_dll\Debug\getcopyright.obj" + -@erase ".\vc40_dll\Debug\getcompiler.obj" + -@erase ".\vc40_dll\Debug\getargs.obj" + -@erase ".\vc40_dll\Debug\funcobject.obj" + -@erase ".\vc40_dll\Debug\frozen.obj" + -@erase ".\vc40_dll\Debug\frameobject.obj" + -@erase ".\vc40_dll\Debug\floatobject.obj" + -@erase ".\vc40_dll\Debug\fileobject.obj" + -@erase ".\vc40_dll\Debug\errors.obj" + -@erase ".\vc40_dll\Debug\environment.obj" + -@erase ".\vc40_dll\Debug\config.obj" + -@erase ".\vc40_dll\Debug\complexobject.obj" + -@erase ".\vc40_dll\Debug\compile.obj" + -@erase ".\vc40_dll\Debug\cobject.obj" + -@erase ".\vc40_dll\Debug\cmathmodule.obj" + -@erase ".\vc40_dll\Debug\classobject.obj" + -@erase ".\vc40_dll\Debug\cgensupport.obj" + -@erase ".\vc40_dll\Debug\ceval.obj" + -@erase ".\vc40_dll\Debug\bltinmodule.obj" + -@erase ".\vc40_dll\Debug\binascii.obj" + -@erase ".\vc40_dll\Debug\audioop.obj" + -@erase ".\vc40_dll\Debug\arraymodule.obj" + -@erase ".\vc40_dll\Debug\accessobject.obj" + -@erase ".\vc40_dll\Debug\acceler.obj" + -@erase ".\vc40_dll\Debug\abstract.obj" + -@erase ".\vc40_dll\Debug\yuvconvert.obj" + -@erase ".\vc40_dll\Debug\typeobject.obj" + -@erase ".\vc40_dll\Debug\tupleobject.obj" + -@erase ".\vc40_dll\Debug\traceback.obj" + -@erase ".\vc40_dll\Debug\tokenizer.obj" + -@erase ".\vc40_dll\Debug\timemodule.obj" + -@erase ".\vc40_dll\Debug\threadmodule.obj" + -@erase ".\vc40_dll\Debug\thread.obj" + -@erase ".\vc40_dll\Debug\sysmodule.obj" + -@erase ".\vc40_dll\Debug\structmodule.obj" + -@erase ".\vc40_dll\Debug\structmember.obj" + -@erase ".\vc40_dll\Debug\stropmodule.obj" + -@erase ".\vc40_dll\Debug\stringobject.obj" + -@erase ".\vc40_dll\Debug\soundex.obj" + -@erase ".\vc40_dll\Debug\socketmodule.obj" + -@erase ".\vc40_dll\Debug\signalmodule.obj" + -@erase ".\vc40_dll\Debug\selectmodule.obj" + -@erase ".\vc40_dll\Debug\rotormodule.obj" + -@erase ".\vc40_dll\Debug\rgbimgmodule.obj" + -@erase ".\vc40_dll\Debug\regexpr.obj" + -@erase ".\vc40_dll\Debug\regexmodule.obj" + -@erase ".\vc40_dll\Debug\rangeobject.obj" + -@erase ".\vc40_dll\Debug\pythonrun.obj" + -@erase ".\vc40_dll\Debug\posixmodule.obj" + -@erase ".\vc40_dll\Debug\parsetok.obj" + -@erase ".\vc40_dll\Debug\parser.obj" + -@erase ".\vc40_dll\Debug\object.obj" + -@erase ".\vc40_dll\Debug\node.obj" + -@erase ".\vc40_dll\Debug\newmodule.obj" + -@erase ".\vc40_dll\Debug\marshal.obj" + -@erase ".\vc40_dll\Debug\mystrtoul.obj" + -@erase ".\vc40_dll\Debug\myreadline.obj" + -@erase ".\vc40_dll\Debug\moduleobject.obj" + -@erase ".\vc40_dll\Debug\modsupport.obj" + -@erase ".\vc40_dll\Debug\methodobject.obj" + -@erase ".\vc40_dll\Debug\md5module.obj" + -@erase ".\vc40_dll\Debug\md5c.obj" + -@erase ".\vc40_dll\Debug\mathmodule.obj" + -@erase ".\vc40_dll\Debug\mappingobject.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" /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" /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\longobject.obj" \ + ".\vc40_dll\Debug\listobject.obj" \ + ".\vc40_dll\Debug\intobject.obj" \ + ".\vc40_dll\Debug\importdl.obj" \ + ".\vc40_dll\Debug\import.obj" \ + ".\vc40_dll\Debug\imageop.obj" \ + ".\vc40_dll\Debug\grammar1.obj" \ + ".\vc40_dll\Debug\graminit.obj" \ + ".\vc40_dll\Debug\getversion.obj" \ + ".\vc40_dll\Debug\getplatform.obj" \ + ".\vc40_dll\Debug\getpath.obj" \ + ".\vc40_dll\Debug\getmtime.obj" \ + ".\vc40_dll\Debug\getcopyright.obj" \ + ".\vc40_dll\Debug\getcompiler.obj" \ + ".\vc40_dll\Debug\getargs.obj" \ + ".\vc40_dll\Debug\funcobject.obj" \ + ".\vc40_dll\Debug\frozen.obj" \ + ".\vc40_dll\Debug\frameobject.obj" \ + ".\vc40_dll\Debug\floatobject.obj" \ + ".\vc40_dll\Debug\fileobject.obj" \ + ".\vc40_dll\Debug\errors.obj" \ + ".\vc40_dll\Debug\environment.obj" \ + ".\vc40_dll\Debug\config.obj" \ + ".\vc40_dll\Debug\complexobject.obj" \ + ".\vc40_dll\Debug\compile.obj" \ + ".\vc40_dll\Debug\cobject.obj" \ + ".\vc40_dll\Debug\cmathmodule.obj" \ + ".\vc40_dll\Debug\classobject.obj" \ + ".\vc40_dll\Debug\cgensupport.obj" \ + ".\vc40_dll\Debug\ceval.obj" \ + ".\vc40_dll\Debug\bltinmodule.obj" \ + ".\vc40_dll\Debug\binascii.obj" \ + ".\vc40_dll\Debug\audioop.obj" \ + ".\vc40_dll\Debug\arraymodule.obj" \ + ".\vc40_dll\Debug\accessobject.obj" \ + ".\vc40_dll\Debug\acceler.obj" \ + ".\vc40_dll\Debug\abstract.obj" \ + ".\vc40_dll\Debug\yuvconvert.obj" \ + ".\vc40_dll\Debug\typeobject.obj" \ + ".\vc40_dll\Debug\tupleobject.obj" \ + ".\vc40_dll\Debug\traceback.obj" \ + ".\vc40_dll\Debug\tokenizer.obj" \ + ".\vc40_dll\Debug\timemodule.obj" \ + ".\vc40_dll\Debug\threadmodule.obj" \ + ".\vc40_dll\Debug\thread.obj" \ + ".\vc40_dll\Debug\sysmodule.obj" \ + ".\vc40_dll\Debug\structmodule.obj" \ + ".\vc40_dll\Debug\structmember.obj" \ + ".\vc40_dll\Debug\stropmodule.obj" \ + ".\vc40_dll\Debug\stringobject.obj" \ + ".\vc40_dll\Debug\soundex.obj" \ + ".\vc40_dll\Debug\socketmodule.obj" \ + ".\vc40_dll\Debug\signalmodule.obj" \ + ".\vc40_dll\Debug\selectmodule.obj" \ + ".\vc40_dll\Debug\rotormodule.obj" \ + ".\vc40_dll\Debug\rgbimgmodule.obj" \ + ".\vc40_dll\Debug\regexpr.obj" \ + ".\vc40_dll\Debug\regexmodule.obj" \ + ".\vc40_dll\Debug\rangeobject.obj" \ + ".\vc40_dll\Debug\pythonrun.obj" \ + ".\vc40_dll\Debug\posixmodule.obj" \ + ".\vc40_dll\Debug\parsetok.obj" \ + ".\vc40_dll\Debug\parser.obj" \ + ".\vc40_dll\Debug\object.obj" \ + ".\vc40_dll\Debug\node.obj" \ + ".\vc40_dll\Debug\newmodule.obj" \ + ".\vc40_dll\Debug\marshal.obj" \ + ".\vc40_dll\Debug\mystrtoul.obj" \ + ".\vc40_dll\Debug\myreadline.obj" \ + ".\vc40_dll\Debug\moduleobject.obj" \ + ".\vc40_dll\Debug\modsupport.obj" \ + ".\vc40_dll\Debug\methodobject.obj" \ + ".\vc40_dll\Debug\md5module.obj" \ + ".\vc40_dll\Debug\md5c.obj" \ + ".\vc40_dll\Debug\mathmodule.obj" \ + ".\vc40_dll\Debug\mappingobject.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\longobject.obj" + -@erase ".\vc40_nt\Release\listobject.obj" + -@erase ".\vc40_nt\Release\intobject.obj" + -@erase ".\vc40_nt\Release\importdl.obj" + -@erase ".\vc40_nt\Release\import.obj" + -@erase ".\vc40_nt\Release\imageop.obj" + -@erase ".\vc40_nt\Release\grammar1.obj" + -@erase ".\vc40_nt\Release\graminit.obj" + -@erase ".\vc40_nt\Release\getversion.obj" + -@erase ".\vc40_nt\Release\getplatform.obj" + -@erase ".\vc40_nt\Release\getpath.obj" + -@erase ".\vc40_nt\Release\getmtime.obj" + -@erase ".\vc40_nt\Release\getcopyright.obj" + -@erase ".\vc40_nt\Release\getcompiler.obj" + -@erase ".\vc40_nt\Release\getargs.obj" + -@erase ".\vc40_nt\Release\funcobject.obj" + -@erase ".\vc40_nt\Release\frozen.obj" + -@erase ".\vc40_nt\Release\frameobject.obj" + -@erase ".\vc40_nt\Release\floatobject.obj" + -@erase ".\vc40_nt\Release\fileobject.obj" + -@erase ".\vc40_nt\Release\errors.obj" + -@erase ".\vc40_nt\Release\environment.obj" + -@erase ".\vc40_nt\Release\config.obj" + -@erase ".\vc40_nt\Release\complexobject.obj" + -@erase ".\vc40_nt\Release\compile.obj" + -@erase ".\vc40_nt\Release\cobject.obj" + -@erase ".\vc40_nt\Release\cmathmodule.obj" + -@erase ".\vc40_nt\Release\classobject.obj" + -@erase ".\vc40_nt\Release\cgensupport.obj" + -@erase ".\vc40_nt\Release\ceval.obj" + -@erase ".\vc40_nt\Release\bltinmodule.obj" + -@erase ".\vc40_nt\Release\binascii.obj" + -@erase ".\vc40_nt\Release\audioop.obj" + -@erase ".\vc40_nt\Release\arraymodule.obj" + -@erase ".\vc40_nt\Release\accessobject.obj" + -@erase ".\vc40_nt\Release\acceler.obj" + -@erase ".\vc40_nt\Release\abstract.obj" + -@erase ".\vc40_nt\Release\yuvconvert.obj" + -@erase ".\vc40_nt\Release\typeobject.obj" + -@erase ".\vc40_nt\Release\tupleobject.obj" + -@erase ".\vc40_nt\Release\traceback.obj" + -@erase ".\vc40_nt\Release\tokenizer.obj" + -@erase ".\vc40_nt\Release\timemodule.obj" + -@erase ".\vc40_nt\Release\threadmodule.obj" + -@erase ".\vc40_nt\Release\thread.obj" + -@erase ".\vc40_nt\Release\sysmodule.obj" + -@erase ".\vc40_nt\Release\structmodule.obj" + -@erase ".\vc40_nt\Release\structmember.obj" + -@erase ".\vc40_nt\Release\stropmodule.obj" + -@erase ".\vc40_nt\Release\stringobject.obj" + -@erase ".\vc40_nt\Release\soundex.obj" + -@erase ".\vc40_nt\Release\socketmodule.obj" + -@erase ".\vc40_nt\Release\signalmodule.obj" + -@erase ".\vc40_nt\Release\selectmodule.obj" + -@erase ".\vc40_nt\Release\rotormodule.obj" + -@erase ".\vc40_nt\Release\rgbimgmodule.obj" + -@erase ".\vc40_nt\Release\regexpr.obj" + -@erase ".\vc40_nt\Release\regexmodule.obj" + -@erase ".\vc40_nt\Release\rangeobject.obj" + -@erase ".\vc40_nt\Release\pythonrun.obj" + -@erase ".\vc40_nt\Release\posixmodule.obj" + -@erase ".\vc40_nt\Release\parsetok.obj" + -@erase ".\vc40_nt\Release\parser.obj" + -@erase ".\vc40_nt\Release\object.obj" + -@erase ".\vc40_nt\Release\node.obj" + -@erase ".\vc40_nt\Release\newmodule.obj" + -@erase ".\vc40_nt\Release\mystrtoul.obj" + -@erase ".\vc40_nt\Release\myreadline.obj" + -@erase ".\vc40_nt\Release\moduleobject.obj" + -@erase ".\vc40_nt\Release\modsupport.obj" + -@erase ".\vc40_nt\Release\methodobject.obj" + -@erase ".\vc40_nt\Release\md5module.obj" + -@erase ".\vc40_nt\Release\md5c.obj" + -@erase ".\vc40_nt\Release\mathmodule.obj" + -@erase ".\vc40_nt\Release\marshal.obj" + -@erase ".\vc40_nt\Release\mappingobject.obj" + -@erase ".\vc40_nt\Release\main.obj" + -@erase ".\vc40_nt\Release\getopt.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\longobject.obj" \ + ".\vc40_nt\Release\listobject.obj" \ + ".\vc40_nt\Release\intobject.obj" \ + ".\vc40_nt\Release\importdl.obj" \ + ".\vc40_nt\Release\import.obj" \ + ".\vc40_nt\Release\imageop.obj" \ + ".\vc40_nt\Release\grammar1.obj" \ + ".\vc40_nt\Release\graminit.obj" \ + ".\vc40_nt\Release\getversion.obj" \ + ".\vc40_nt\Release\getplatform.obj" \ + ".\vc40_nt\Release\getpath.obj" \ + ".\vc40_nt\Release\getmtime.obj" \ + ".\vc40_nt\Release\getcopyright.obj" \ + ".\vc40_nt\Release\getcompiler.obj" \ + ".\vc40_nt\Release\getargs.obj" \ + ".\vc40_nt\Release\funcobject.obj" \ + ".\vc40_nt\Release\frozen.obj" \ + ".\vc40_nt\Release\frameobject.obj" \ + ".\vc40_nt\Release\floatobject.obj" \ + ".\vc40_nt\Release\fileobject.obj" \ + ".\vc40_nt\Release\errors.obj" \ + ".\vc40_nt\Release\environment.obj" \ + ".\vc40_nt\Release\config.obj" \ + ".\vc40_nt\Release\complexobject.obj" \ + ".\vc40_nt\Release\compile.obj" \ + ".\vc40_nt\Release\cobject.obj" \ + ".\vc40_nt\Release\cmathmodule.obj" \ + ".\vc40_nt\Release\classobject.obj" \ + ".\vc40_nt\Release\cgensupport.obj" \ + ".\vc40_nt\Release\ceval.obj" \ + ".\vc40_nt\Release\bltinmodule.obj" \ + ".\vc40_nt\Release\binascii.obj" \ + ".\vc40_nt\Release\audioop.obj" \ + ".\vc40_nt\Release\arraymodule.obj" \ + ".\vc40_nt\Release\accessobject.obj" \ + ".\vc40_nt\Release\acceler.obj" \ + ".\vc40_nt\Release\abstract.obj" \ + ".\vc40_nt\Release\yuvconvert.obj" \ + ".\vc40_nt\Release\typeobject.obj" \ + ".\vc40_nt\Release\tupleobject.obj" \ + ".\vc40_nt\Release\traceback.obj" \ + ".\vc40_nt\Release\tokenizer.obj" \ + ".\vc40_nt\Release\timemodule.obj" \ + ".\vc40_nt\Release\threadmodule.obj" \ + ".\vc40_nt\Release\thread.obj" \ + ".\vc40_nt\Release\sysmodule.obj" \ + ".\vc40_nt\Release\structmodule.obj" \ + ".\vc40_nt\Release\structmember.obj" \ + ".\vc40_nt\Release\stropmodule.obj" \ + ".\vc40_nt\Release\stringobject.obj" \ + ".\vc40_nt\Release\soundex.obj" \ + ".\vc40_nt\Release\socketmodule.obj" \ + ".\vc40_nt\Release\signalmodule.obj" \ + ".\vc40_nt\Release\selectmodule.obj" \ + ".\vc40_nt\Release\rotormodule.obj" \ + ".\vc40_nt\Release\rgbimgmodule.obj" \ + ".\vc40_nt\Release\regexpr.obj" \ + ".\vc40_nt\Release\regexmodule.obj" \ + ".\vc40_nt\Release\rangeobject.obj" \ + ".\vc40_nt\Release\pythonrun.obj" \ + ".\vc40_nt\Release\posixmodule.obj" \ + ".\vc40_nt\Release\parsetok.obj" \ + ".\vc40_nt\Release\parser.obj" \ + ".\vc40_nt\Release\object.obj" \ + ".\vc40_nt\Release\node.obj" \ + ".\vc40_nt\Release\newmodule.obj" \ + ".\vc40_nt\Release\mystrtoul.obj" \ + ".\vc40_nt\Release\myreadline.obj" \ + ".\vc40_nt\Release\moduleobject.obj" \ + ".\vc40_nt\Release\modsupport.obj" \ + ".\vc40_nt\Release\methodobject.obj" \ + ".\vc40_nt\Release\md5module.obj" \ + ".\vc40_nt\Release\md5c.obj" \ + ".\vc40_nt\Release\mathmodule.obj" \ + ".\vc40_nt\Release\marshal.obj" \ + ".\vc40_nt\Release\mappingobject.obj" \ + ".\vc40_nt\Release\main.obj" \ + ".\vc40_nt\Release\getopt.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\longobject.obj" + -@erase ".\vc40_nt\Debug\listobject.obj" + -@erase ".\vc40_nt\Debug\intobject.obj" + -@erase ".\vc40_nt\Debug\importdl.obj" + -@erase ".\vc40_nt\Debug\import.obj" + -@erase ".\vc40_nt\Debug\imageop.obj" + -@erase ".\vc40_nt\Debug\grammar1.obj" + -@erase ".\vc40_nt\Debug\graminit.obj" + -@erase ".\vc40_nt\Debug\getversion.obj" + -@erase ".\vc40_nt\Debug\getplatform.obj" + -@erase ".\vc40_nt\Debug\getpath.obj" + -@erase ".\vc40_nt\Debug\getmtime.obj" + -@erase ".\vc40_nt\Debug\getcopyright.obj" + -@erase ".\vc40_nt\Debug\getcompiler.obj" + -@erase ".\vc40_nt\Debug\getargs.obj" + -@erase ".\vc40_nt\Debug\funcobject.obj" + -@erase ".\vc40_nt\Debug\frozen.obj" + -@erase ".\vc40_nt\Debug\frameobject.obj" + -@erase ".\vc40_nt\Debug\floatobject.obj" + -@erase ".\vc40_nt\Debug\fileobject.obj" + -@erase ".\vc40_nt\Debug\errors.obj" + -@erase ".\vc40_nt\Debug\environment.obj" + -@erase ".\vc40_nt\Debug\config.obj" + -@erase ".\vc40_nt\Debug\complexobject.obj" + -@erase ".\vc40_nt\Debug\compile.obj" + -@erase ".\vc40_nt\Debug\cobject.obj" + -@erase ".\vc40_nt\Debug\cmathmodule.obj" + -@erase ".\vc40_nt\Debug\classobject.obj" + -@erase ".\vc40_nt\Debug\cgensupport.obj" + -@erase ".\vc40_nt\Debug\ceval.obj" + -@erase ".\vc40_nt\Debug\bltinmodule.obj" + -@erase ".\vc40_nt\Debug\binascii.obj" + -@erase ".\vc40_nt\Debug\audioop.obj" + -@erase ".\vc40_nt\Debug\arraymodule.obj" + -@erase ".\vc40_nt\Debug\accessobject.obj" + -@erase ".\vc40_nt\Debug\acceler.obj" + -@erase ".\vc40_nt\Debug\abstract.obj" + -@erase ".\vc40_nt\Debug\yuvconvert.obj" + -@erase ".\vc40_nt\Debug\typeobject.obj" + -@erase ".\vc40_nt\Debug\tupleobject.obj" + -@erase ".\vc40_nt\Debug\traceback.obj" + -@erase ".\vc40_nt\Debug\tokenizer.obj" + -@erase ".\vc40_nt\Debug\timemodule.obj" + -@erase ".\vc40_nt\Debug\threadmodule.obj" + -@erase ".\vc40_nt\Debug\thread.obj" + -@erase ".\vc40_nt\Debug\sysmodule.obj" + -@erase ".\vc40_nt\Debug\structmodule.obj" + -@erase ".\vc40_nt\Debug\structmember.obj" + -@erase ".\vc40_nt\Debug\stropmodule.obj" + -@erase ".\vc40_nt\Debug\stringobject.obj" + -@erase ".\vc40_nt\Debug\soundex.obj" + -@erase ".\vc40_nt\Debug\socketmodule.obj" + -@erase ".\vc40_nt\Debug\signalmodule.obj" + -@erase ".\vc40_nt\Debug\selectmodule.obj" + -@erase ".\vc40_nt\Debug\rotormodule.obj" + -@erase ".\vc40_nt\Debug\rgbimgmodule.obj" + -@erase ".\vc40_nt\Debug\regexpr.obj" + -@erase ".\vc40_nt\Debug\regexmodule.obj" + -@erase ".\vc40_nt\Debug\rangeobject.obj" + -@erase ".\vc40_nt\Debug\pythonrun.obj" + -@erase ".\vc40_nt\Debug\posixmodule.obj" + -@erase ".\vc40_nt\Debug\parsetok.obj" + -@erase ".\vc40_nt\Debug\parser.obj" + -@erase ".\vc40_nt\Debug\object.obj" + -@erase ".\vc40_nt\Debug\node.obj" + -@erase ".\vc40_nt\Debug\newmodule.obj" + -@erase ".\vc40_nt\Debug\mystrtoul.obj" + -@erase ".\vc40_nt\Debug\myreadline.obj" + -@erase ".\vc40_nt\Debug\moduleobject.obj" + -@erase ".\vc40_nt\Debug\modsupport.obj" + -@erase ".\vc40_nt\Debug\methodobject.obj" + -@erase ".\vc40_nt\Debug\md5module.obj" + -@erase ".\vc40_nt\Debug\md5c.obj" + -@erase ".\vc40_nt\Debug\mathmodule.obj" + -@erase ".\vc40_nt\Debug\marshal.obj" + -@erase ".\vc40_nt\Debug\mappingobject.obj" + -@erase ".\vc40_nt\Debug\main.obj" + -@erase ".\vc40_nt\Debug\getopt.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\longobject.obj" \ + ".\vc40_nt\Debug\listobject.obj" \ + ".\vc40_nt\Debug\intobject.obj" \ + ".\vc40_nt\Debug\importdl.obj" \ + ".\vc40_nt\Debug\import.obj" \ + ".\vc40_nt\Debug\imageop.obj" \ + ".\vc40_nt\Debug\grammar1.obj" \ + ".\vc40_nt\Debug\graminit.obj" \ + ".\vc40_nt\Debug\getversion.obj" \ + ".\vc40_nt\Debug\getplatform.obj" \ + ".\vc40_nt\Debug\getpath.obj" \ + ".\vc40_nt\Debug\getmtime.obj" \ + ".\vc40_nt\Debug\getcopyright.obj" \ + ".\vc40_nt\Debug\getcompiler.obj" \ + ".\vc40_nt\Debug\getargs.obj" \ + ".\vc40_nt\Debug\funcobject.obj" \ + ".\vc40_nt\Debug\frozen.obj" \ + ".\vc40_nt\Debug\frameobject.obj" \ + ".\vc40_nt\Debug\floatobject.obj" \ + ".\vc40_nt\Debug\fileobject.obj" \ + ".\vc40_nt\Debug\errors.obj" \ + ".\vc40_nt\Debug\environment.obj" \ + ".\vc40_nt\Debug\config.obj" \ + ".\vc40_nt\Debug\complexobject.obj" \ + ".\vc40_nt\Debug\compile.obj" \ + ".\vc40_nt\Debug\cobject.obj" \ + ".\vc40_nt\Debug\cmathmodule.obj" \ + ".\vc40_nt\Debug\classobject.obj" \ + ".\vc40_nt\Debug\cgensupport.obj" \ + ".\vc40_nt\Debug\ceval.obj" \ + ".\vc40_nt\Debug\bltinmodule.obj" \ + ".\vc40_nt\Debug\binascii.obj" \ + ".\vc40_nt\Debug\audioop.obj" \ + ".\vc40_nt\Debug\arraymodule.obj" \ + ".\vc40_nt\Debug\accessobject.obj" \ + ".\vc40_nt\Debug\acceler.obj" \ + ".\vc40_nt\Debug\abstract.obj" \ + ".\vc40_nt\Debug\yuvconvert.obj" \ + ".\vc40_nt\Debug\typeobject.obj" \ + ".\vc40_nt\Debug\tupleobject.obj" \ + ".\vc40_nt\Debug\traceback.obj" \ + ".\vc40_nt\Debug\tokenizer.obj" \ + ".\vc40_nt\Debug\timemodule.obj" \ + ".\vc40_nt\Debug\threadmodule.obj" \ + ".\vc40_nt\Debug\thread.obj" \ + ".\vc40_nt\Debug\sysmodule.obj" \ + ".\vc40_nt\Debug\structmodule.obj" \ + ".\vc40_nt\Debug\structmember.obj" \ + ".\vc40_nt\Debug\stropmodule.obj" \ + ".\vc40_nt\Debug\stringobject.obj" \ + ".\vc40_nt\Debug\soundex.obj" \ + ".\vc40_nt\Debug\socketmodule.obj" \ + ".\vc40_nt\Debug\signalmodule.obj" \ + ".\vc40_nt\Debug\selectmodule.obj" \ + ".\vc40_nt\Debug\rotormodule.obj" \ + ".\vc40_nt\Debug\rgbimgmodule.obj" \ + ".\vc40_nt\Debug\regexpr.obj" \ + ".\vc40_nt\Debug\regexmodule.obj" \ + ".\vc40_nt\Debug\rangeobject.obj" \ + ".\vc40_nt\Debug\pythonrun.obj" \ + ".\vc40_nt\Debug\posixmodule.obj" \ + ".\vc40_nt\Debug\parsetok.obj" \ + ".\vc40_nt\Debug\parser.obj" \ + ".\vc40_nt\Debug\object.obj" \ + ".\vc40_nt\Debug\node.obj" \ + ".\vc40_nt\Debug\newmodule.obj" \ + ".\vc40_nt\Debug\mystrtoul.obj" \ + ".\vc40_nt\Debug\myreadline.obj" \ + ".\vc40_nt\Debug\moduleobject.obj" \ + ".\vc40_nt\Debug\modsupport.obj" \ + ".\vc40_nt\Debug\methodobject.obj" \ + ".\vc40_nt\Debug\md5module.obj" \ + ".\vc40_nt\Debug\md5c.obj" \ + ".\vc40_nt\Debug\mathmodule.obj" \ + ".\vc40_nt\Debug\marshal.obj" \ + ".\vc40_nt\Debug\mappingobject.obj" \ + ".\vc40_nt\Debug\main.obj" \ + ".\vc40_nt\Debug\getopt.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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\import.c +DEP_CPP_IMPORT=\ + ".\./Include\allobjects.h"\ + ".\./Include\node.h"\ + ".\./Include\token.h"\ + ".\./Include\graminit.h"\ + ".\./Include\import.h"\ + ".\./Include\errcode.h"\ + ".\./Include\sysmodule.h"\ + ".\./Include\bltinmodule.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\marshal.h"\ + ".\./Include\compile.h"\ + ".\./Include\eval.h"\ + ".\./Include\osdefs.h"\ + ".\pc\importdl.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\errors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + ".\./Include\intrcheck.h"\ + ".\Include\abstract.h"\ + ".\./Include\rename2.h"\ + ".\./Include\thread.h"\ + +NODEP_CPP_IMPORT=\ + ".\pc\macglue.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPORT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\config.c +DEP_CPP_CONFI=\ + ".\./Include\Python.h"\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\yuvconvert.c +DEP_CPP_YUVCO=\ + ".\Modules\yuv.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Parser\tokenizer.c +DEP_CPP_TOKEN=\ + ".\./Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\timemodule.c +DEP_CPP_TIMEM=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + ".\Python\thread_foobar.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + +NODEP_CPP_THREAD=\ + "..\..\usr\include\thread.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\sysmodule.c +DEP_CPP_SYSMO=\ + ".\./Include\allobjects.h"\ + ".\./Include\sysmodule.h"\ + ".\./Include\import.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\osdefs.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\errors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\ceval.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\intrcheck.h"\ + ".\./Include\bltinmodule.h"\ + ".\Include\abstract.h"\ + ".\./Include\rename2.h"\ + ".\./Include\thread.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\socketmodule.c +DEP_CPP_SOCKE=\ + ".\./Include\Python.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\mytime.h"\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\socketmodule.obj" : $(SOURCE) $(DEP_CPP_SOCKE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\selectmodule.c +DEP_CPP_SELEC=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\myselect.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\mytime.h"\ + ".\./Include\thread.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\selectmodule.obj" : $(SOURCE) $(DEP_CPP_SELEC) "$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\regexpr.c +DEP_CPP_REGEX=\ + ".\./Include\myproto.h"\ + ".\Modules\regexpr.h"\ + ".\./PC\config.h"\ + ".\./Include\rename2.h"\ + +NODEP_CPP_REGEX=\ + ".\Modules\lisp.h"\ + ".\Modules\buffer.h"\ + ".\Modules\syntax.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\posixmodule.c +DEP_CPP_POSIX=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + {$(INCLUDE)}"\sys\STAT.H"\ + ".\./Include\mytime.h"\ + {$(INCLUDE)}"\sys\UTIME.H"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\posixmodule.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Objects\object.c +DEP_CPP_OBJEC=\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Parser\node.c +DEP_CPP_NODE_=\ + ".\./Include\pgenheaders.h"\ + ".\./Include\node.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ + ".\Include\pydebug.h"\ + ".\./Include\rename2.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\mystrtoul.c +DEP_CPP_MYSTR=\ + ".\./PC\config.h"\ + ".\./Include\rename2.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\md5c.c +DEP_CPP_MD5C_=\ + ".\./PC\config.h"\ + ".\Modules\md5.h"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_dll - Win32 Release" + + +"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_dll - Win32 Debug" + + +"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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 +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\longobject.obj" : $(SOURCE) $(DEP_CPP_LONGO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\listobject.obj" : $(SOURCE) $(DEP_CPP_LISTO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\intobject.obj" : $(SOURCE) $(DEP_CPP_INTOB) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\importdl.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\import.c +DEP_CPP_IMPORT=\ + ".\./Include\allobjects.h"\ + ".\./Include\node.h"\ + ".\./Include\token.h"\ + ".\./Include\graminit.h"\ + ".\./Include\import.h"\ + ".\./Include\errcode.h"\ + ".\./Include\sysmodule.h"\ + ".\./Include\bltinmodule.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\marshal.h"\ + ".\./Include\compile.h"\ + ".\./Include\eval.h"\ + ".\./Include\osdefs.h"\ + ".\pc\importdl.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\errors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + ".\./Include\intrcheck.h"\ + ".\Include\abstract.h"\ + ".\./Include\rename2.h"\ + ".\./Include\thread.h"\ + +NODEP_CPP_IMPORT=\ + ".\pc\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 +################################################################################ +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\imageop.obj" : $(SOURCE) $(DEP_CPP_IMAGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\grammar1.obj" : $(SOURCE) $(DEP_CPP_GRAMM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\graminit.obj" : $(SOURCE) $(DEP_CPP_GRAMI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getversion.obj" : $(SOURCE) $(DEP_CPP_GETVE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getplatform.obj" : $(SOURCE) $(DEP_CPP_GETPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getpath.obj" : $(SOURCE) $(DEP_CPP_GETPA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getmtime.obj" : $(SOURCE) $(DEP_CPP_GETMT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getcopyright.obj" : $(SOURCE) $(DEP_CPP_GETCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getcompiler.obj" : $(SOURCE) $(DEP_CPP_GETCOM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\getargs.obj" : $(SOURCE) $(DEP_CPP_GETAR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\funcobject.obj" : $(SOURCE) $(DEP_CPP_FUNCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\frozen.obj" : $(SOURCE) $(DEP_CPP_FROZE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\frameobject.obj" : $(SOURCE) $(DEP_CPP_FRAME) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\floatobject.obj" : $(SOURCE) $(DEP_CPP_FLOAT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\fileobject.obj" : $(SOURCE) $(DEP_CPP_FILEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\errors.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\environment.obj" : $(SOURCE) $(DEP_CPP_ENVIR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\config.c +DEP_CPP_CONFI=\ + ".\./Include\Python.h"\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\config.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\complexobject.obj" : $(SOURCE) $(DEP_CPP_COMPL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\compile.obj" : $(SOURCE) $(DEP_CPP_COMPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\cobject.obj" : $(SOURCE) $(DEP_CPP_COBJE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\cmathmodule.obj" : $(SOURCE) $(DEP_CPP_CMATH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\classobject.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\cgensupport.obj" : $(SOURCE) $(DEP_CPP_CGENS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\ceval.obj" : $(SOURCE) $(DEP_CPP_CEVAL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\bltinmodule.obj" : $(SOURCE) $(DEP_CPP_BLTIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\binascii.obj" : $(SOURCE) $(DEP_CPP_BINAS) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\audioop.obj" : $(SOURCE) $(DEP_CPP_AUDIO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\arraymodule.obj" : $(SOURCE) $(DEP_CPP_ARRAY) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\accessobject.obj" : $(SOURCE) $(DEP_CPP_ACCES) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\acceler.obj" : $(SOURCE) $(DEP_CPP_ACCEL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\abstract.obj" : $(SOURCE) $(DEP_CPP_ABSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\yuvconvert.c +DEP_CPP_YUVCO=\ + ".\Modules\yuv.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\yuvconvert.obj" : $(SOURCE) $(DEP_CPP_YUVCO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\typeobject.obj" : $(SOURCE) $(DEP_CPP_TYPEO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\tupleobject.obj" : $(SOURCE) $(DEP_CPP_TUPLE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\traceback.obj" : $(SOURCE) $(DEP_CPP_TRACE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Parser\tokenizer.c +DEP_CPP_TOKEN=\ + ".\./Include\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\tokenizer.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\timemodule.c +DEP_CPP_TIMEM=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\timemodule.obj" : $(SOURCE) $(DEP_CPP_TIMEM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\threadmodule.obj" : $(SOURCE) $(DEP_CPP_THREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + ".\Python\thread_foobar.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + +NODEP_CPP_THREAD=\ + "..\..\usr\include\thread.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\thread.obj" : $(SOURCE) $(DEP_CPP_THREAD) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\sysmodule.c +DEP_CPP_SYSMO=\ + ".\./Include\allobjects.h"\ + ".\./Include\sysmodule.h"\ + ".\./Include\import.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\osdefs.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\errors.h"\ + ".\./Include\mymalloc.h"\ + ".\./Include\ceval.h"\ + ".\./Include\pythonrun.h"\ + ".\./Include\intrcheck.h"\ + ".\./Include\bltinmodule.h"\ + ".\Include\abstract.h"\ + ".\./Include\rename2.h"\ + ".\./Include\thread.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\sysmodule.obj" : $(SOURCE) $(DEP_CPP_SYSMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\structmodule.obj" : $(SOURCE) $(DEP_CPP_STRUC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\structmember.obj" : $(SOURCE) $(DEP_CPP_STRUCT) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\stropmodule.obj" : $(SOURCE) $(DEP_CPP_STROP) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\stringobject.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\soundex.obj" : $(SOURCE) $(DEP_CPP_SOUND) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\socketmodule.c +DEP_CPP_SOCKE=\ + ".\./Include\Python.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\mytime.h"\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\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"\ + + +!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\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\signalmodule.obj" : $(SOURCE) $(DEP_CPP_SIGNA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\selectmodule.c +DEP_CPP_SELEC=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + ".\./Include\myselect.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\mytime.h"\ + ".\./Include\thread.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\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\rotormodule.obj" : $(SOURCE) $(DEP_CPP_ROTOR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\rgbimgmodule.obj" : $(SOURCE) $(DEP_CPP_RGBIM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\regexpr.c +DEP_CPP_REGEX=\ + ".\./Include\myproto.h"\ + ".\Modules\regexpr.h"\ + ".\./PC\config.h"\ + ".\./Include\rename2.h"\ + +NODEP_CPP_REGEX=\ + ".\Modules\lisp.h"\ + ".\Modules\buffer.h"\ + ".\Modules\syntax.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\regexpr.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\regexmodule.obj" : $(SOURCE) $(DEP_CPP_REGEXM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\rangeobject.obj" : $(SOURCE) $(DEP_CPP_RANGE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\pythonrun.obj" : $(SOURCE) $(DEP_CPP_PYTHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\PC\posixmodule.c +DEP_CPP_POSIX=\ + ".\./Include\allobjects.h"\ + ".\./Include\modsupport.h"\ + ".\./Include\ceval.h"\ + {$(INCLUDE)}"\sys\TYPES.H"\ + {$(INCLUDE)}"\sys\STAT.H"\ + ".\./Include\mytime.h"\ + {$(INCLUDE)}"\sys\UTIME.H"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!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=.\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\parsetok.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\parser.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Objects\object.c +DEP_CPP_OBJEC=\ + ".\./Include\allobjects.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\Include\object.h"\ + ".\Include\objimpl.h"\ + ".\Include\pydebug.h"\ + ".\Include\accessobject.h"\ + ".\Include\intobject.h"\ + ".\Include\longobject.h"\ + ".\Include\floatobject.h"\ + ".\./Include\complexobject.h"\ + ".\Include\rangeobject.h"\ + ".\Include\stringobject.h"\ + ".\Include\tupleobject.h"\ + ".\Include\listobject.h"\ + ".\Include\mappingobject.h"\ + ".\Include\methodobject.h"\ + ".\Include\moduleobject.h"\ + ".\Include\funcobject.h"\ + ".\Include\classobject.h"\ + ".\Include\fileobject.h"\ + ".\Include\cobject.h"\ + ".\./Include\traceback.h"\ + ".\Include\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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Parser\node.c +DEP_CPP_NODE_=\ + ".\./Include\pgenheaders.h"\ + ".\./Include\node.h"\ + ".\./PC\config.h"\ + ".\./Include\myproto.h"\ + ".\./Include\mymalloc.h"\ + ".\Include\pydebug.h"\ + ".\./Include\rename2.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\node.obj" : $(SOURCE) $(DEP_CPP_NODE_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\newmodule.obj" : $(SOURCE) $(DEP_CPP_NEWMO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Python\mystrtoul.c +DEP_CPP_MYSTR=\ + ".\./PC\config.h"\ + ".\./Include\rename2.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\mystrtoul.obj" : $(SOURCE) $(DEP_CPP_MYSTR) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\myreadline.obj" : $(SOURCE) $(DEP_CPP_MYREA) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\moduleobject.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\modsupport.obj" : $(SOURCE) $(DEP_CPP_MODSU) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\methodobject.obj" : $(SOURCE) $(DEP_CPP_METHO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\md5module.obj" : $(SOURCE) $(DEP_CPP_MD5MO) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# End Source File +################################################################################ +# Begin Source File + +SOURCE=.\Modules\md5c.c +DEP_CPP_MD5C_=\ + ".\./PC\config.h"\ + ".\Modules\md5.h"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\mathmodule.obj" : $(SOURCE) $(DEP_CPP_MATHM) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\marshal.obj" : $(SOURCE) $(DEP_CPP_MARSH) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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"\ + + +!IF "$(CFG)" == "vc40_nt - Win32 Release" + + +"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ELSEIF "$(CFG)" == "vc40_nt - Win32 Debug" + + +"$(INTDIR)\mappingobject.obj" : $(SOURCE) $(DEP_CPP_MAPPI) "$(INTDIR)" + $(CPP) $(CPP_PROJ) $(SOURCE) + + +!ENDIF + +# 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 +# End Target +# End Project +################################################################################ diff --git a/PC/vc40.mdp b/PC/vc40.mdp new file mode 100644 index 0000000000000000000000000000000000000000..53436615eee2ce2d96d93406e99bcb11e93ec923 GIT binary patch literal 82944 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

r>2F4dT&F-PM; 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 literal 0 HcmV?d00001 diff --git a/PC/wat_dos/pyth_dos.lk1 b/PC/wat_dos/pyth_dos.lk1 new file mode 100755 index 00000000000..467ced70ff6 --- /dev/null +++ b/PC/wat_dos/pyth_dos.lk1 @@ -0,0 +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 + diff --git a/PC/wat_dos/pyth_dos.mk1 b/PC/wat_dos/pyth_dos.mk1 new file mode 100755 index 00000000000..7d9cda07386 --- /dev/null +++ b/PC/wat_dos/pyth_dos.mk1 @@ -0,0 +1,590 @@ +!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 + diff --git a/PC/wat_dos/pyth_dos.tgt b/PC/wat_dos/pyth_dos.tgt new file mode 100755 index 00000000000..81f2879abb9 --- /dev/null +++ b/PC/wat_dos/pyth_dos.tgt @@ -0,0 +1,1563 @@ +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 diff --git a/PC/wat_os2/pyth_os2.lk1 b/PC/wat_os2/pyth_os2.lk1 new file mode 100755 index 00000000000..d8993dbccb8 --- /dev/null +++ b/PC/wat_os2/pyth_os2.lk1 @@ -0,0 +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 + diff --git a/PC/wat_os2/pyth_os2.mk1 b/PC/wat_os2/pyth_os2.mk1 new file mode 100755 index 00000000000..4495d49fa21 --- /dev/null +++ b/PC/wat_os2/pyth_os2.mk1 @@ -0,0 +1,596 @@ +!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 + diff --git a/PC/wat_os2/pyth_os2.tgt b/PC/wat_os2/pyth_os2.tgt new file mode 100755 index 00000000000..a2f4e6928cc --- /dev/null +++ b/PC/wat_os2/pyth_os2.tgt @@ -0,0 +1,1479 @@ +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