Added PC files from Jim Ahlstrom.
This commit is contained in:
parent
c012547142
commit
1bc716f2fc
19
PC/config.c
19
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},
|
||||
|
|
41
PC/config.h
41
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 <stdio.h>
|
||||
|
@ -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 <ctype.h>
|
||||
#include <direct.h>
|
||||
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
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1,5 @@
|
|||
NAME
|
||||
EXETYPE WINDOWS
|
||||
CODE PRELOAD MOVABLE DISCARDABLE
|
||||
DATA PRELOAD MOVABLE
|
||||
HEAPSIZE 4096
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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.
|
|
@ -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.
|
|
@ -0,0 +1,67 @@
|
|||
#include <stdio.h>
|
||||
#include <direct.h>
|
||||
#include <string.h>
|
||||
|
||||
/* 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;
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
NAME makesrc
|
||||
FIL makesrc.obj
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,6 @@
|
|||
[MSVC Status File]
|
||||
Version=1.00
|
||||
ProjectType=10
|
||||
External=0
|
||||
BrkptCount=0
|
||||
WatchCount=0
|
Binary file not shown.
|
@ -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)
|
||||
<<
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
[MSVC Status File]
|
||||
Version=1.00
|
||||
ProjectType=10
|
||||
External=0
|
||||
BrkptCount=0
|
||||
WatchCount=0
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -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
|
||||
|
|
@ -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
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -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
|
||||
|
|
@ -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
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue