Commit c3c0514a authored by Guido van Rossum's avatar Guido van Rossum

New versions of almost all files.

parent f3cdacbc
......@@ -34,11 +34,13 @@ extern void initaudioop();
extern void initbinascii();
extern void initcmath();
extern void initenvironment();
extern void initerrno();
extern void initimageop();
extern void initmath();
extern void initmd5();
extern void initnew();
extern void initnt();
extern void initoperator();
extern void initregex();
extern void initrgbimg();
extern void initrotor();
......@@ -64,11 +66,13 @@ struct _inittab inittab[] = {
{"binascii", initbinascii},
{"cmath", initcmath},
{"environment", initenvironment},
{"errno", initerrno},
{"imageop", initimageop},
{"math", initmath},
{"md5", initmd5},
{"new", initnew},
{"nt", initnt}, /* Use the NT os functions, not posix */
{"operator", initoperator},
{"regex", initregex},
{"rgbimg", initrgbimg},
{"rotor", initrotor},
......
......@@ -10,6 +10,22 @@ This is a manually maintained version used for the Watcom,
Borland and and Microsoft Visual C++ compilers. It is a
standard part of the Python distribution.
WINDOWS DEFINES:
The code specific to Windows should be wrapped around one of
the following #defines
MS_WIN32 - Code specific to the MS Win32 API
MS_WIN16 - Code specific to the old 16 bit Windows API.
MS_WINDOWS - Code specific to Windows, but all versions.
MS_COREDLL - Code if the Python core is built as a DLL.
Note that the old defines "NT" and "WIN32" are still supported, but
will soon be dropped.
Also note that neither "_M_IX86" or "_MSC_VER" should be used for
any purpose other than "Windows Intel x86 specific" and "Microsoft
compiler specific". Therefore, these should be very rare.
*/
/*
......@@ -25,6 +41,8 @@ standard part of the Python distribution.
#define DONT_HAVE_SIG_ALARM
#define DONT_HAVE_SIG_PAUSE
#define LONG_BIT 32
#define PREFIX ""
#define EXEC_PREFIX ""
/* Microsoft C defines _MSC_VER */
......@@ -33,12 +51,20 @@ standard part of the Python distribution.
#define NT /* NT is obsolete - please use MS_WIN32 instead */
#define MS_WIN32
#define MS_WINDOWS
#ifdef MS_COREDLL /* Python core is in a DLL */
#define main Py_Main
#ifndef USE_DL_EXPORT
#define USE_DL_IMPORT
#endif /* !USE_DL_EXPORT */
#endif /* MS_COREDLL */
#ifdef _M_IX86
#define COMPILER "[MSC 32 bit (Intel)]"
#else
#define COMPILER "[MSC (Unknown)]"
#endif
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win"
#define PYTHONPATH ".\\lib;.\\lib\\win"
typedef int pid_t;
#define WORD_BIT 32
#pragma warning(disable:4113)
......@@ -48,7 +74,6 @@ typedef int pid_t;
#define HAVE_STRFTIME
#define NT_THREADS
#define WITH_THREAD
#define _COMPLEX_DEFINED
#ifndef NETSCAPE_PI
#define USE_SOCKET
#endif
......@@ -58,7 +83,8 @@ typedef int pid_t;
#ifdef USE_DL_EXPORT
#define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
#endif
#endif /* MS_WIN32 */
#endif /* _MSC_VER && > 850 */
#if defined(_MSC_VER) && _MSC_VER <= 850
/* Start of defines for 16-bit Windows using VC++ 1.5 */
......@@ -67,11 +93,10 @@ typedef int pid_t;
#define MS_WIN16
#define MS_WINDOWS
#endif
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
#define IMPORT_8x3_NAMES
typedef int pid_t;
#define WORD_BIT 16
#define _COMPLEX_DEFINED
#pragma warning(disable:4113)
#define memcpy memmove /* memcpy dangerous pointer wrap in Win 3.1 */
#define hypot _hypot
......@@ -109,7 +134,7 @@ int sscanf(const char *, const char *, ...);
/* The Watcom compiler defines __WATCOMC__ */
#ifdef __WATCOMC__
#define COMPILER "[Watcom]"
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
#define IMPORT_8x3_NAMES
#include <ctype.h>
#include <direct.h>
......@@ -144,7 +169,7 @@ typedef int pid_t;
/* The Borland compiler defines __BORLANDC__ */
#ifdef __BORLANDC__
#define COMPILER "[Borland]"
#define PYTHONPATH "c:\\python\\lib;c:\\python\\lib\\win;c:\\python\\lib\\dos_8x3"
#define PYTHONPATH ".;.\\lib;.\\lib\\win;.\\lib\\dos_8x3"
#define IMPORT_8x3_NAMES
#define HAVE_CLOCK
#define HAVE_STRFTIME
......@@ -153,6 +178,18 @@ typedef int pid_t;
#endif
#endif /* BORLANDC */
/* End of compilers - finish up */
#ifdef MS_WIN32
#define PLATFORM "win32"
#else
#ifdef MS_WIN16
#define PLATFORM "win16"
#else
#define PLATFORM "dos"
#endif /* !MS_WIN16 */
#endif /* !MS_WIN32 */
/* Fairly standard from here! */
/* Define if on AIX 3.
......@@ -257,7 +294,7 @@ typedef int pid_t;
This requires the "dl" library by Jack Jansen,
ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
Don't bother on IRIX 5, it already has dynamic linking using SunOS
style shared libraries */
style shared libraries */
/* #undef WITH_SGI_DL */
/* Define if you want to emulate SGI (IRIX 4) dynamic linking.
......@@ -268,7 +305,7 @@ typedef int pid_t;
as well as the "GNU dld" library,
ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
Don't bother on SunOS 4 or 5, they already have dynamic linking using
shared libraries */
shared libraries */
/* #undef WITH_DL_DLD */
/* Define if you want to compile in rudimentary thread support */
......
#! /usr/local/bin/python
# This program reads all *.py and test/*.py in "libDir", and
# copies those files with illegal DOS names to libDir/dos_8x3.
# Names are illegal if they are longer than 8x3 chars or if they
# contain uppercase chars. It also tests for name collisions.
# You must first create the directory libDir/dos_8x3 yourself.
# You should remove all files in dos_8x3 if you run it again.
# CHANGE libDir TO THE CORRECT DIRECTORY. RM dos_8x3/* FIRST.
import sys, os, regex, string
libDir = "./Lib" # Location of Python Lib
def make8x3():
reg_uppercase = regex.compile("[A-Z]")
collisions = {} # See if all names are unique in first 8 chars.
destDir = os.path.join(libDir, "dos_8x3")
if not os.path.isdir(destDir):
print "Please create the directory", destDir, "first."
err()
while 1:
ans = raw_input("Ok to copy to " + destDir + " [yn]? ")
if not ans:
continue
elif ans[0] == "n":
err()
elif ans[0] == "y":
break
for dirname in libDir, os.path.join(libDir, "test"):
for filename in os.listdir(dirname):
if filename[-3:] == ".py":
name = filename[0:-3]
if len(name) > 8 or reg_uppercase.search(name) >= 0:
shortName = string.lower(name[0:8])
if collisions.has_key(shortName):
print "Name not unique in first 8 chars:", collisions[shortName], name
else:
collisions[shortName] = name
fin = open(os.path.join(dirname, filename), "r")
dest = os.path.join(destDir, shortName + ".py")
fout = open(dest, "w")
fout.write(fin.read())
fin.close()
fout.close()
os.chmod(dest, 0644)
elif filename == "." or filename == "..":
continue
elif filename[-4:] == ".pyc":
continue
elif filename == "Makefile":
continue
else:
parts = string.splitfields(filename, ".")
if len(parts) > 2 or \
len(parts[0]) > 8 or \
reg_uppercase.search(filename) >= 0 or \
(len(parts) > 1 and len(parts[1]) > 3):
print "Illegal DOS name", os.path.join(dirname, filename)
sys.exit(0)
def err():
print "No files copied."
sys.exit(1)
if __name__ == "__main__":
make8x3()
NAME
EXETYPE WINDOWS
CODE PRELOAD MOVABLE DISCARDABLE
DATA PRELOAD MOVABLE
HEAPSIZE 4096
NAME
EXETYPE WINDOWS
CODE PRELOAD MOVABLE DISCARDABLE
DATA PRELOAD MOVABLE
HEAPSIZE 4096
......@@ -121,6 +121,8 @@ EXPORTS
PyImport_GetModuleDict
PyImport_AddModule
PyImport_ImportModule
PyImport_ImportFrozenModule
PyImport_FrozenModules
PyImport_ReloadModule
PyImport_Cleanup
PyInt_FromLong
......
project : n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe n:\python\python-1&
.4b0b\pc\wat_dos\pyth_dos.exe .SYMBOLIC
!include n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.mk1
!include n:\python\python-1.4b0b\pc\wat_dos\pyth_dos.mk1
project : n:\python\python-1.4b2\pc\wat_os2\pyth_os2.exe n:\python\python-1.&
4b2\pc\wat_dos\pyth_dos.exe .SYMBOLIC
!include n:\python\python-1.4b2\pc\wat_os2\pyth_os2.mk1
!include n:\python\python-1.4b2\pc\wat_dos\pyth_dos.mk1
40
projectIdent
0
VpeMain
1
WRect
0
0
9920
8704
2
MProject
3
MCommand
0
4
MCommand
0
2
5
WFileName
20
wat_os2\pyth_os2.tgt
6
WFileName
20
wat_dos\pyth_dos.tgt
7
WVList
2
8
VComponent
9
WRect
832
256
5632
4096
1
0
10
WFileName
20
wat_os2\pyth_os2.tgt
0
0
11
VComponent
12
WRect
0
0
5632
4147
0
0
13
WFileName
20
wat_dos\pyth_dos.tgt
0
0
11
40
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
0
0
10
WFileName
20
wat_os2\pyth_os2.tgt
12
74
11
VComponent
12
WRect
128
85
5632
4113
0
0
13
WFileName
20
wat_dos\pyth_dos.tgt
9
9
11
NAME makesrc
FIL makesrc.obj
NAME makesrc
FIL makesrc.obj
!define BLANK ""
n:\python\python-1.4b0b\pc\utils\makesrc.obj : n:\python\python-1.4b0b\pc\ut&
ils\makesrc.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\utils
*wcc386 makesrc.c -i=C:\WATCOM\h;C:\WATCOM\h\nt -w4 -e25 -ei -zp4 -zq -otex&
an -d1 -5r -bt=nt -mf
n:\python\python-1.4b0b\pc\utils\makesrc.exe : n:\python\python-1.4b0b\pc\ut&
ils\makesrc.obj .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\utils
@%write makesrc.lk1 NAME makesrc
@%append makesrc.lk1 FIL makesrc.obj
@%append makesrc.lk1
!ifneq BLANK ""
*wlib -q -n -b makesrc.imp
@%append makesrc.lk1 LIBR makesrc.imp
!endif
*wlink SYS nt op m op st=20k op maxe=25 op q op symf @makesrc.lk1
!ifneq BLANK ""
wrc -q -ad makesrc.exe
!endif
!define BLANK ""
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
40
targetIdent
0
MProject
1
MComponent
0
2
WString
4
NEXE
3
WString
5
nc2en
1
0
0
4
MCommand
0
5
MCommand
0
6
MItem
11
makesrc.exe
7
WString
4
NEXE
8
WVList
2
9
MVState
10
WString
7
WINLINK
11
WString
11
?????Stack:
1
12
WString
3
20k
0
13
MVState
14
WString
7
WINLINK
15
WString
11
?????Stack:
0
16
WString
3
20k
0
17
WVList
0
-1
1
1
0
18
WPickList
2
19
MItem
3
*.c
20
WString
4
COBJ
21
WVList
6
22
MCState
23
WString
3
WCC
24
WString
31
?????Force enums to be type int
1
1
25
MRState
26
WString
3
WCC
27
WString
20
?????Pack structures
1
0
28
MRState
29
WString
3
WCC
30
WString
21
?????4 byte alignment
1
1
31
MCState
32
WString
3
WCC
33
WString
31
?????Force enums to be type int
0
1
34
MRState
35
WString
3
WCC
36
WString
20
?????Pack structures
0
0
37
MRState
38
WString
3
WCC
39
WString
21
?????4 byte alignment
0
1
40
WVList
0
-1
1
1
0
41
MItem
9
makesrc.c
42
WString
4
COBJ
43
WVList
0
44
WVList
0
19
1
1
0
40
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
project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC
!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1
project : n:\python\python-1.4b0b\pc\utils\makesrc.exe .SYMBOLIC
!include n:\python\python-1.4b0b\pc\utils\makesrc.mk1
40
projectIdent
0
VpeMain
1
WRect
0
0
9920
8704
2
MProject
3
MCommand
0
4
MCommand
0
1
5
WFileName
11
makesrc.tgt
6
WVList
1
7
VComponent
8
WRect
332
324
5670
4215
0
0
9
WFileName
11
makesrc.tgt
0
1
7
40
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
This source diff could not be displayed because it is too large. You can view the blob instead.
[MSVC Status File]
Version=1.00
ProjectType=10
External=0
BrkptCount=0
WatchCount=0
[MSVC Status File]
Version=1.00
ProjectType=10
External=0
BrkptCount=0
WatchCount=0
# Microsoft Visual C++ generated build script - Do not modify
PROJ = PYTH_W31
DEBUG = 0
PROGTYPE = 3
CALLER =
ARGS =
DLLS =
D_RCDEFINES = -d_DEBUG
R_RCDEFINES = -dNDEBUG
ORIGIN = MSVC
ORIGIN_VER = 1.00
PROJPATH = N:\PYTHON\PYTHO~HA.4B0\PC\VC15_W31\
USEMFC = 0
CC = cl
CPP = cl
CXX = cl
CCREATEPCHFLAG =
CPPCREATEPCHFLAG =
CUSEPCHFLAG =
CPPUSEPCHFLAG =
FIRSTC = MAIN.C
FIRSTCPP =
RC = rc
CFLAGS_D_WTTY = /nologo /G3 /Mq /W3 /Zi /AL /Gt9 /Od /D "_DEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR /Fd"PYTH_W31.PDB"
CFLAGS_R_WTTY = /nologo /Gs /G3 /Mq /W3 /AL /Gt9 /O2 /D "NDEBUG" /D "HAVE_CONFIG_H" /I "..\src" /FR
LFLAGS_D_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /CO /MAP
LFLAGS_R_WTTY = /NOLOGO /NOD /PACKC:57344 /STACK:20000 /SEG:1024 /ALIGN:16 /ONERROR:NOEXE /MAP
LIBS_D_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
LIBS_R_WTTY = ..\vc15_lib\python.lib oldnames libw llibcewq winsock
RCFLAGS = /nologo
RESFLAGS = /nologo
RUNFLAGS =
DEFFILE = ..\PYTH_W31.DEF
OBJS_EXT =
LIBS_EXT =
!if "$(DEBUG)" == "1"
CFLAGS = $(CFLAGS_D_WTTY)
LFLAGS = $(LFLAGS_D_WTTY)
LIBS = $(LIBS_D_WTTY)
MAPFILE = nul
RCDEFINES = $(D_RCDEFINES)
DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
!else
CFLAGS = $(CFLAGS_R_WTTY)
LFLAGS = $(LFLAGS_R_WTTY)
LIBS = $(LIBS_R_WTTY)
MAPFILE = nul
RCDEFINES = $(R_RCDEFINES)
DEFFILE=N:\PYTHON\PYTHO~HA.4B0\PC\PYTH_W31.DEF
!endif
!if [if exist MSVC.BND del MSVC.BND]
!endif
SBRS = MAIN.SBR \
GETOPT.SBR \
SELECTMO.SBR \
SOCKETMO.SBR
MAIN_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
n:\python\pytho~ha.4b0\pc\src\allobjec.h \
n:\python\pytho~ha.4b0\pc\src\config.h \
n:\python\pytho~ha.4b0\pc\src\myproto.h \
n:\python\pytho~ha.4b0\pc\src\rename2.h \
n:\python\pytho~ha.4b0\pc\src\object.h \
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
n:\python\pytho~ha.4b0\pc\src\accessob.h \
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
n:\python\pytho~ha.4b0\pc\src\longobje.h \
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
n:\python\pytho~ha.4b0\pc\src\complexo.h \
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
n:\python\pytho~ha.4b0\pc\src\stringob.h \
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
n:\python\pytho~ha.4b0\pc\src\listobje.h \
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
n:\python\pytho~ha.4b0\pc\src\methodob.h \
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
n:\python\pytho~ha.4b0\pc\src\classobj.h \
n:\python\pytho~ha.4b0\pc\src\thread.h \
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
n:\python\pytho~ha.4b0\pc\src\cobject.h \
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
n:\python\pytho~ha.4b0\pc\src\errors.h \
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
n:\python\pytho~ha.4b0\pc\src\ceval.h \
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
n:\python\pytho~ha.4b0\pc\src\import.h \
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
n:\python\pytho~ha.4b0\pc\src\abstract.h
GETOPT_DEP =
SELECTMO_DEP = n:\python\pytho~ha.4b0\pc\src\allobjec.h \
n:\python\pytho~ha.4b0\pc\src\config.h \
n:\python\pytho~ha.4b0\pc\src\myproto.h \
n:\python\pytho~ha.4b0\pc\src\rename2.h \
n:\python\pytho~ha.4b0\pc\src\object.h \
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
n:\python\pytho~ha.4b0\pc\src\accessob.h \
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
n:\python\pytho~ha.4b0\pc\src\longobje.h \
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
n:\python\pytho~ha.4b0\pc\src\complexo.h \
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
n:\python\pytho~ha.4b0\pc\src\stringob.h \
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
n:\python\pytho~ha.4b0\pc\src\listobje.h \
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
n:\python\pytho~ha.4b0\pc\src\methodob.h \
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
n:\python\pytho~ha.4b0\pc\src\classobj.h \
n:\python\pytho~ha.4b0\pc\src\thread.h \
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
n:\python\pytho~ha.4b0\pc\src\cobject.h \
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
n:\python\pytho~ha.4b0\pc\src\errors.h \
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
n:\python\pytho~ha.4b0\pc\src\ceval.h \
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
n:\python\pytho~ha.4b0\pc\src\import.h \
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
n:\python\pytho~ha.4b0\pc\src\abstract.h \
c:\msvc\include\winsock.h \
n:\python\pytho~ha.4b0\pc\src\myselect.h \
n:\python\pytho~ha.4b0\pc\src\mytime.h
SOCKETMO_DEP = n:\python\pytho~ha.4b0\pc\src\python.h \
n:\python\pytho~ha.4b0\pc\src\allobjec.h \
n:\python\pytho~ha.4b0\pc\src\config.h \
n:\python\pytho~ha.4b0\pc\src\myproto.h \
n:\python\pytho~ha.4b0\pc\src\rename2.h \
n:\python\pytho~ha.4b0\pc\src\object.h \
n:\python\pytho~ha.4b0\pc\src\objimpl.h \
n:\python\pytho~ha.4b0\pc\src\pydebug.h \
n:\python\pytho~ha.4b0\pc\src\accessob.h \
n:\python\pytho~ha.4b0\pc\src\intobjec.h \
n:\python\pytho~ha.4b0\pc\src\longobje.h \
n:\python\pytho~ha.4b0\pc\src\floatobj.h \
n:\python\pytho~ha.4b0\pc\src\complexo.h \
n:\python\pytho~ha.4b0\pc\src\rangeobj.h \
n:\python\pytho~ha.4b0\pc\src\stringob.h \
n:\python\pytho~ha.4b0\pc\src\tupleobj.h \
n:\python\pytho~ha.4b0\pc\src\listobje.h \
n:\python\pytho~ha.4b0\pc\src\mappingo.h \
n:\python\pytho~ha.4b0\pc\src\methodob.h \
n:\python\pytho~ha.4b0\pc\src\moduleob.h \
n:\python\pytho~ha.4b0\pc\src\funcobje.h \
n:\python\pytho~ha.4b0\pc\src\classobj.h \
n:\python\pytho~ha.4b0\pc\src\thread.h \
n:\python\pytho~ha.4b0\pc\src\fileobje.h \
n:\python\pytho~ha.4b0\pc\src\cobject.h \
n:\python\pytho~ha.4b0\pc\src\tracebac.h \
n:\python\pytho~ha.4b0\pc\src\errors.h \
n:\python\pytho~ha.4b0\pc\src\mymalloc.h \
n:\python\pytho~ha.4b0\pc\src\modsuppo.h \
n:\python\pytho~ha.4b0\pc\src\ceval.h \
n:\python\pytho~ha.4b0\pc\src\pythonru.h \
n:\python\pytho~ha.4b0\pc\src\sysmodul.h \
n:\python\pytho~ha.4b0\pc\src\intrchec.h \
n:\python\pytho~ha.4b0\pc\src\import.h \
n:\python\pytho~ha.4b0\pc\src\bltinmod.h \
n:\python\pytho~ha.4b0\pc\src\abstract.h \
n:\python\pytho~ha.4b0\pc\src\mytime.h \
c:\msvc\include\winsock.h
all: $(PROJ).EXE $(PROJ).BSC
MAIN.OBJ: ..\SRC\MAIN.C $(MAIN_DEP)
$(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ..\SRC\MAIN.C
GETOPT.OBJ: ..\SRC\GETOPT.C $(GETOPT_DEP)
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\GETOPT.C
SELECTMO.OBJ: ..\SRC\SELECTMO.C $(SELECTMO_DEP)
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SELECTMO.C
SOCKETMO.OBJ: ..\SRC\SOCKETMO.C $(SOCKETMO_DEP)
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\SOCKETMO.C
$(PROJ).EXE:: MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ $(OBJS_EXT) $(DEFFILE)
echo >NUL @<<$(PROJ).CRF
MAIN.OBJ +
GETOPT.OBJ +
SELECTMO.OBJ +
SOCKETMO.OBJ +
$(OBJS_EXT)
$(PROJ).EXE
$(MAPFILE)
c:\msvc\lib\+
c:\msvc\mfc\lib\+
$(LIBS)
$(DEFFILE);
<<
link $(LFLAGS) @$(PROJ).CRF
$(RC) $(RESFLAGS) $@
run: $(PROJ).EXE
$(PROJ) $(RUNFLAGS)
$(PROJ).BSC: $(SBRS)
bscmake @<<
/o$@ $(SBRS)
<<
# Microsoft Visual C++ generated build script - Do not modify
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\PYTHON-1.4B2\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\PYTHON-1.4B2\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\PYTHON-1.4B2\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\python-1.4b2\pc\src\python.h \
n:\python\python-1.4b2\pc\src\allobjec.h \
n:\python\python-1.4b2\pc\src\config.h \
n:\python\python-1.4b2\pc\src\myproto.h \
n:\python\python-1.4b2\pc\src\rename2.h \
n:\python\python-1.4b2\pc\src\object.h \
n:\python\python-1.4b2\pc\src\objimpl.h \
n:\python\python-1.4b2\pc\src\pydebug.h \
n:\python\python-1.4b2\pc\src\accessob.h \
n:\python\python-1.4b2\pc\src\intobjec.h \
n:\python\python-1.4b2\pc\src\longobje.h \
n:\python\python-1.4b2\pc\src\floatobj.h \
n:\python\python-1.4b2\pc\src\complexo.h \
n:\python\python-1.4b2\pc\src\rangeobj.h \
n:\python\python-1.4b2\pc\src\stringob.h \
n:\python\python-1.4b2\pc\src\tupleobj.h \
n:\python\python-1.4b2\pc\src\listobje.h \
n:\python\python-1.4b2\pc\src\mappingo.h \
n:\python\python-1.4b2\pc\src\methodob.h \
n:\python\python-1.4b2\pc\src\moduleob.h \
n:\python\python-1.4b2\pc\src\funcobje.h \
n:\python\python-1.4b2\pc\src\classobj.h \
n:\python\python-1.4b2\pc\src\thread.h \
n:\python\python-1.4b2\pc\src\fileobje.h \
n:\python\python-1.4b2\pc\src\cobject.h \
n:\python\python-1.4b2\pc\src\tracebac.h \
n:\python\python-1.4b2\pc\src\errors.h \
n:\python\python-1.4b2\pc\src\mymalloc.h \
n:\python\python-1.4b2\pc\src\modsuppo.h \
n:\python\python-1.4b2\pc\src\ceval.h \
n:\python\python-1.4b2\pc\src\pythonru.h \
n:\python\python-1.4b2\pc\src\sysmodul.h \
n:\python\python-1.4b2\pc\src\intrchec.h \
n:\python\python-1.4b2\pc\src\import.h \
n:\python\python-1.4b2\pc\src\bltinmod.h \
n:\python\python-1.4b2\pc\src\abstract.h
GETOPT_DEP =
SELECTMO_DEP = n:\python\python-1.4b2\pc\src\allobjec.h \
n:\python\python-1.4b2\pc\src\config.h \
n:\python\python-1.4b2\pc\src\myproto.h \
n:\python\python-1.4b2\pc\src\rename2.h \
n:\python\python-1.4b2\pc\src\object.h \
n:\python\python-1.4b2\pc\src\objimpl.h \
n:\python\python-1.4b2\pc\src\pydebug.h \
n:\python\python-1.4b2\pc\src\accessob.h \
n:\python\python-1.4b2\pc\src\intobjec.h \
n:\python\python-1.4b2\pc\src\longobje.h \
n:\python\python-1.4b2\pc\src\floatobj.h \
n:\python\python-1.4b2\pc\src\complexo.h \
n:\python\python-1.4b2\pc\src\rangeobj.h \
n:\python\python-1.4b2\pc\src\stringob.h \
n:\python\python-1.4b2\pc\src\tupleobj.h \
n:\python\python-1.4b2\pc\src\listobje.h \
n:\python\python-1.4b2\pc\src\mappingo.h \
n:\python\python-1.4b2\pc\src\methodob.h \
n:\python\python-1.4b2\pc\src\moduleob.h \
n:\python\python-1.4b2\pc\src\funcobje.h \
n:\python\python-1.4b2\pc\src\classobj.h \
n:\python\python-1.4b2\pc\src\thread.h \
n:\python\python-1.4b2\pc\src\fileobje.h \
n:\python\python-1.4b2\pc\src\cobject.h \
n:\python\python-1.4b2\pc\src\tracebac.h \
n:\python\python-1.4b2\pc\src\errors.h \
n:\python\python-1.4b2\pc\src\mymalloc.h \
n:\python\python-1.4b2\pc\src\modsuppo.h \
n:\python\python-1.4b2\pc\src\ceval.h \
n:\python\python-1.4b2\pc\src\pythonru.h \
n:\python\python-1.4b2\pc\src\sysmodul.h \
n:\python\python-1.4b2\pc\src\intrchec.h \
n:\python\python-1.4b2\pc\src\import.h \
n:\python\python-1.4b2\pc\src\bltinmod.h \
n:\python\python-1.4b2\pc\src\abstract.h \
c:\msvc\include\winsock.h \
n:\python\python-1.4b2\pc\src\myselect.h \
n:\python\python-1.4b2\pc\src\mytime.h
SOCKETMO_DEP = n:\python\python-1.4b2\pc\src\python.h \
n:\python\python-1.4b2\pc\src\allobjec.h \
n:\python\python-1.4b2\pc\src\config.h \
n:\python\python-1.4b2\pc\src\myproto.h \
n:\python\python-1.4b2\pc\src\rename2.h \
n:\python\python-1.4b2\pc\src\object.h \
n:\python\python-1.4b2\pc\src\objimpl.h \
n:\python\python-1.4b2\pc\src\pydebug.h \
n:\python\python-1.4b2\pc\src\accessob.h \
n:\python\python-1.4b2\pc\src\intobjec.h \
n:\python\python-1.4b2\pc\src\longobje.h \
n:\python\python-1.4b2\pc\src\floatobj.h \
n:\python\python-1.4b2\pc\src\complexo.h \
n:\python\python-1.4b2\pc\src\rangeobj.h \
n:\python\python-1.4b2\pc\src\stringob.h \
n:\python\python-1.4b2\pc\src\tupleobj.h \
n:\python\python-1.4b2\pc\src\listobje.h \
n:\python\python-1.4b2\pc\src\mappingo.h \
n:\python\python-1.4b2\pc\src\methodob.h \
n:\python\python-1.4b2\pc\src\moduleob.h \
n:\python\python-1.4b2\pc\src\funcobje.h \
n:\python\python-1.4b2\pc\src\classobj.h \
n:\python\python-1.4b2\pc\src\thread.h \
n:\python\python-1.4b2\pc\src\fileobje.h \
n:\python\python-1.4b2\pc\src\cobject.h \
n:\python\python-1.4b2\pc\src\tracebac.h \
n:\python\python-1.4b2\pc\src\errors.h \
n:\python\python-1.4b2\pc\src\mymalloc.h \
n:\python\python-1.4b2\pc\src\modsuppo.h \
n:\python\python-1.4b2\pc\src\ceval.h \
n:\python\python-1.4b2\pc\src\pythonru.h \
n:\python\python-1.4b2\pc\src\sysmodul.h \
n:\python\python-1.4b2\pc\src\intrchec.h \
n:\python\python-1.4b2\pc\src\import.h \
n:\python\python-1.4b2\pc\src\bltinmod.h \
n:\python\python-1.4b2\pc\src\abstract.h \
n:\python\python-1.4b2\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)
<<
[MSVC Status File]
Version=1.00
ProjectType=10
External=0
BrkptCount=0
WatchCount=0
[MSVC Status File]
Version=1.00
ProjectType=10
External=0
BrkptCount=0
WatchCount=0
This source diff could not be displayed because it is too large. You can view the blob instead.
NAME pyth_dos
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,import.obj,posixmodule.obj
NAME pyth_dos
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,errnomodule.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj
!define BLANK ""
n:\python\python-1.4b0b\pc\wat_dos\arraymodule.obj : n:\python\python-1.4b0b&
\modules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\audioop.obj : n:\python\python-1.4b0b\mod&
ules\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\binascii.obj : n:\python\python-1.4b0b\mo&
dules\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\cmathmodule.obj : n:\python\python-1.4b0b&
\modules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\environment.obj : n:\python\python-1.4b0b&
\modules\environment.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getpath.obj : n:\python\python-1.4b0b\mod&
ules\getpath.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\imageop.obj : n:\python\python-1.4b0b\mod&
ules\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\main.obj : n:\python\python-1.4b0b\module&
s\main.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\mathmodule.obj : n:\python\python-1.4b0b\&
modules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\md5c.obj : n:\python\python-1.4b0b\module&
s\md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\md5module.obj : n:\python\python-1.4b0b\m&
odules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\newmodule.obj : n:\python\python-1.4b0b\m&
odules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\regexmodule.obj : n:\python\python-1.4b0b&
\modules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\regexpr.obj : n:\python\python-1.4b0b\mod&
ules\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\rgbimgmodule.obj : n:\python\python-1.4b0&
b\modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\rotormodule.obj : n:\python\python-1.4b0b&
\modules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\signalmodule.obj : n:\python\python-1.4b0&
b\modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\soundex.obj : n:\python\python-1.4b0b\mod&
ules\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\stropmodule.obj : n:\python\python-1.4b0b&
\modules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\structmodule.obj : n:\python\python-1.4b0&
b\modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\timemodule.obj : n:\python\python-1.4b0b\&
modules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\yuvconvert.obj : n:\python\python-1.4b0b\&
modules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\abstract.obj : n:\python\python-1.4b0b\ob&
jects\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\accessobject.obj : n:\python\python-1.4b0&
b\objects\accessobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\classobject.obj : n:\python\python-1.4b0b&
\objects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\cobject.obj : n:\python\python-1.4b0b\obj&
ects\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\complexobject.obj : n:\python\python-1.4b&
0b\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\fileobject.obj : n:\python\python-1.4b0b\&
objects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\floatobject.obj : n:\python\python-1.4b0b&
\objects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\frameobject.obj : n:\python\python-1.4b0b&
\objects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\funcobject.obj : n:\python\python-1.4b0b\&
objects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\intobject.obj : n:\python\python-1.4b0b\o&
bjects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\listobject.obj : n:\python\python-1.4b0b\&
objects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\longobject.obj : n:\python\python-1.4b0b\&
objects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\mappingobject.obj : n:\python\python-1.4b&
0b\objects\mappingobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\methodobject.obj : n:\python\python-1.4b0&
b\objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\moduleobject.obj : n:\python\python-1.4b0&
b\objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\object.obj : n:\python\python-1.4b0b\obje&
cts\object.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\rangeobject.obj : n:\python\python-1.4b0b&
\objects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\stringobject.obj : n:\python\python-1.4b0&
b\objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\tupleobject.obj : n:\python\python-1.4b0b&
\objects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\typeobject.obj : n:\python\python-1.4b0b\&
objects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\acceler.obj : n:\python\python-1.4b0b\par&
ser\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\grammar1.obj : n:\python\python-1.4b0b\pa&
rser\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\myreadline.obj : n:\python\python-1.4b0b\&
parser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\node.obj : n:\python\python-1.4b0b\parser&
\node.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE&
_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\parser.obj : n:\python\python-1.4b0b\pars&
er\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\parsetok.obj : n:\python\python-1.4b0b\pa&
rser\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\tokenizer.obj : n:\python\python-1.4b0b\p&
arser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\bltinmodule.obj : n:\python\python-1.4b0b&
\python\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\ceval.obj : n:\python\python-1.4b0b\pytho&
n\ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAV&
E_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\cgensupport.obj : n:\python\python-1.4b0b&
\python\cgensupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\compile.obj : n:\python\python-1.4b0b\pyt&
hon\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\errors.obj : n:\python\python-1.4b0b\pyth&
on\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\frozen.obj : n:\python\python-1.4b0b\pyth&
on\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getargs.obj : n:\python\python-1.4b0b\pyt&
hon\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getcompiler.obj : n:\python\python-1.4b0b&
\python\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getcopyright.obj : n:\python\python-1.4b0&
b\python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getmtime.obj : n:\python\python-1.4b0b\py&
thon\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getopt.obj : n:\python\python-1.4b0b\pyth&
on\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHA&
VE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getplatform.obj : n:\python\python-1.4b0b&
\python\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\getversion.obj : n:\python\python-1.4b0b\&
python\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\graminit.obj : n:\python\python-1.4b0b\py&
thon\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\importdl.obj : n:\python\python-1.4b0b\py&
thon\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\marshal.obj : n:\python\python-1.4b0b\pyt&
hon\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dH&
AVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\modsupport.obj : n:\python\python-1.4b0b\&
python\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\mystrtoul.obj : n:\python\python-1.4b0b\p&
ython\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\pythonrun.obj : n:\python\python-1.4b0b\p&
ython\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\structmember.obj : n:\python\python-1.4b0&
b\python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\sysmodule.obj : n:\python\python-1.4b0b\p&
ython\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\traceback.obj : n:\python\python-1.4b0b\p&
ython\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\config.obj : n:\python\python-1.4b0b\pc\c&
onfig.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CONFIG_&
H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\import.obj : n:\python\python-1.4b0b\pc\i&
mport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\import.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CONFIG_&
H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\posixmodule.obj : n:\python\python-1.4b0b&
\pc\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
*wcc386 ..\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CO&
NFIG_H -ei -zp4 -zq -otexan -d2 -5r -bt=dos -mf
n:\python\python-1.4b0b\pc\wat_dos\pyth_dos.exe : n:\python\python-1.4b0b\pc&
\wat_dos\arraymodule.obj n:\python\python-1.4b0b\pc\wat_dos\audioop.obj n:\p&
ython\python-1.4b0b\pc\wat_dos\binascii.obj n:\python\python-1.4b0b\pc\wat_d&
os\cmathmodule.obj n:\python\python-1.4b0b\pc\wat_dos\environment.obj n:\pyt&
hon\python-1.4b0b\pc\wat_dos\getpath.obj n:\python\python-1.4b0b\pc\wat_dos\&
imageop.obj n:\python\python-1.4b0b\pc\wat_dos\main.obj n:\python\python-1.4&
b0b\pc\wat_dos\mathmodule.obj n:\python\python-1.4b0b\pc\wat_dos\md5c.obj n:&
\python\python-1.4b0b\pc\wat_dos\md5module.obj n:\python\python-1.4b0b\pc\wa&
t_dos\newmodule.obj n:\python\python-1.4b0b\pc\wat_dos\regexmodule.obj n:\py&
thon\python-1.4b0b\pc\wat_dos\regexpr.obj n:\python\python-1.4b0b\pc\wat_dos&
\rgbimgmodule.obj n:\python\python-1.4b0b\pc\wat_dos\rotormodule.obj n:\pyth&
on\python-1.4b0b\pc\wat_dos\signalmodule.obj n:\python\python-1.4b0b\pc\wat_&
dos\soundex.obj n:\python\python-1.4b0b\pc\wat_dos\stropmodule.obj n:\python&
\python-1.4b0b\pc\wat_dos\structmodule.obj n:\python\python-1.4b0b\pc\wat_do&
s\timemodule.obj n:\python\python-1.4b0b\pc\wat_dos\yuvconvert.obj n:\python&
\python-1.4b0b\pc\wat_dos\abstract.obj n:\python\python-1.4b0b\pc\wat_dos\ac&
cessobject.obj n:\python\python-1.4b0b\pc\wat_dos\classobject.obj n:\python\&
python-1.4b0b\pc\wat_dos\cobject.obj n:\python\python-1.4b0b\pc\wat_dos\comp&
lexobject.obj n:\python\python-1.4b0b\pc\wat_dos\fileobject.obj n:\python\py&
thon-1.4b0b\pc\wat_dos\floatobject.obj n:\python\python-1.4b0b\pc\wat_dos\fr&
ameobject.obj n:\python\python-1.4b0b\pc\wat_dos\funcobject.obj n:\python\py&
thon-1.4b0b\pc\wat_dos\intobject.obj n:\python\python-1.4b0b\pc\wat_dos\list&
object.obj n:\python\python-1.4b0b\pc\wat_dos\longobject.obj n:\python\pytho&
n-1.4b0b\pc\wat_dos\mappingobject.obj n:\python\python-1.4b0b\pc\wat_dos\met&
hodobject.obj n:\python\python-1.4b0b\pc\wat_dos\moduleobject.obj n:\python\&
python-1.4b0b\pc\wat_dos\object.obj n:\python\python-1.4b0b\pc\wat_dos\range&
object.obj n:\python\python-1.4b0b\pc\wat_dos\stringobject.obj n:\python\pyt&
hon-1.4b0b\pc\wat_dos\tupleobject.obj n:\python\python-1.4b0b\pc\wat_dos\typ&
eobject.obj n:\python\python-1.4b0b\pc\wat_dos\acceler.obj n:\python\python-&
1.4b0b\pc\wat_dos\grammar1.obj n:\python\python-1.4b0b\pc\wat_dos\myreadline&
.obj n:\python\python-1.4b0b\pc\wat_dos\node.obj n:\python\python-1.4b0b\pc\&
wat_dos\parser.obj n:\python\python-1.4b0b\pc\wat_dos\parsetok.obj n:\python&
\python-1.4b0b\pc\wat_dos\tokenizer.obj n:\python\python-1.4b0b\pc\wat_dos\b&
ltinmodule.obj n:\python\python-1.4b0b\pc\wat_dos\ceval.obj n:\python\python&
-1.4b0b\pc\wat_dos\cgensupport.obj n:\python\python-1.4b0b\pc\wat_dos\compil&
e.obj n:\python\python-1.4b0b\pc\wat_dos\errors.obj n:\python\python-1.4b0b\&
pc\wat_dos\frozen.obj n:\python\python-1.4b0b\pc\wat_dos\getargs.obj n:\pyth&
on\python-1.4b0b\pc\wat_dos\getcompiler.obj n:\python\python-1.4b0b\pc\wat_d&
os\getcopyright.obj n:\python\python-1.4b0b\pc\wat_dos\getmtime.obj n:\pytho&
n\python-1.4b0b\pc\wat_dos\getopt.obj n:\python\python-1.4b0b\pc\wat_dos\get&
platform.obj n:\python\python-1.4b0b\pc\wat_dos\getversion.obj n:\python\pyt&
hon-1.4b0b\pc\wat_dos\graminit.obj n:\python\python-1.4b0b\pc\wat_dos\import&
dl.obj n:\python\python-1.4b0b\pc\wat_dos\marshal.obj n:\python\python-1.4b0&
b\pc\wat_dos\modsupport.obj n:\python\python-1.4b0b\pc\wat_dos\mystrtoul.obj&
n:\python\python-1.4b0b\pc\wat_dos\pythonrun.obj n:\python\python-1.4b0b\pc&
\wat_dos\structmember.obj n:\python\python-1.4b0b\pc\wat_dos\sysmodule.obj n&
:\python\python-1.4b0b\pc\wat_dos\traceback.obj n:\python\python-1.4b0b\pc\w&
at_dos\config.obj n:\python\python-1.4b0b\pc\wat_dos\import.obj n:\python\py&
thon-1.4b0b\pc\wat_dos\posixmodule.obj .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_dos
@%write pyth_dos.lk1 NAME pyth_dos
@%append pyth_dos.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.ob&
j,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.&
obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.&
obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject&
.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobjec&
t.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobj&
ect.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.o&
bj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,&
cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.ob&
j,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,gr&
aminit.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.o&
bj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,import.obj,posixm&
odule.obj
@%append pyth_dos.lk1
*wlink d all SYS dos4g op m op st=128k op maxe=25 op q op symf @pyth_dos.lk&
1
!define BLANK ""
n:\python\python-1.4b2\pc\wat_dos\arraymodule.obj : n:\python\python-1.4b2\m&
odules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\arraymodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\audioop.obj : n:\python\python-1.4b2\modul&
es\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\audioop.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\binascii.obj : n:\python\python-1.4b2\modu&
les\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\binascii.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\cmathmodule.obj : n:\python\python-1.4b2\m&
odules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\cmathmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\environment.obj : n:\python\python-1.4b2\m&
odules\environment.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\environment.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\errnomodule.obj : n:\python\python-1.4b2\m&
odules\errnomodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\errnomodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getpath.obj : n:\python\python-1.4b2\modul&
es\getpath.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\getpath.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\imageop.obj : n:\python\python-1.4b2\modul&
es\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\imageop.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\main.obj : n:\python\python-1.4b2\modules\&
main.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\main.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\mathmodule.obj : n:\python\python-1.4b2\mo&
dules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\mathmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\md5c.obj : n:\python\python-1.4b2\modules\&
md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\md5c.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\md5module.obj : n:\python\python-1.4b2\mod&
ules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\md5module.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\newmodule.obj : n:\python\python-1.4b2\mod&
ules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\newmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\operator.obj : n:\python\python-1.4b2\modu&
les\operator.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\operator.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\posixmodule.obj : n:\python\python-1.4b2\m&
odules\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\posixmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\regexmodule.obj : n:\python\python-1.4b2\m&
odules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\regexmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\regexpr.obj : n:\python\python-1.4b2\modul&
es\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\regexpr.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\rgbimgmodule.obj : n:\python\python-1.4b2\&
modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\rgbimgmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\rotormodule.obj : n:\python\python-1.4b2\m&
odules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\rotormodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\signalmodule.obj : n:\python\python-1.4b2\&
modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\signalmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\soundex.obj : n:\python\python-1.4b2\modul&
es\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\soundex.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\stropmodule.obj : n:\python\python-1.4b2\m&
odules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\stropmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\structmodule.obj : n:\python\python-1.4b2\&
modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\structmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\timemodule.obj : n:\python\python-1.4b2\mo&
dules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\timemodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\yuvconvert.obj : n:\python\python-1.4b2\mo&
dules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\modules\yuvconvert.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\abstract.obj : n:\python\python-1.4b2\obje&
cts\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\abstract.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\accessobject.obj : n:\python\python-1.4b2\&
objects\accessobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\accessobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\classobject.obj : n:\python\python-1.4b2\o&
bjects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\classobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\cobject.obj : n:\python\python-1.4b2\objec&
ts\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\cobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\complexobject.obj : n:\python\python-1.4b2&
\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\complexobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -&
w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\fileobject.obj : n:\python\python-1.4b2\ob&
jects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\fileobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\floatobject.obj : n:\python\python-1.4b2\o&
bjects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\floatobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\frameobject.obj : n:\python\python-1.4b2\o&
bjects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\frameobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\funcobject.obj : n:\python\python-1.4b2\ob&
jects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\funcobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\intobject.obj : n:\python\python-1.4b2\obj&
ects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\intobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\listobject.obj : n:\python\python-1.4b2\ob&
jects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\listobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\longobject.obj : n:\python\python-1.4b2\ob&
jects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\longobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\mappingobject.obj : n:\python\python-1.4b2&
\objects\mappingobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\mappingobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -&
w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\methodobject.obj : n:\python\python-1.4b2\&
objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\methodobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\moduleobject.obj : n:\python\python-1.4b2\&
objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\moduleobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\object.obj : n:\python\python-1.4b2\object&
s\object.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\object.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\rangeobject.obj : n:\python\python-1.4b2\o&
bjects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\rangeobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\stringobject.obj : n:\python\python-1.4b2\&
objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\stringobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\tupleobject.obj : n:\python\python-1.4b2\o&
bjects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\tupleobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\typeobject.obj : n:\python\python-1.4b2\ob&
jects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\objects\typeobject.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\acceler.obj : n:\python\python-1.4b2\parse&
r\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\acceler.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\grammar1.obj : n:\python\python-1.4b2\pars&
er\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\grammar1.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\myreadline.obj : n:\python\python-1.4b2\pa&
rser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\myreadline.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\node.obj : n:\python\python-1.4b2\parser\n&
ode.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\node.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -d&
HAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\parser.obj : n:\python\python-1.4b2\parser&
\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\parser.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\parsetok.obj : n:\python\python-1.4b2\pars&
er\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\parsetok.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\tokenizer.obj : n:\python\python-1.4b2\par&
ser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\parser\tokenizer.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\bltinmodule.obj : n:\python\python-1.4b2\p&
ython\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\bltinmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\ceval.obj : n:\python\python-1.4b2\python\&
ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\ceval.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -&
dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\cgensupport.obj : n:\python\python-1.4b2\p&
ython\cgensupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\cgensupport.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\compile.obj : n:\python\python-1.4b2\pytho&
n\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\compile.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\errors.obj : n:\python\python-1.4b2\python&
\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\errors.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\frozen.obj : n:\python\python-1.4b2\python&
\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\frozen.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getargs.obj : n:\python\python-1.4b2\pytho&
n\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getargs.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getcompiler.obj : n:\python\python-1.4b2\p&
ython\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getcompiler.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getcopyright.obj : n:\python\python-1.4b2\&
python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getcopyright.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getmtime.obj : n:\python\python-1.4b2\pyth&
on\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getmtime.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getopt.obj : n:\python\python-1.4b2\python&
\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getopt.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getplatform.obj : n:\python\python-1.4b2\p&
ython\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getplatform.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 &
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\getversion.obj : n:\python\python-1.4b2\py&
thon\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\getversion.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\graminit.obj : n:\python\python-1.4b2\pyth&
on\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\graminit.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\import.obj : n:\python\python-1.4b2\python&
\import.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\import.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 &
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\importdl.obj : n:\python\python-1.4b2\pyth&
on\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\importdl.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\marshal.obj : n:\python\python-1.4b2\pytho&
n\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\marshal.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25&
-dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\modsupport.obj : n:\python\python-1.4b2\py&
thon\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\modsupport.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -&
e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\mystrtoul.obj : n:\python\python-1.4b2\pyt&
hon\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\mystrtoul.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\pythonrun.obj : n:\python\python-1.4b2\pyt&
hon\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\pythonrun.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\structmember.obj : n:\python\python-1.4b2\&
python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\structmember.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4&
-e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\sysmodule.obj : n:\python\python-1.4b2\pyt&
hon\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\sysmodule.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\traceback.obj : n:\python\python-1.4b2\pyt&
hon\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\..\python\traceback.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e&
25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\config.obj : n:\python\python-1.4b2\pc\con&
fig.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_dos
*wcc386 ..\config.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_CON&
FIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.4b2\pc\wat_dos\pyth_dos.exe : n:\python\python-1.4b2\pc\w&
at_dos\arraymodule.obj n:\python\python-1.4b2\pc\wat_dos\audioop.obj n:\pyth&
on\python-1.4b2\pc\wat_dos\binascii.obj n:\python\python-1.4b2\pc\wat_dos\cm&
athmodule.obj n:\python\python-1.4b2\pc\wat_dos\environment.obj n:\python\py&
thon-1.4b2\pc\wat_dos\errnomodule.obj n:\python\python-1.4b2\pc\wat_dos\getp&
ath.obj n:\python\python-1.4b2\pc\wat_dos\imageop.obj n:\python\python-1.4b2&
\pc\wat_dos\main.obj n:\python\python-1.4b2\pc\wat_dos\mathmodule.obj n:\pyt&
hon\python-1.4b2\pc\wat_dos\md5c.obj n:\python\python-1.4b2\pc\wat_dos\md5mo&
dule.obj n:\python\python-1.4b2\pc\wat_dos\newmodule.obj n:\python\python-1.&
4b2\pc\wat_dos\operator.obj n:\python\python-1.4b2\pc\wat_dos\posixmodule.ob&
j n:\python\python-1.4b2\pc\wat_dos\regexmodule.obj n:\python\python-1.4b2\p&
c\wat_dos\regexpr.obj n:\python\python-1.4b2\pc\wat_dos\rgbimgmodule.obj n:\&
python\python-1.4b2\pc\wat_dos\rotormodule.obj n:\python\python-1.4b2\pc\wat&
_dos\signalmodule.obj n:\python\python-1.4b2\pc\wat_dos\soundex.obj n:\pytho&
n\python-1.4b2\pc\wat_dos\stropmodule.obj n:\python\python-1.4b2\pc\wat_dos\&
structmodule.obj n:\python\python-1.4b2\pc\wat_dos\timemodule.obj n:\python\&
python-1.4b2\pc\wat_dos\yuvconvert.obj n:\python\python-1.4b2\pc\wat_dos\abs&
tract.obj n:\python\python-1.4b2\pc\wat_dos\accessobject.obj n:\python\pytho&
n-1.4b2\pc\wat_dos\classobject.obj n:\python\python-1.4b2\pc\wat_dos\cobject&
.obj n:\python\python-1.4b2\pc\wat_dos\complexobject.obj n:\python\python-1.&
4b2\pc\wat_dos\fileobject.obj n:\python\python-1.4b2\pc\wat_dos\floatobject.&
obj n:\python\python-1.4b2\pc\wat_dos\frameobject.obj n:\python\python-1.4b2&
\pc\wat_dos\funcobject.obj n:\python\python-1.4b2\pc\wat_dos\intobject.obj n&
:\python\python-1.4b2\pc\wat_dos\listobject.obj n:\python\python-1.4b2\pc\wa&
t_dos\longobject.obj n:\python\python-1.4b2\pc\wat_dos\mappingobject.obj n:\&
python\python-1.4b2\pc\wat_dos\methodobject.obj n:\python\python-1.4b2\pc\wa&
t_dos\moduleobject.obj n:\python\python-1.4b2\pc\wat_dos\object.obj n:\pytho&
n\python-1.4b2\pc\wat_dos\rangeobject.obj n:\python\python-1.4b2\pc\wat_dos\&
stringobject.obj n:\python\python-1.4b2\pc\wat_dos\tupleobject.obj n:\python&
\python-1.4b2\pc\wat_dos\typeobject.obj n:\python\python-1.4b2\pc\wat_dos\ac&
celer.obj n:\python\python-1.4b2\pc\wat_dos\grammar1.obj n:\python\python-1.&
4b2\pc\wat_dos\myreadline.obj n:\python\python-1.4b2\pc\wat_dos\node.obj n:\&
python\python-1.4b2\pc\wat_dos\parser.obj n:\python\python-1.4b2\pc\wat_dos\&
parsetok.obj n:\python\python-1.4b2\pc\wat_dos\tokenizer.obj n:\python\pytho&
n-1.4b2\pc\wat_dos\bltinmodule.obj n:\python\python-1.4b2\pc\wat_dos\ceval.o&
bj n:\python\python-1.4b2\pc\wat_dos\cgensupport.obj n:\python\python-1.4b2\&
pc\wat_dos\compile.obj n:\python\python-1.4b2\pc\wat_dos\errors.obj n:\pytho&
n\python-1.4b2\pc\wat_dos\frozen.obj n:\python\python-1.4b2\pc\wat_dos\getar&
gs.obj n:\python\python-1.4b2\pc\wat_dos\getcompiler.obj n:\python\python-1.&
4b2\pc\wat_dos\getcopyright.obj n:\python\python-1.4b2\pc\wat_dos\getmtime.o&
bj n:\python\python-1.4b2\pc\wat_dos\getopt.obj n:\python\python-1.4b2\pc\wa&
t_dos\getplatform.obj n:\python\python-1.4b2\pc\wat_dos\getversion.obj n:\py&
thon\python-1.4b2\pc\wat_dos\graminit.obj n:\python\python-1.4b2\pc\wat_dos\&
import.obj n:\python\python-1.4b2\pc\wat_dos\importdl.obj n:\python\python-1&
.4b2\pc\wat_dos\marshal.obj n:\python\python-1.4b2\pc\wat_dos\modsupport.obj&
n:\python\python-1.4b2\pc\wat_dos\mystrtoul.obj n:\python\python-1.4b2\pc\w&
at_dos\pythonrun.obj n:\python\python-1.4b2\pc\wat_dos\structmember.obj n:\p&
ython\python-1.4b2\pc\wat_dos\sysmodule.obj n:\python\python-1.4b2\pc\wat_do&
s\traceback.obj n:\python\python-1.4b2\pc\wat_dos\config.obj .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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,errnomodule.obj,getpath.obj,imageop.obj,main.obj,mat&
hmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,posixmodule.ob&
j,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.&
obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.o&
bj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.o&
bj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.o&
bj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleob&
ject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobj&
ect.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok&
.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,err&
ors.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
@%append pyth_dos.lk1
*wlink SYS dos4g op m op st=128K op maxe=25 op q op symf @pyth_dos.lk1
40
targetIdent
0
MProject
1
MComponent
0
2
WString
3
EXE
3
WString
5
dr2en
1
0
1
4
MCommand
0
5
MCommand
0
6
MItem
12
pyth_dos.exe
7
WString
3
EXE
8
WVList
2
9
MVState
10
WString
5
WLINK
11
WString
11
?????Stack:
0
12
WString
4
128K
0
13
MVState
14
WString
5
WLINK
15
WString
11
?????Stack:
1
16
WString
4
128k
0
17
WVList
0
-1
1
1
0
18
WPickList
75
19
MItem
3
*.c
20
WString
4
COBJ
21
WVList
10
22
MVState
23
WString
3
WCC
24
WString
25
d????Include directories:
0
25
WString
30
..; ..\..\Include;$(%watcom)\h
0
26
MVState
27
WString
3
WCC
28
WString
23
?????Macro definitions:
0
29
WString
13
HAVE_CONFIG_H
0
30
MCState
31
WString
3
WCC
32
WString
31
?????Force enums to be type int
0
1
33
MRState
34
WString
3
WCC
35
WString
20
?????Pack structures
0
0
36
MRState
37
WString
3
WCC
38
WString
21
?????4 byte alignment
0
1
39
MVState
40
WString
3
WCC
41
WString
25
d????Include directories:
1
42
WString
29
..;..\..\Include;$(%watcom)\h
0
43
MVState
44
WString
3
WCC
45
WString
23
?????Macro definitions:
1
46
WString
13
HAVE_CONFIG_H
0
47
MCState
48
WString
3
WCC
49
WString
31
?????Force enums to be type int
1
1
50
MRState
51
WString
3
WCC
52
WString
20
?????Pack structures
1
0
53
MRState
54
WString
3
WCC
55
WString
21
?????4 byte alignment
1
1
56
WVList
0
-1
1
1
0
57
MItem
27
..\..\modules\arraymodule.c
58
WString
4
COBJ
59
WVList
0
60
WVList
0
19
1
1
0
61
MItem
23
..\..\modules\audioop.c
62
WString
4
COBJ
63
WVList
0
64
WVList
0
19
1
1
0
65
MItem
24
..\..\modules\binascii.c
66
WString
4
COBJ
67
WVList
0
68
WVList
0
19
1
1
0
69
MItem
27
..\..\modules\cmathmodule.c
70
WString
4
COBJ
71
WVList
0
72
WVList
0
19
1
1
0
73
MItem
27
..\..\modules\environment.c
74
WString
4
COBJ
75
WVList
0
76
WVList
0
19
1
1
0
77
MItem
23
..\..\modules\getpath.c
78
WString
4
COBJ
79
WVList
0
80
WVList
0
19
1
1
0
81
MItem
23
..\..\modules\imageop.c
82
WString
4
COBJ
83
WVList
0
84
WVList
0
19
1
1
0
85
MItem
20
..\..\modules\main.c
86
WString
4
COBJ
87
WVList
0
88
WVList
0
19
1
1
0
89
MItem
26
..\..\modules\mathmodule.c
90
WString
4
COBJ
91
WVList
0
92
WVList
0
19
1
1
0
93
MItem
20
..\..\modules\md5c.c
94
WString
4
COBJ
95
WVList
0
96
WVList
0
19
1
1
0
97
MItem
25
..\..\modules\md5module.c
98
WString
4
COBJ
99
WVList
0
100
WVList
0
19
1
1
0
101
MItem
25
..\..\modules\newmodule.c
102
WString
4
COBJ
103
WVList
0
104
WVList
0
19
1
1
0
105
MItem
27
..\..\modules\regexmodule.c
106
WString
4
COBJ
107
WVList
0
108
WVList
0
19
1
1
0
109
MItem
23
..\..\modules\regexpr.c
110
WString
4
COBJ
111
WVList
0
112
WVList
0
19
1
1
0
113
MItem
28
..\..\modules\rgbimgmodule.c
114
WString
4
COBJ
115
WVList
0
116
WVList
0
19
1
1
0
117
MItem
27
..\..\modules\rotormodule.c
118
WString
4
COBJ
119
WVList
0
120
WVList
0
19
1
1
0
121
MItem
28
..\..\modules\signalmodule.c
122
WString
4
COBJ
123
WVList
0
124
WVList
0
19
1
1
0
125
MItem
23
..\..\modules\soundex.c
126
WString
4
COBJ
127
WVList
0
128
WVList
0
19
1
1
0
129
MItem
27
..\..\modules\stropmodule.c
130
WString
4
COBJ
131
WVList
0
132
WVList
0
19
1
1
0
133
MItem
28
..\..\modules\structmodule.c
134
WString
4
COBJ
135
WVList
0
136
WVList
0
19
1
1
0
137
MItem
26
..\..\modules\timemodule.c
138
WString
4
COBJ
139
WVList
0
140
WVList
0
19
1
1
0
141
MItem
26
..\..\modules\yuvconvert.c
142
WString
4
COBJ
143
WVList
0
144
WVList
0
19
1
1
0
145
MItem
24
..\..\objects\abstract.c
146
WString
4
COBJ
147
WVList
0
148
WVList
0
19
1
1
0
149
MItem
28
..\..\objects\accessobject.c
150
WString
4
COBJ
151
WVList
0
152
WVList
0
19
1
1
0
153
MItem
27
..\..\objects\classobject.c
154
WString
4
COBJ
155
WVList
0
156
WVList
0
19
1
1
0
157
MItem
23
..\..\objects\cobject.c
158
WString
4
COBJ
159
WVList
0
160
WVList
0
19
1
1
0
161
MItem
29
..\..\objects\complexobject.c
162
WString
4
COBJ
163
WVList
0
164
WVList
0
19
1
1
0
165
MItem
26
..\..\objects\fileobject.c
166
WString
4
COBJ
167
WVList
0
168
WVList
0
19
1
1
0
169
MItem
27
..\..\objects\floatobject.c
170
WString
4
COBJ
171
WVList
0
172
WVList
0
19
1
1
0
173
MItem
27
..\..\objects\frameobject.c
174
WString
4
COBJ
175
WVList
0
176
WVList
0
19
1
1
0
177
MItem
26
..\..\objects\funcobject.c
178
WString
4
COBJ
179
WVList
0
180
WVList
0
19
1
1
0
181
MItem
25
..\..\objects\intobject.c
182
WString
4
COBJ
183
WVList
0
184
WVList
0
19
1
1
0
185
MItem
26
..\..\objects\listobject.c
186
WString
4
COBJ
187
WVList
0
188
WVList
0
19
1
1
0
189
MItem
26
..\..\objects\longobject.c
190
WString
4
COBJ
191
WVList
0
192
WVList
0
19
1
1
0
193
MItem
29
..\..\objects\mappingobject.c
194
WString
4
COBJ
195
WVList
0
196
WVList
0
19
1
1
0
197
MItem
28
..\..\objects\methodobject.c
198
WString
4
COBJ
199
WVList
0
200
WVList
0
19
1
1
0
201
MItem
28
..\..\objects\moduleobject.c
202
WString
4
COBJ
203
WVList
0
204
WVList
0
19
1
1
0
205
MItem
22
..\..\objects\object.c
206
WString
4
COBJ
207
WVList
0
208
WVList
0
19
1
1
0
209
MItem
27
..\..\objects\rangeobject.c
210
WString
4
COBJ
211
WVList
0
212
WVList
0
19
1
1
0
213
MItem
28
..\..\objects\stringobject.c
214
WString
4
COBJ
215
WVList
0
216
WVList
0
19
1
1
0
217
MItem
27
..\..\objects\tupleobject.c
218
WString
4
COBJ
219
WVList
0
220
WVList
0
19
1
1
0
221
MItem
26
..\..\objects\typeobject.c
222
WString
4
COBJ
223
WVList
0
224
WVList
0
19
1
1
0
225
MItem
22
..\..\parser\acceler.c
226
WString
4
COBJ
227
WVList
0
228
WVList
0
19
1
1
0
229
MItem
23
..\..\parser\grammar1.c
230
WString
4
COBJ
231
WVList
0
232
WVList
0
19
1
1
0
233
MItem
25
..\..\parser\myreadline.c
234
WString
4
COBJ
235
WVList
0
236
WVList
0
19
1
1
0
237
MItem
19
..\..\parser\node.c
238
WString
4
COBJ
239
WVList
0
240
WVList
0
19
1
1
0
241
MItem
21
..\..\parser\parser.c
242
WString
4
COBJ
243
WVList
0
244
WVList
0
19
1
1
0
245
MItem
23
..\..\parser\parsetok.c
246
WString
4
COBJ
247
WVList
0
248
WVList
0
19
1
1
0
249
MItem
24
..\..\parser\tokenizer.c
250
WString
4
COBJ
251
WVList
0
252
WVList
0
19
1
1
0
253
MItem
26
..\..\python\bltinmodule.c
254
WString
4
COBJ
255
WVList
0
256
WVList
0
19
1
1
0
257
MItem
20
..\..\python\ceval.c
258
WString
4
COBJ
259
WVList
0
260
WVList
0
19
1
1
0
261
MItem
26
..\..\python\cgensupport.c
262
WString
4
COBJ
263
WVList
0
264
WVList
0
19
1
1
0
265
MItem
22
..\..\python\compile.c
266
WString
4
COBJ
267
WVList
0
268
WVList
0
19
1
1
0
269
MItem
21
..\..\python\errors.c
270
WString
4
COBJ
271
WVList
0
272
WVList
0
19
1
1
0
273
MItem
21
..\..\python\frozen.c
274
WString
4
COBJ
275
WVList
0
276
WVList
0
19
1
1
0
277
MItem
22
..\..\python\getargs.c
278
WString
4
COBJ
279
WVList
0
280
WVList
0
19
1
1
0
281
MItem
26
..\..\python\getcompiler.c
282
WString
4
COBJ
283
WVList
0
284
WVList
0
19
1
1
0
285
MItem
27
..\..\python\getcopyright.c
286
WString
4
COBJ
287
WVList
0
288
WVList
0
19
1
1
0
289
MItem
23
..\..\python\getmtime.c
290
WString
4
COBJ
291
WVList
0
292
WVList
0
19
1
1
0
293
MItem
21
..\..\python\getopt.c
294
WString
4
COBJ
295
WVList
0
296
WVList
0
19
1
1
0
297
MItem
26
..\..\python\getplatform.c
298
WString
4
COBJ
299
WVList
0
300
WVList
0
19
1
1
0
301
MItem
25
..\..\python\getversion.c
302
WString
4
COBJ
303
WVList
0
304
WVList
0
19
1
1
0
305
MItem
23
..\..\python\graminit.c
306
WString
4
COBJ
307
WVList
0
308
WVList
0
19
1
1
0
309
MItem
21
..\..\python\import.c
310
WString
4
COBJ
311
WVList
0
312
WVList
0
19
1
1
0
313
MItem
23
..\..\python\importdl.c
314
WString
4
COBJ
315
WVList
0
316
WVList
0
19
1
1
0
317
MItem
22
..\..\python\marshal.c
318
WString
4
COBJ
319
WVList
0
320
WVList
0
19
1
1
0
321
MItem
25
..\..\python\modsupport.c
322
WString
4
COBJ
323
WVList
0
324
WVList
0
19
1
1
0
325
MItem
24
..\..\python\mystrtoul.c
326
WString
4
COBJ
327
WVList
0
328
WVList
0
19
1
1
0
329
MItem
24
..\..\python\pythonrun.c
330
WString
4
COBJ
331
WVList
0
332
WVList
0
19
1
1
0
333
MItem
27
..\..\python\structmember.c
334
WString
4
COBJ
335
WVList
0
336
WVList
0
19
1
1
0
337
MItem
24
..\..\python\sysmodule.c
338
WString
4
COBJ
339
WVList
0
340
WVList
0
19
1
1
0
341
MItem
24
..\..\python\traceback.c
342
WString
4
COBJ
343
WVList
0
344
WVList
0
19
1
1
0
345
MItem
11
..\config.c
346
WString
4
COBJ
347
WVList
0
348
WVList
0
19
1
1
0
349
MItem
16
..\posixmodule.c
350
WString
4
COBJ
351
WVList
0
352
WVList
0
19
1
1
0
40
targetIdent
0
MProject
1
MComponent
0
2
WString
3
EXE
3
WString
5
dr2en
1
0
0
4
MCommand
0
5
MCommand
0
6
MItem
12
pyth_dos.exe
7
WString
3
EXE
8
WVList
2
9
MVState
10
WString
5
WLINK
11
WString
11
?????Stack:
0
12
WString
4
128K
0
13
MVState
14
WString
5
WLINK
15
WString
11
?????Stack:
1
16
WString
4
128k
0
17
WVList
0
-1
1
1
0
18
WPickList
77
19
MItem
3
*.c
20
WString
4
COBJ
21
WVList
10
22
MVState
23
WString
3
WCC
24
WString
25
d????Include directories:
0
25
WString
30
..; ..\..\Include;$(%watcom)\h
0
26
MVState
27
WString
3
WCC
28
WString
23
?????Macro definitions:
0
29
WString
13
HAVE_CONFIG_H
0
30
MCState
31
WString
3
WCC
32
WString
31
?????Force enums to be type int
0
1
33
MRState
34
WString
3
WCC
35
WString
20
?????Pack structures
0
0
36
MRState
37
WString
3
WCC
38
WString
21
?????4 byte alignment
0
1
39
MVState
40
WString
3
WCC
41
WString
25
d????Include directories:
1
42
WString
29
..;..\..\Include;$(%watcom)\h
0
43
MVState
44
WString
3
WCC
45
WString
23
?????Macro definitions:
1
46
WString
13
HAVE_CONFIG_H
0
47
MCState
48
WString
3
WCC
49
WString
31
?????Force enums to be type int
1
1
50
MRState
51
WString
3
WCC
52
WString
20
?????Pack structures
1
0
53
MRState
54
WString
3
WCC
55
WString
21
?????4 byte alignment
1
1
56
WVList
0
-1
1
1
0
57
MItem
27
..\..\modules\arraymodule.c
58
WString
4
COBJ
59
WVList
0
60
WVList
0
19
1
1
0
61
MItem
23
..\..\modules\audioop.c
62
WString
4
COBJ
63
WVList
0
64
WVList
0
19
1
1
0
65
MItem
24
..\..\modules\binascii.c
66
WString
4
COBJ
67
WVList
0
68
WVList
0
19
1
1
0
69
MItem
27
..\..\modules\cmathmodule.c
70
WString
4
COBJ
71
WVList
0
72
WVList
0
19
1
1
0
73
MItem
27
..\..\modules\environment.c
74
WString
4
COBJ
75
WVList
0
76
WVList
0
19
1
1
0
77
MItem
27
..\..\modules\errnomodule.c
78
WString
4
COBJ
79
WVList
0
80
WVList
0
19
1
1
0
81
MItem
23
..\..\modules\getpath.c
82
WString
4
COBJ
83
WVList
0
84
WVList
0
19
1
1
0
85
MItem
23
..\..\modules\imageop.c
86
WString
4
COBJ
87
WVList
0
88
WVList
0
19
1
1
0
89
MItem
20
..\..\modules\main.c
90
WString
4
COBJ
91
WVList
0
92
WVList
0
19
1
1
0
93
MItem
26
..\..\modules\mathmodule.c
94
WString
4
COBJ
95
WVList
0
96
WVList
0
19
1
1
0
97
MItem
20
..\..\modules\md5c.c
98
WString
4
COBJ
99
WVList
0
100
WVList
0
19
1
1
0
101
MItem
25
..\..\modules\md5module.c
102
WString
4
COBJ
103
WVList
0
104
WVList
0
19
1
1
0
105
MItem
25
..\..\modules\newmodule.c
106
WString
4
COBJ
107
WVList
0
108
WVList
0
19
1
1
0
109
MItem
24
..\..\modules\operator.c
110
WString
4
COBJ
111
WVList
0
112
WVList
0
19
1
1
0
113
MItem
27
..\..\modules\posixmodule.c
114
WString
4
COBJ
115
WVList
0
116
WVList
0
19
1
1
0
117
MItem
27
..\..\modules\regexmodule.c
118
WString
4
COBJ
119
WVList
0
120
WVList
0
19
1
1
0
121
MItem
23
..\..\modules\regexpr.c
122
WString
4
COBJ
123
WVList
0
124
WVList
0
19
1
1
0
125
MItem
28
..\..\modules\rgbimgmodule.c
126
WString
4
COBJ
127
WVList
0
128
WVList
0
19
1
1
0
129
MItem
27
..\..\modules\rotormodule.c
130
WString
4
COBJ
131
WVList
0
132
WVList
0
19
1
1
0
133
MItem
28
..\..\modules\signalmodule.c
134
WString
4
COBJ
135
WVList
0
136
WVList
0
19
1
1
0
137
MItem
23
..\..\modules\soundex.c
138
WString
4
COBJ
139
WVList
0
140
WVList
0
19
1
1
0
141
MItem
27
..\..\modules\stropmodule.c
142
WString
4
COBJ
143
WVList
0
144
WVList
0
19
1
1
0
145
MItem
28
..\..\modules\structmodule.c
146
WString
4
COBJ
147
WVList
0
148
WVList
0
19
1
1
0
149
MItem
26
..\..\modules\timemodule.c
150
WString
4
COBJ
151
WVList
0
152
WVList
0
19
1
1
0
153
MItem
26
..\..\modules\yuvconvert.c
154
WString
4
COBJ
155
WVList
0
156
WVList
0
19
1
1
0
157
MItem
24
..\..\objects\abstract.c
158
WString
4
COBJ
159
WVList
0
160
WVList
0
19
1
1
0
161
MItem
28
..\..\objects\accessobject.c
162
WString
4
COBJ
163
WVList
0
164
WVList
0
19
1
1
0
165
MItem
27
..\..\objects\classobject.c
166
WString
4
COBJ
167
WVList
0
168
WVList
0
19
1
1
0
169
MItem
23
..\..\objects\cobject.c
170
WString
4
COBJ
171
WVList
0
172
WVList
0
19
1
1
0
173
MItem
29
..\..\objects\complexobject.c
174
WString
4
COBJ
175
WVList
0
176
WVList
0
19
1
1
0
177
MItem
26
..\..\objects\fileobject.c
178
WString
4
COBJ
179
WVList
0
180
WVList
0
19
1
1
0
181
MItem
27
..\..\objects\floatobject.c
182
WString
4
COBJ
183
WVList
0
184
WVList
0
19
1
1
0
185
MItem
27
..\..\objects\frameobject.c
186
WString
4
COBJ
187
WVList
0
188
WVList
0
19
1
1
0
189
MItem
26
..\..\objects\funcobject.c
190
WString
4
COBJ
191
WVList
0
192
WVList
0
19
1
1
0
193
MItem
25
..\..\objects\intobject.c
194
WString
4
COBJ
195
WVList
0
196
WVList
0
19
1
1
0
197
MItem
26
..\..\objects\listobject.c
198
WString
4
COBJ
199
WVList
0
200
WVList
0
19
1
1
0
201
MItem
26
..\..\objects\longobject.c
202
WString
4
COBJ
203
WVList
0
204
WVList
0
19
1
1
0
205
MItem
29
..\..\objects\mappingobject.c
206
WString
4
COBJ
207
WVList
0
208
WVList
0
19
1
1
0
209
MItem
28
..\..\objects\methodobject.c
210
WString
4
COBJ
211
WVList
0
212
WVList
0
19
1
1
0
213
MItem
28
..\..\objects\moduleobject.c
214
WString
4
COBJ
215
WVList
0
216
WVList
0
19
1
1
0
217
MItem
22
..\..\objects\object.c
218
WString
4
COBJ
219
WVList
0
220
WVList
0
19
1
1
0
221
MItem
27
..\..\objects\rangeobject.c
222
WString
4
COBJ
223
WVList
0
224
WVList
0
19
1
1
0
225
MItem
28
..\..\objects\stringobject.c
226
WString
4
COBJ
227
WVList
0
228
WVList
0
19
1
1
0
229
MItem
27
..\..\objects\tupleobject.c
230
WString
4
COBJ
231
WVList
0
232
WVList
0
19
1
1
0
233
MItem
26
..\..\objects\typeobject.c
234
WString
4
COBJ
235
WVList
0
236
WVList
0
19
1
1
0
237
MItem
22
..\..\parser\acceler.c
238
WString
4
COBJ
239
WVList
0
240
WVList
0
19
1
1
0
241
MItem
23
..\..\parser\grammar1.c
242
WString
4
COBJ
243
WVList
0
244
WVList
0
19
1
1
0
245
MItem
25
..\..\parser\myreadline.c
246
WString
4
COBJ
247
WVList
0
248
WVList
0
19
1
1
0
249
MItem
19
..\..\parser\node.c
250
WString
4
COBJ
251
WVList
0
252
WVList
0
19
1
1
0
253
MItem
21
..\..\parser\parser.c
254
WString
4
COBJ
255
WVList
0
256
WVList
0
19
1
1
0
257
MItem
23
..\..\parser\parsetok.c
258
WString
4
COBJ
259
WVList
0
260
WVList
0
19
1
1
0
261
MItem
24
..\..\parser\tokenizer.c
262
WString
4
COBJ
263
WVList
0
264
WVList
0
19
1
1
0
265
MItem
26
..\..\python\bltinmodule.c
266
WString
4
COBJ
267
WVList
0
268
WVList
0
19
1
1
0
269
MItem
20
..\..\python\ceval.c
270
WString
4
COBJ
271
WVList
0
272
WVList
0
19
1
1
0
273
MItem
26
..\..\python\cgensupport.c
274
WString
4
COBJ
275
WVList
0
276
WVList
0
19
1
1
0
277
MItem
22
..\..\python\compile.c
278
WString
4
COBJ
279
WVList
0
280
WVList
0
19
1
1
0
281
MItem
21
..\..\python\errors.c
282
WString
4
COBJ
283
WVList
0
284
WVList
0
19
1
1
0
285
MItem
21
..\..\python\frozen.c
286
WString
4
COBJ
287
WVList
0
288
WVList
0
19
1
1
0
289
MItem
22
..\..\python\getargs.c
290
WString
4
COBJ
291
WVList
0
292
WVList
0
19
1
1
0
293
MItem
26
..\..\python\getcompiler.c
294
WString
4
COBJ
295
WVList
0
296
WVList
0
19
1
1
0
297
MItem
27
..\..\python\getcopyright.c
298
WString
4
COBJ
299
WVList
0
300
WVList
0
19
1
1
0
301
MItem
23
..\..\python\getmtime.c
302
WString
4
COBJ
303
WVList
0
304
WVList
0
19
1
1
0
305
MItem
21
..\..\python\getopt.c
306
WString
4
COBJ
307
WVList
0
308
WVList
0
19
1
1
0
309
MItem
26
..\..\python\getplatform.c
310
WString
4
COBJ
311
WVList
0
312
WVList
0
19
1
1
0
313
MItem
25
..\..\python\getversion.c
314
WString
4
COBJ
315
WVList
0
316
WVList
0
19
1
1
0
317
MItem
23
..\..\python\graminit.c
318
WString
4
COBJ
319
WVList
0
320
WVList
0
19
1
1
0
321
MItem
21
..\..\python\import.c
322
WString
4
COBJ
323
WVList
0
324
WVList
0
19
1
1
0
325
MItem
23
..\..\python\importdl.c
326
WString
4
COBJ
327
WVList
0
328
WVList
0
19
1
1
0
329
MItem
22
..\..\python\marshal.c
330
WString
4
COBJ
331
WVList
0
332
WVList
0
19
1
1
0
333
MItem
25
..\..\python\modsupport.c
334
WString
4
COBJ
335
WVList
0
336
WVList
0
19
1
1
0
337
MItem
24
..\..\python\mystrtoul.c
338
WString
4
COBJ
339
WVList
0
340
WVList
0
19
1
1
0
341
MItem
24
..\..\python\pythonrun.c
342
WString
4
COBJ
343
WVList
0
344
WVList
0
19
1
1
0
345
MItem
27
..\..\python\structmember.c
346
WString
4
COBJ
347
WVList
0
348
WVList
0
19
1
1
0
349
MItem
24
..\..\python\sysmodule.c
350
WString
4
COBJ
351
WVList
0
352
WVList
0
19
1
1
0
353
MItem
24
..\..\python\traceback.c
354
WString
4
COBJ
355
WVList
0
356
WVList
0
19
1
1
0
357
MItem
11
..\config.c
358
WString
4
COBJ
359
WVList
0
360
WVList
0
19
1
1
0
NAME pyth_os2
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixmodule.obj
NAME pyth_os2
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,posixmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj
!define BLANK ""
n:\python\python-1.4b0b\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b0b&
\modules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\arraymodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\audioop.obj : n:\python\python-1.4b0b\mod&
ules\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\audioop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\binascii.obj : n:\python\python-1.4b0b\mo&
dules\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\binascii.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b0b&
\modules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\cmathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\environment.obj : n:\python\python-1.4b0b&
\modules\environment.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\environment.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getpath.obj : n:\python\python-1.4b0b\mod&
ules\getpath.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\getpath.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\imageop.obj : n:\python\python-1.4b0b\mod&
ules\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\imageop.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\main.obj : n:\python\python-1.4b0b\module&
s\main.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\main.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b0b\&
modules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\mathmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\md5c.obj : n:\python\python-1.4b0b\module&
s\md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\md5c.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\md5module.obj : n:\python\python-1.4b0b\m&
odules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\md5module.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\newmodule.obj : n:\python\python-1.4b0b\m&
odules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\newmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b0b&
\modules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\regexmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\regexpr.obj : n:\python\python-1.4b0b\mod&
ules\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\regexpr.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b0&
b\modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\rgbimgmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b0b&
\modules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\rotormodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b0&
b\modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\signalmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\soundex.obj : n:\python\python-1.4b0b\mod&
ules\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\soundex.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b0b&
\modules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\stropmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\structmodule.obj : n:\python\python-1.4b0&
b\modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\structmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\timemodule.obj : n:\python\python-1.4b0b\&
modules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\timemodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b0b\&
modules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\modules\yuvconvert.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\abstract.obj : n:\python\python-1.4b0b\ob&
jects\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\abstract.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\accessobject.obj : n:\python\python-1.4b0&
b\objects\accessobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\accessobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\classobject.obj : n:\python\python-1.4b0b&
\objects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\classobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\cobject.obj : n:\python\python-1.4b0b\obj&
ects\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\cobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\complexobject.obj : n:\python\python-1.4b&
0b\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\complexobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj : n:\python\python-1.4b0b\&
objects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\fileobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\floatobject.obj : n:\python\python-1.4b0b&
\objects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\floatobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\frameobject.obj : n:\python\python-1.4b0b&
\objects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\frameobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj : n:\python\python-1.4b0b\&
objects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\funcobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\intobject.obj : n:\python\python-1.4b0b\o&
bjects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\intobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\listobject.obj : n:\python\python-1.4b0b\&
objects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\listobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\longobject.obj : n:\python\python-1.4b0b\&
objects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\longobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b&
0b\objects\mappingobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\mappingobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WA&
TCOM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\methodobject.obj : n:\python\python-1.4b0&
b\objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\methodobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b0&
b\objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\moduleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\object.obj : n:\python\python-1.4b0b\obje&
cts\object.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\object.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b0b&
\objects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\rangeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj : n:\python\python-1.4b0&
b\objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\stringobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WAT&
COM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b0b&
\objects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\tupleobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\typeobject.obj : n:\python\python-1.4b0b\&
objects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\objects\typeobject.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\acceler.obj : n:\python\python-1.4b0b\par&
ser\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\acceler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\grammar1.obj : n:\python\python-1.4b0b\pa&
rser\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\grammar1.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\myreadline.obj : n:\python\python-1.4b0b\&
parser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\myreadline.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\node.obj : n:\python\python-1.4b0b\parser&
\node.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\node.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2&
-w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\parser.obj : n:\python\python-1.4b0b\pars&
er\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\parser.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj : n:\python\python-1.4b0b\pa&
rser\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\parsetok.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b0b\p&
arser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\parser\tokenizer.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b0b&
\python\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\bltinmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\ceval.obj : n:\python\python-1.4b0b\pytho&
n\ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\ceval.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os&
2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b0b&
\python\cgensupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\cgensupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\compile.obj : n:\python\python-1.4b0b\pyt&
hon\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\compile.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\errors.obj : n:\python\python-1.4b0b\pyth&
on\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\errors.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\frozen.obj : n:\python\python-1.4b0b\pyth&
on\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\frozen.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getargs.obj : n:\python\python-1.4b0b\pyt&
hon\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getargs.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b0b&
\python\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getcompiler.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b0&
b\python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getcopyright.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj : n:\python\python-1.4b0b\py&
thon\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getmtime.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getopt.obj : n:\python\python-1.4b0b\pyth&
on\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getopt.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getplatform.obj : n:\python\python-1.4b0b&
\python\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getplatform.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCO&
M\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\getversion.obj : n:\python\python-1.4b0b\&
python\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\getversion.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\graminit.obj : n:\python\python-1.4b0b\py&
thon\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\graminit.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\import.obj : n:\python\python-1.4b0b\pyth&
on\import.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\import.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\o&
s2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\importdl.obj : n:\python\python-1.4b0b\py&
thon\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\importdl.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h&
\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\marshal.obj : n:\python\python-1.4b0b\pyt&
hon\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\marshal.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\&
os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj : n:\python\python-1.4b0b\&
python\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\modsupport.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM&
\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b0b\p&
ython\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\mystrtoul.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b0b\p&
ython\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\pythonrun.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\structmember.obj : n:\python\python-1.4b0&
b\python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\structmember.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATC&
OM\h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b0b\p&
ython\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\sysmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\traceback.obj : n:\python\python-1.4b0b\p&
ython\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\..\python\traceback.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\&
h\os2 -w4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\config.obj : n:\python\python-1.4b0b\pc\c&
onfig.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\config.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w4 -e2&
5 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b0b&
\pc\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
*wcc386 ..\posixmodule.c -i=..;..\..\Include;C:\WATCOM\h;C:\WATCOM\h\os2 -w&
4 -e25 -dHAVE_CONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=os2 -mf
n:\python\python-1.4b0b\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b0b\pc&
\wat_os2\arraymodule.obj n:\python\python-1.4b0b\pc\wat_os2\audioop.obj n:\p&
ython\python-1.4b0b\pc\wat_os2\binascii.obj n:\python\python-1.4b0b\pc\wat_o&
s2\cmathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\environment.obj n:\pyt&
hon\python-1.4b0b\pc\wat_os2\getpath.obj n:\python\python-1.4b0b\pc\wat_os2\&
imageop.obj n:\python\python-1.4b0b\pc\wat_os2\main.obj n:\python\python-1.4&
b0b\pc\wat_os2\mathmodule.obj n:\python\python-1.4b0b\pc\wat_os2\md5c.obj n:&
\python\python-1.4b0b\pc\wat_os2\md5module.obj n:\python\python-1.4b0b\pc\wa&
t_os2\newmodule.obj n:\python\python-1.4b0b\pc\wat_os2\regexmodule.obj n:\py&
thon\python-1.4b0b\pc\wat_os2\regexpr.obj n:\python\python-1.4b0b\pc\wat_os2&
\rgbimgmodule.obj n:\python\python-1.4b0b\pc\wat_os2\rotormodule.obj n:\pyth&
on\python-1.4b0b\pc\wat_os2\signalmodule.obj n:\python\python-1.4b0b\pc\wat_&
os2\soundex.obj n:\python\python-1.4b0b\pc\wat_os2\stropmodule.obj n:\python&
\python-1.4b0b\pc\wat_os2\structmodule.obj n:\python\python-1.4b0b\pc\wat_os&
2\timemodule.obj n:\python\python-1.4b0b\pc\wat_os2\yuvconvert.obj n:\python&
\python-1.4b0b\pc\wat_os2\abstract.obj n:\python\python-1.4b0b\pc\wat_os2\ac&
cessobject.obj n:\python\python-1.4b0b\pc\wat_os2\classobject.obj n:\python\&
python-1.4b0b\pc\wat_os2\cobject.obj n:\python\python-1.4b0b\pc\wat_os2\comp&
lexobject.obj n:\python\python-1.4b0b\pc\wat_os2\fileobject.obj n:\python\py&
thon-1.4b0b\pc\wat_os2\floatobject.obj n:\python\python-1.4b0b\pc\wat_os2\fr&
ameobject.obj n:\python\python-1.4b0b\pc\wat_os2\funcobject.obj n:\python\py&
thon-1.4b0b\pc\wat_os2\intobject.obj n:\python\python-1.4b0b\pc\wat_os2\list&
object.obj n:\python\python-1.4b0b\pc\wat_os2\longobject.obj n:\python\pytho&
n-1.4b0b\pc\wat_os2\mappingobject.obj n:\python\python-1.4b0b\pc\wat_os2\met&
hodobject.obj n:\python\python-1.4b0b\pc\wat_os2\moduleobject.obj n:\python\&
python-1.4b0b\pc\wat_os2\object.obj n:\python\python-1.4b0b\pc\wat_os2\range&
object.obj n:\python\python-1.4b0b\pc\wat_os2\stringobject.obj n:\python\pyt&
hon-1.4b0b\pc\wat_os2\tupleobject.obj n:\python\python-1.4b0b\pc\wat_os2\typ&
eobject.obj n:\python\python-1.4b0b\pc\wat_os2\acceler.obj n:\python\python-&
1.4b0b\pc\wat_os2\grammar1.obj n:\python\python-1.4b0b\pc\wat_os2\myreadline&
.obj n:\python\python-1.4b0b\pc\wat_os2\node.obj n:\python\python-1.4b0b\pc\&
wat_os2\parser.obj n:\python\python-1.4b0b\pc\wat_os2\parsetok.obj n:\python&
\python-1.4b0b\pc\wat_os2\tokenizer.obj n:\python\python-1.4b0b\pc\wat_os2\b&
ltinmodule.obj n:\python\python-1.4b0b\pc\wat_os2\ceval.obj n:\python\python&
-1.4b0b\pc\wat_os2\cgensupport.obj n:\python\python-1.4b0b\pc\wat_os2\compil&
e.obj n:\python\python-1.4b0b\pc\wat_os2\errors.obj n:\python\python-1.4b0b\&
pc\wat_os2\frozen.obj n:\python\python-1.4b0b\pc\wat_os2\getargs.obj n:\pyth&
on\python-1.4b0b\pc\wat_os2\getcompiler.obj n:\python\python-1.4b0b\pc\wat_o&
s2\getcopyright.obj n:\python\python-1.4b0b\pc\wat_os2\getmtime.obj n:\pytho&
n\python-1.4b0b\pc\wat_os2\getopt.obj n:\python\python-1.4b0b\pc\wat_os2\get&
platform.obj n:\python\python-1.4b0b\pc\wat_os2\getversion.obj n:\python\pyt&
hon-1.4b0b\pc\wat_os2\graminit.obj n:\python\python-1.4b0b\pc\wat_os2\import&
.obj n:\python\python-1.4b0b\pc\wat_os2\importdl.obj n:\python\python-1.4b0b&
\pc\wat_os2\marshal.obj n:\python\python-1.4b0b\pc\wat_os2\modsupport.obj n:&
\python\python-1.4b0b\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b0b\pc\wa&
t_os2\pythonrun.obj n:\python\python-1.4b0b\pc\wat_os2\structmember.obj n:\p&
ython\python-1.4b0b\pc\wat_os2\sysmodule.obj n:\python\python-1.4b0b\pc\wat_&
os2\traceback.obj n:\python\python-1.4b0b\pc\wat_os2\config.obj n:\python\py&
thon-1.4b0b\pc\wat_os2\posixmodule.obj .AUTODEPEND
@n:
cd n:\python\python-1.4b0b\pc\wat_os2
@%write pyth_os2.lk1 NAME pyth_os2
@%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
ule.obj,environment.obj,getpath.obj,imageop.obj,main.obj,mathmodule.obj,md5c&
.obj,md5module.obj,newmodule.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.ob&
j,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.&
obj,timemodule.obj,yuvconvert.obj,abstract.obj,accessobject.obj,classobject.&
obj,cobject.obj,complexobject.obj,fileobject.obj,floatobject.obj,frameobject&
.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,mappingobjec&
t.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,stringobj&
ect.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.obj,myreadline.o&
bj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodule.obj,ceval.obj,&
cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.ob&
j,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,gr&
aminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj,&
pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,posixm&
odule.obj
@%append pyth_os2.lk1
!ifneq BLANK ""
*wlib -q -n -b pyth_os2.imp
@%append pyth_os2.lk1 LIBR pyth_os2.imp
!endif
*wlink SYS os2v2 op m op st=128k op maxe=25 op q op symf @pyth_os2.lk1
!ifneq BLANK ""
rc -i $[: -i C:\WATCOM\h -i C:\WATCOM\h\os2 pyth_os2.exe
!endif
!define BLANK ""
n:\python\python-1.4b2\pc\wat_os2\arraymodule.obj : n:\python\python-1.4b2\m&
odules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\audioop.obj : n:\python\python-1.4b2\modul&
es\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\binascii.obj : n:\python\python-1.4b2\modu&
les\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\cmathmodule.obj : n:\python\python-1.4b2\m&
odules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\environment.obj : n:\python\python-1.4b2\m&
odules\environment.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getpath.obj : n:\python\python-1.4b2\modul&
es\getpath.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\imageop.obj : n:\python\python-1.4b2\modul&
es\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\main.obj : n:\python\python-1.4b2\modules\&
main.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\mathmodule.obj : n:\python\python-1.4b2\mo&
dules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\md5c.obj : n:\python\python-1.4b2\modules\&
md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\md5module.obj : n:\python\python-1.4b2\mod&
ules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\newmodule.obj : n:\python\python-1.4b2\mod&
ules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\posixmodule.obj : n:\python\python-1.4b2\m&
odules\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\pc\wat_os2
*wcc386 ..\..\modules\posixmodule.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.4b2\pc\wat_os2\regexmodule.obj : n:\python\python-1.4b2\m&
odules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\regexpr.obj : n:\python\python-1.4b2\modul&
es\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.4b2\&
modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\rotormodule.obj : n:\python\python-1.4b2\m&
odules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\signalmodule.obj : n:\python\python-1.4b2\&
modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\soundex.obj : n:\python\python-1.4b2\modul&
es\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\stropmodule.obj : n:\python\python-1.4b2\m&
odules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\structmodule.obj : n:\python\python-1.4b2\&
modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\timemodule.obj : n:\python\python-1.4b2\mo&
dules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\yuvconvert.obj : n:\python\python-1.4b2\mo&
dules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\abstract.obj : n:\python\python-1.4b2\obje&
cts\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\accessobject.obj : n:\python\python-1.4b2\&
objects\accessobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\classobject.obj : n:\python\python-1.4b2\o&
bjects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\cobject.obj : n:\python\python-1.4b2\objec&
ts\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\complexobject.obj : n:\python\python-1.4b2&
\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\fileobject.obj : n:\python\python-1.4b2\ob&
jects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\floatobject.obj : n:\python\python-1.4b2\o&
bjects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\frameobject.obj : n:\python\python-1.4b2\o&
bjects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\funcobject.obj : n:\python\python-1.4b2\ob&
jects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\intobject.obj : n:\python\python-1.4b2\obj&
ects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\listobject.obj : n:\python\python-1.4b2\ob&
jects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\longobject.obj : n:\python\python-1.4b2\ob&
jects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\mappingobject.obj : n:\python\python-1.4b2&
\objects\mappingobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\methodobject.obj : n:\python\python-1.4b2\&
objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\moduleobject.obj : n:\python\python-1.4b2\&
objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\object.obj : n:\python\python-1.4b2\object&
s\object.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\rangeobject.obj : n:\python\python-1.4b2\o&
bjects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\stringobject.obj : n:\python\python-1.4b2\&
objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\tupleobject.obj : n:\python\python-1.4b2\o&
bjects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\typeobject.obj : n:\python\python-1.4b2\ob&
jects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\acceler.obj : n:\python\python-1.4b2\parse&
r\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\grammar1.obj : n:\python\python-1.4b2\pars&
er\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\myreadline.obj : n:\python\python-1.4b2\pa&
rser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\node.obj : n:\python\python-1.4b2\parser\n&
ode.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\parser.obj : n:\python\python-1.4b2\parser&
\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\parsetok.obj : n:\python\python-1.4b2\pars&
er\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\tokenizer.obj : n:\python\python-1.4b2\par&
ser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\bltinmodule.obj : n:\python\python-1.4b2\p&
ython\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\ceval.obj : n:\python\python-1.4b2\python\&
ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\cgensupport.obj : n:\python\python-1.4b2\p&
ython\cgensupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\compile.obj : n:\python\python-1.4b2\pytho&
n\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\errors.obj : n:\python\python-1.4b2\python&
\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\frozen.obj : n:\python\python-1.4b2\python&
\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getargs.obj : n:\python\python-1.4b2\pytho&
n\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getcompiler.obj : n:\python\python-1.4b2\p&
ython\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getcopyright.obj : n:\python\python-1.4b2\&
python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getmtime.obj : n:\python\python-1.4b2\pyth&
on\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getopt.obj : n:\python\python-1.4b2\python&
\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getplatform.obj : n:\python\python-1.4b2\p&
ython\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\getversion.obj : n:\python\python-1.4b2\py&
thon\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\graminit.obj : n:\python\python-1.4b2\pyth&
on\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\import.obj : n:\python\python-1.4b2\python&
\import.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\importdl.obj : n:\python\python-1.4b2\pyth&
on\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\marshal.obj : n:\python\python-1.4b2\pytho&
n\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\modsupport.obj : n:\python\python-1.4b2\py&
thon\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\mystrtoul.obj : n:\python\python-1.4b2\pyt&
hon\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\pythonrun.obj : n:\python\python-1.4b2\pyt&
hon\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\structmember.obj : n:\python\python-1.4b2\&
python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\sysmodule.obj : n:\python\python-1.4b2\pyt&
hon\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\traceback.obj : n:\python\python-1.4b2\pyt&
hon\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\config.obj : n:\python\python-1.4b2\pc\con&
fig.c .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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.4b2\pc\wat_os2\pyth_os2.exe : n:\python\python-1.4b2\pc\w&
at_os2\arraymodule.obj n:\python\python-1.4b2\pc\wat_os2\audioop.obj n:\pyth&
on\python-1.4b2\pc\wat_os2\binascii.obj n:\python\python-1.4b2\pc\wat_os2\cm&
athmodule.obj n:\python\python-1.4b2\pc\wat_os2\environment.obj n:\python\py&
thon-1.4b2\pc\wat_os2\getpath.obj n:\python\python-1.4b2\pc\wat_os2\imageop.&
obj n:\python\python-1.4b2\pc\wat_os2\main.obj n:\python\python-1.4b2\pc\wat&
_os2\mathmodule.obj n:\python\python-1.4b2\pc\wat_os2\md5c.obj n:\python\pyt&
hon-1.4b2\pc\wat_os2\md5module.obj n:\python\python-1.4b2\pc\wat_os2\newmodu&
le.obj n:\python\python-1.4b2\pc\wat_os2\posixmodule.obj n:\python\python-1.&
4b2\pc\wat_os2\regexmodule.obj n:\python\python-1.4b2\pc\wat_os2\regexpr.obj&
n:\python\python-1.4b2\pc\wat_os2\rgbimgmodule.obj n:\python\python-1.4b2\p&
c\wat_os2\rotormodule.obj n:\python\python-1.4b2\pc\wat_os2\signalmodule.obj&
n:\python\python-1.4b2\pc\wat_os2\soundex.obj n:\python\python-1.4b2\pc\wat&
_os2\stropmodule.obj n:\python\python-1.4b2\pc\wat_os2\structmodule.obj n:\p&
ython\python-1.4b2\pc\wat_os2\timemodule.obj n:\python\python-1.4b2\pc\wat_o&
s2\yuvconvert.obj n:\python\python-1.4b2\pc\wat_os2\abstract.obj n:\python\p&
ython-1.4b2\pc\wat_os2\accessobject.obj n:\python\python-1.4b2\pc\wat_os2\cl&
assobject.obj n:\python\python-1.4b2\pc\wat_os2\cobject.obj n:\python\python&
-1.4b2\pc\wat_os2\complexobject.obj n:\python\python-1.4b2\pc\wat_os2\fileob&
ject.obj n:\python\python-1.4b2\pc\wat_os2\floatobject.obj n:\python\python-&
1.4b2\pc\wat_os2\frameobject.obj n:\python\python-1.4b2\pc\wat_os2\funcobjec&
t.obj n:\python\python-1.4b2\pc\wat_os2\intobject.obj n:\python\python-1.4b2&
\pc\wat_os2\listobject.obj n:\python\python-1.4b2\pc\wat_os2\longobject.obj &
n:\python\python-1.4b2\pc\wat_os2\mappingobject.obj n:\python\python-1.4b2\p&
c\wat_os2\methodobject.obj n:\python\python-1.4b2\pc\wat_os2\moduleobject.ob&
j n:\python\python-1.4b2\pc\wat_os2\object.obj n:\python\python-1.4b2\pc\wat&
_os2\rangeobject.obj n:\python\python-1.4b2\pc\wat_os2\stringobject.obj n:\p&
ython\python-1.4b2\pc\wat_os2\tupleobject.obj n:\python\python-1.4b2\pc\wat_&
os2\typeobject.obj n:\python\python-1.4b2\pc\wat_os2\acceler.obj n:\python\p&
ython-1.4b2\pc\wat_os2\grammar1.obj n:\python\python-1.4b2\pc\wat_os2\myread&
line.obj n:\python\python-1.4b2\pc\wat_os2\node.obj n:\python\python-1.4b2\p&
c\wat_os2\parser.obj n:\python\python-1.4b2\pc\wat_os2\parsetok.obj n:\pytho&
n\python-1.4b2\pc\wat_os2\tokenizer.obj n:\python\python-1.4b2\pc\wat_os2\bl&
tinmodule.obj n:\python\python-1.4b2\pc\wat_os2\ceval.obj n:\python\python-1&
.4b2\pc\wat_os2\cgensupport.obj n:\python\python-1.4b2\pc\wat_os2\compile.ob&
j n:\python\python-1.4b2\pc\wat_os2\errors.obj n:\python\python-1.4b2\pc\wat&
_os2\frozen.obj n:\python\python-1.4b2\pc\wat_os2\getargs.obj n:\python\pyth&
on-1.4b2\pc\wat_os2\getcompiler.obj n:\python\python-1.4b2\pc\wat_os2\getcop&
yright.obj n:\python\python-1.4b2\pc\wat_os2\getmtime.obj n:\python\python-1&
.4b2\pc\wat_os2\getopt.obj n:\python\python-1.4b2\pc\wat_os2\getplatform.obj&
n:\python\python-1.4b2\pc\wat_os2\getversion.obj n:\python\python-1.4b2\pc\&
wat_os2\graminit.obj n:\python\python-1.4b2\pc\wat_os2\import.obj n:\python\&
python-1.4b2\pc\wat_os2\importdl.obj n:\python\python-1.4b2\pc\wat_os2\marsh&
al.obj n:\python\python-1.4b2\pc\wat_os2\modsupport.obj n:\python\python-1.4&
b2\pc\wat_os2\mystrtoul.obj n:\python\python-1.4b2\pc\wat_os2\pythonrun.obj &
n:\python\python-1.4b2\pc\wat_os2\structmember.obj n:\python\python-1.4b2\pc&
\wat_os2\sysmodule.obj n:\python\python-1.4b2\pc\wat_os2\traceback.obj n:\py&
thon\python-1.4b2\pc\wat_os2\config.obj .AUTODEPEND
@n:
cd n:\python\python-1.4b2\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,posixmodule.obj,regexmodule.obj,regexpr.obj&
,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.o&
bj,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,rangeobje&
ct.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1.&
obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodul&
e.obj,ceval.obj,cgensupport.obj,compile.obj,errors.obj,frozen.obj,getargs.ob&
j,getcompiler.obj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,g&
etversion.obj,graminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.ob&
j,mystrtoul.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,c&
onfig.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
40
targetIdent
0
MProject
1
MComponent
0
2
WString
4
OEXE
3
WString
5
oc2en
1
0
0
4
MCommand
0
5
MCommand
0
6
MItem
12
pyth_os2.exe
7
WString
4
OEXE
8
WVList
1
9
MVState
10
WString
7
OS2LINK
11
WString
11
?????Stack:
0
12
WString
4
128k
0
13
WVList
0
-1
1
1
0
14
WPickList
75
15
MItem
3
*.c
16
WString
4
COBJ
17
WVList
5
18
MVState
19
WString
3
WCC
20
WString
25
o?2??Include directories:
0
21
WString
46
..;..\..\Include;$(%watcom)\h;$(%watcom)\h\os2
0
22
MVState
23
WString
3
WCC
24
WString
23
?????Macro definitions:
0
25
WString
13
HAVE_CONFIG_H
0
26
MCState
27
WString
3
WCC
28
WString
31
?????Force enums to be type int
0
1
29
MRState
30
WString
3
WCC
31
WString
20
?????Pack structures
0
0
32
MRState
33
WString
3
WCC
34
WString
21
?????4 byte alignment
0
1
35
WVList
0
-1
1
1
0
36
MItem
27
..\..\modules\arraymodule.c
37
WString
4
COBJ
38
WVList
0
39
WVList
0
15
1
1
0
40
MItem
23
..\..\modules\audioop.c
41
WString
4
COBJ
42
WVList
0
43
WVList
0
15
1
1
0
44
MItem
24
..\..\modules\binascii.c
45
WString
4
COBJ
46
WVList
0
47
WVList
0
15
1
1
0
48
MItem
27
..\..\modules\cmathmodule.c
49
WString
4
COBJ
50
WVList
0
51
WVList
0
15
1
1
0
52
MItem
27
..\..\modules\environment.c
53
WString
4
COBJ
54
WVList
0
55
WVList
0
15
1
1
0
56
MItem
23
..\..\modules\getpath.c
57
WString
4
COBJ
58
WVList
0
59
WVList
0
15
1
1
0
60
MItem
23
..\..\modules\imageop.c
61
WString
4
COBJ
62
WVList
0
63
WVList
0
15
1
1
0
64
MItem
20
..\..\modules\main.c
65
WString
4
COBJ
66
WVList
0
67
WVList
0
15
1
1
0
68
MItem
26
..\..\modules\mathmodule.c
69
WString
4
COBJ
70
WVList
0
71
WVList
0
15
1
1
0
72
MItem
20
..\..\modules\md5c.c
73
WString
4
COBJ
74
WVList
0
75
WVList
0
15
1
1
0
76
MItem
25
..\..\modules\md5module.c
77
WString
4
COBJ
78
WVList
0
79
WVList
0
15
1
1
0
80
MItem
25
..\..\modules\newmodule.c
81
WString
4
COBJ
82
WVList
0
83
WVList
0
15
1
1
0
84
MItem
27
..\..\modules\regexmodule.c
85
WString
4
COBJ
86
WVList
0
87
WVList
0
15
1
1
0
88
MItem
23
..\..\modules\regexpr.c
89
WString
4
COBJ
90
WVList
0
91
WVList
0
15
1
1
0
92
MItem
28
..\..\modules\rgbimgmodule.c
93
WString
4
COBJ
94
WVList
0
95
WVList
0
15
1
1
0
96
MItem
27
..\..\modules\rotormodule.c
97
WString
4
COBJ
98
WVList
0
99
WVList
0
15
1
1
0
100
MItem
28
..\..\modules\signalmodule.c
101
WString
4
COBJ
102
WVList
0
103
WVList
0
15
1
1
0
104
MItem
23
..\..\modules\soundex.c
105
WString
4
COBJ
106
WVList
0
107
WVList
0
15
1
1
0
108
MItem
27
..\..\modules\stropmodule.c
109
WString
4
COBJ
110
WVList
0
111
WVList
0
15
1
1
0
112
MItem
28
..\..\modules\structmodule.c
113
WString
4
COBJ
114
WVList
0
115
WVList
0
15
1
1
0
116
MItem
26
..\..\modules\timemodule.c
117
WString
4
COBJ
118
WVList
0
119
WVList
0
15
1
1
0
120
MItem
26
..\..\modules\yuvconvert.c
121
WString
4
COBJ
122
WVList
0
123
WVList
0
15
1
1
0
124
MItem
24
..\..\objects\abstract.c
125
WString
4
COBJ
126
WVList
0
127
WVList
0
15
1
1
0
128
MItem
28
..\..\objects\accessobject.c
129
WString
4
COBJ
130
WVList
0
131
WVList
0
15
1
1
0
132
MItem
27
..\..\objects\classobject.c
133
WString
4
COBJ
134
WVList
0
135
WVList
0
15
1
1
0
136
MItem
23
..\..\objects\cobject.c
137
WString
4
COBJ
138
WVList
0
139
WVList
0
15
1
1
0
140
MItem
29
..\..\objects\complexobject.c
141
WString
4
COBJ
142
WVList
0
143
WVList
0
15
1
1
0
144
MItem
26
..\..\objects\fileobject.c
145
WString
4
COBJ
146
WVList
0
147
WVList
0
15
1
1
0
148
MItem
27
..\..\objects\floatobject.c
149
WString
4
COBJ
150
WVList
0
151
WVList
0
15
1
1
0
152
MItem
27
..\..\objects\frameobject.c
153
WString
4
COBJ
154
WVList
0
155
WVList
0
15
1
1
0
156
MItem
26
..\..\objects\funcobject.c
157
WString
4
COBJ
158
WVList
0
159
WVList
0
15
1
1
0
160
MItem
25
..\..\objects\intobject.c
161
WString
4
COBJ
162
WVList
0
163
WVList
0
15
1
1
0
164
MItem
26
..\..\objects\listobject.c
165
WString
4
COBJ
166
WVList
0
167
WVList
0
15
1
1
0
168
MItem
26
..\..\objects\longobject.c
169
WString
4
COBJ
170
WVList
0
171
WVList
0
15
1
1
0
172
MItem
29
..\..\objects\mappingobject.c
173
WString
4
COBJ
174
WVList
0
175
WVList
0
15
1
1
0
176
MItem
28
..\..\objects\methodobject.c
177
WString
4
COBJ
178
WVList
0
179
WVList
0
15
1
1
0
180
MItem
28
..\..\objects\moduleobject.c
181
WString
4
COBJ
182
WVList
0
183
WVList
0
15
1
1
0
184
MItem
22
..\..\objects\object.c
185
WString
4
COBJ
186
WVList
0
187
WVList
0
15
1
1
0
188
MItem
27
..\..\objects\rangeobject.c
189
WString
4
COBJ
190
WVList
0
191
WVList
0
15
1
1
0
192
MItem
28
..\..\objects\stringobject.c
193
WString
4
COBJ
194
WVList
0
195
WVList
0
15
1
1
0
196
MItem
27
..\..\objects\tupleobject.c
197
WString
4
COBJ
198
WVList
0
199
WVList
0
15
1
1
0
200
MItem
26
..\..\objects\typeobject.c
201
WString
4
COBJ
202
WVList
0
203
WVList
0
15
1
1
0
204
MItem
22
..\..\parser\acceler.c
205
WString
4
COBJ
206
WVList
0
207
WVList
0
15
1
1
0
208
MItem
23
..\..\parser\grammar1.c
209
WString
4
COBJ
210
WVList
0
211
WVList
0
15
1
1
0
212
MItem
25
..\..\parser\myreadline.c
213
WString
4
COBJ
214
WVList
0
215
WVList
0
15
1
1
0
216
MItem
19
..\..\parser\node.c
217
WString
4
COBJ
218
WVList
0
219
WVList
0
15
1
1
0
220
MItem
21
..\..\parser\parser.c
221
WString
4
COBJ
222
WVList
0
223
WVList
0
15
1
1
0
224
MItem
23
..\..\parser\parsetok.c
225
WString
4
COBJ
226
WVList
0
227
WVList
0
15
1
1
0
228
MItem
24
..\..\parser\tokenizer.c
229
WString
4
COBJ
230
WVList
0
231
WVList
0
15
1
1
0
232
MItem
26
..\..\python\bltinmodule.c
233
WString
4
COBJ
234
WVList
0
235
WVList
0
15
1
1
0
236
MItem
20
..\..\python\ceval.c
237
WString
4
COBJ
238
WVList
0
239
WVList
0
15
1
1
0
240
MItem
26
..\..\python\cgensupport.c
241
WString
4
COBJ
242
WVList
0
243
WVList
0
15
1
1
0
244
MItem
22
..\..\python\compile.c
245
WString
4
COBJ
246
WVList
0
247
WVList
0
15
1
1
0
248
MItem
21
..\..\python\errors.c
249
WString
4
COBJ
250
WVList
0
251
WVList
0
15
1
1
0
252
MItem
21
..\..\python\frozen.c
253
WString
4
COBJ
254
WVList
0
255
WVList
0
15
1
1
0
256
MItem
22
..\..\python\getargs.c
257
WString
4
COBJ
258
WVList
0
259
WVList
0
15
1
1
0
260
MItem
26
..\..\python\getcompiler.c
261
WString
4
COBJ
262
WVList
0
263
WVList
0
15
1
1
0
264
MItem
27
..\..\python\getcopyright.c
265
WString
4
COBJ
266
WVList
0
267
WVList
0
15
1
1
0
268
MItem
23
..\..\python\getmtime.c
269
WString
4
COBJ
270
WVList
0
271
WVList
0
15
1
1
0
272
MItem
21
..\..\python\getopt.c
273
WString
4
COBJ
274
WVList
0
275
WVList
0
15
1
1
0
276
MItem
26
..\..\python\getplatform.c
277
WString
4
COBJ
278
WVList
0
279
WVList
0
15
1
1
0
280
MItem
25
..\..\python\getversion.c
281
WString
4
COBJ
282
WVList
0
283
WVList
0
15
1
1
0
284
MItem
23
..\..\python\graminit.c
285
WString
4
COBJ
286
WVList
0
287
WVList
0
15
1
1
0
288
MItem
21
..\..\python\import.c
289
WString
4
COBJ
290
WVList
0
291
WVList
0
15
1
1
0
292
MItem
23
..\..\python\importdl.c
293
WString
4
COBJ
294
WVList
0
295
WVList
0
15
1
1
0
296
MItem
22
..\..\python\marshal.c
297
WString
4
COBJ
298
WVList
0
299
WVList
0
15
1
1
0
300
MItem
25
..\..\python\modsupport.c
301
WString
4
COBJ
302
WVList
0
303
WVList
0
15
1
1
0
304
MItem
24
..\..\python\mystrtoul.c
305
WString
4
COBJ
306
WVList
0
307
WVList
0
15
1
1
0
308
MItem
24
..\..\python\pythonrun.c
309
WString
4
COBJ
310
WVList
0
311
WVList
0
15
1
1
0
312
MItem
27
..\..\python\structmember.c
313
WString
4
COBJ
314
WVList
0
315
WVList
0
15
1
1
0
316
MItem
24
..\..\python\sysmodule.c
317
WString
4
COBJ
318
WVList
0
319
WVList
0
15
1
1
0
320
MItem
24
..\..\python\traceback.c
321
WString
4
COBJ
322
WVList
0
323
WVList
0
15
1
1
0
324
MItem
11
..\config.c
325
WString
4
COBJ
326
WVList
0
327
WVList
0
15
1
1
0
328
MItem
16
..\posixmodule.c
329
WString
4
COBJ
330
WVList
0
331
WVList
0
15
1
1
0
40
targetIdent
0
MProject
1
MComponent
0
2
WString
4
OEXE
3
WString
5
oc2en
1
0
0
4
MCommand
0
5
MCommand
0
6
MItem
12
pyth_os2.exe
7
WString
4
OEXE
8
WVList
1
9
MVState
10
WString
7
OS2LINK
11
WString
11
?????Stack:
0
12
WString
4
128k
0
13
WVList
0
-1
1
1
0
14
WPickList
77
15
MItem
3
*.c
16
WString
4
COBJ
17
WVList
5
18
MVState
19
WString
3
WCC
20
WString
25
o?2??Include directories:
0
21
WString
46
..;..\..\Include;$(%watcom)\h;$(%watcom)\h\os2
0
22
MVState
23
WString
3
WCC
24
WString
23
?????Macro definitions:
0
25
WString
13
HAVE_CONFIG_H
0
26
MCState
27
WString
3
WCC
28
WString
31
?????Force enums to be type int
0
1
29
MRState
30
WString
3
WCC
31
WString
20
?????Pack structures
0
0
32
MRState
33
WString
3
WCC
34
WString
21
?????4 byte alignment
0
1
35
WVList
0
-1
1
1
0
36
MItem
27
..\..\modules\arraymodule.c
37
WString
4
COBJ
38
WVList
0
39
WVList
0
15
1
1
0
40
MItem
23
..\..\modules\audioop.c
41
WString
4
COBJ
42
WVList
0
43
WVList
0
15
1
1
0
44
MItem
24
..\..\modules\binascii.c
45
WString
4
COBJ
46
WVList
0
47
WVList
0
15
1
1
0
48
MItem
27
..\..\modules\cmathmodule.c
49
WString
4
COBJ
50
WVList
0
51
WVList
0
15
1
1
0
52
MItem
27
..\..\modules\environment.c
53
WString
4
COBJ
54
WVList
0
55
WVList
0
15
1
1
0
56
MItem
27
..\..\modules\errnomodule.c
57
WString
4
COBJ
58
WVList
0
59
WVList
0
15
1
1
0
60
MItem
23
..\..\modules\getpath.c
61
WString
4
COBJ
62
WVList
0
63
WVList
0
15
1
1
0
64
MItem
23
..\..\modules\imageop.c
65
WString
4
COBJ
66
WVList
0
67
WVList
0
15
1
1
0
68
MItem
20
..\..\modules\main.c
69
WString
4
COBJ
70
WVList
0
71
WVList
0
15
1
1
0
72
MItem
26
..\..\modules\mathmodule.c
73
WString
4
COBJ
74
WVList
0
75
WVList
0
15
1
1
0
76
MItem
20
..\..\modules\md5c.c
77
WString
4
COBJ
78
WVList
0
79
WVList
0
15
1
1
0
80
MItem
25
..\..\modules\md5module.c
81
WString
4
COBJ
82
WVList
0
83
WVList
0
15
1
1
0
84
MItem
25
..\..\modules\newmodule.c
85
WString
4
COBJ
86
WVList
0
87
WVList
0
15
1
1
0
88
MItem
24
..\..\modules\operator.c
89
WString
4
COBJ
90
WVList
0
91
WVList
0
15
1
1
0
92
MItem
27
..\..\modules\posixmodule.c
93
WString
4
COBJ
94
WVList
0
95
WVList
0
15
1
1
0
96
MItem
27
..\..\modules\regexmodule.c
97
WString
4
COBJ
98
WVList
0
99
WVList
0
15
1
1
0
100
MItem
23
..\..\modules\regexpr.c
101
WString
4
COBJ
102
WVList
0
103
WVList
0
15
1
1
0
104
MItem
28
..\..\modules\rgbimgmodule.c
105
WString
4
COBJ
106
WVList
0
107
WVList
0
15
1
1
0
108
MItem
27
..\..\modules\rotormodule.c
109
WString
4
COBJ
110
WVList
0
111
WVList
0
15
1
1
0
112
MItem
28
..\..\modules\signalmodule.c
113
WString
4
COBJ
114
WVList
0
115
WVList
0
15
1
1
0
116
MItem
23
..\..\modules\soundex.c
117
WString
4
COBJ
118
WVList
0
119
WVList
0
15
1
1
0
120
MItem
27
..\..\modules\stropmodule.c
121
WString
4
COBJ
122
WVList
0
123
WVList
0
15
1
1
0
124
MItem
28
..\..\modules\structmodule.c
125
WString
4
COBJ
126
WVList
0
127
WVList
0
15
1
1
0
128
MItem
26
..\..\modules\timemodule.c
129
WString
4
COBJ
130
WVList
0
131
WVList
0
15
1
1
0
132
MItem
26
..\..\modules\yuvconvert.c
133
WString
4
COBJ
134
WVList
0
135
WVList
0
15
1
1
0
136
MItem
24
..\..\objects\abstract.c
137
WString
4
COBJ
138
WVList
0
139
WVList
0
15
1
1
0
140
MItem
28
..\..\objects\accessobject.c
141
WString
4
COBJ
142
WVList
0
143
WVList
0
15
1
1
0
144
MItem
27
..\..\objects\classobject.c
145
WString
4
COBJ
146
WVList
0
147
WVList
0
15
1
1
0
148
MItem
23
..\..\objects\cobject.c
149
WString
4
COBJ
150
WVList
0
151
WVList
0
15
1
1
0
152
MItem
29
..\..\objects\complexobject.c
153
WString
4
COBJ
154
WVList
0
155
WVList
0
15
1
1
0
156
MItem
26
..\..\objects\fileobject.c
157
WString
4
COBJ
158
WVList
0
159
WVList
0
15
1
1
0
160
MItem
27
..\..\objects\floatobject.c
161
WString
4
COBJ
162
WVList
0
163
WVList
0
15
1
1
0
164
MItem
27
..\..\objects\frameobject.c
165
WString
4
COBJ
166
WVList
0
167
WVList
0
15
1
1
0
168
MItem
26
..\..\objects\funcobject.c
169
WString
4
COBJ
170
WVList
0
171
WVList
0
15
1
1
0
172
MItem
25
..\..\objects\intobject.c
173
WString
4
COBJ
174
WVList
0
175
WVList
0
15
1
1
0
176
MItem
26
..\..\objects\listobject.c
177
WString
4
COBJ
178
WVList
0
179
WVList
0
15
1
1
0
180
MItem
26
..\..\objects\longobject.c
181
WString
4
COBJ
182
WVList
0
183
WVList
0
15
1
1
0
184
MItem
29
..\..\objects\mappingobject.c
185
WString
4
COBJ
186
WVList
0
187
WVList
0
15
1
1
0
188
MItem
28
..\..\objects\methodobject.c
189
WString
4
COBJ
190
WVList
0
191
WVList
0
15
1
1
0
192
MItem
28
..\..\objects\moduleobject.c
193
WString
4
COBJ
194
WVList
0
195
WVList
0
15
1
1
0
196
MItem
22
..\..\objects\object.c
197
WString
4
COBJ
198
WVList
0
199
WVList
0
15
1
1
0
200
MItem
27
..\..\objects\rangeobject.c
201
WString
4
COBJ
202
WVList
0
203
WVList
0
15
1
1
0
204
MItem
28
..\..\objects\stringobject.c
205
WString
4
COBJ
206
WVList
0
207
WVList
0
15
1
1
0
208
MItem
27
..\..\objects\tupleobject.c
209
WString
4
COBJ
210
WVList
0
211
WVList
0
15
1
1
0
212
MItem
26
..\..\objects\typeobject.c
213
WString
4
COBJ
214
WVList
0
215
WVList
0
15
1
1
0
216
MItem
22
..\..\parser\acceler.c
217
WString
4
COBJ
218
WVList
0
219
WVList
0
15
1
1
0
220
MItem
23
..\..\parser\grammar1.c
221
WString
4
COBJ
222
WVList
0
223
WVList
0
15
1
1
0
224
MItem
25
..\..\parser\myreadline.c
225
WString
4
COBJ
226
WVList
0
227
WVList
0
15
1
1
0
228
MItem
19
..\..\parser\node.c
229
WString
4
COBJ
230
WVList
0
231
WVList
0
15
1
1
0
232
MItem
21
..\..\parser\parser.c
233
WString
4
COBJ
234
WVList
0
235
WVList
0
15
1
1
0
236
MItem
23
..\..\parser\parsetok.c
237
WString
4
COBJ
238
WVList
0
239
WVList
0
15
1
1
0
240
MItem
24
..\..\parser\tokenizer.c
241
WString
4
COBJ
242
WVList
0
243
WVList
0
15
1
1
0
244
MItem
26
..\..\python\bltinmodule.c
245
WString
4
COBJ
246
WVList
0
247
WVList
0
15
1
1
0
248
MItem
20
..\..\python\ceval.c
249
WString
4
COBJ
250
WVList
0
251
WVList
0
15
1
1
0
252
MItem
26
..\..\python\cgensupport.c
253
WString
4
COBJ
254
WVList
0
255
WVList
0
15
1
1
0
256
MItem
22
..\..\python\compile.c
257
WString
4
COBJ
258
WVList
0
259
WVList
0
15
1
1
0
260
MItem
21
..\..\python\errors.c
261
WString
4
COBJ
262
WVList
0
263
WVList
0
15
1
1
0
264
MItem
21
..\..\python\frozen.c
265
WString
4
COBJ
266
WVList
0
267
WVList
0
15
1
1
0
268
MItem
22
..\..\python\getargs.c
269
WString
4
COBJ
270
WVList
0
271
WVList
0
15
1
1
0
272
MItem
26
..\..\python\getcompiler.c
273
WString
4
COBJ
274
WVList
0
275
WVList
0
15
1
1
0
276
MItem
27
..\..\python\getcopyright.c
277
WString
4
COBJ
278
WVList
0
279
WVList
0
15
1
1
0
280
MItem
23
..\..\python\getmtime.c
281
WString
4
COBJ
282
WVList
0
283
WVList
0
15
1
1
0
284
MItem
21
..\..\python\getopt.c
285
WString
4
COBJ
286
WVList
0
287
WVList
0
15
1
1
0
288
MItem
26
..\..\python\getplatform.c
289
WString
4
COBJ
290
WVList
0
291
WVList
0
15
1
1
0
292
MItem
25
..\..\python\getversion.c
293
WString
4
COBJ
294
WVList
0
295
WVList
0
15
1
1
0
296
MItem
23
..\..\python\graminit.c
297
WString
4
COBJ
298
WVList
0
299
WVList
0
15
1
1
0
300
MItem
21
..\..\python\import.c
301
WString
4
COBJ
302
WVList
0
303
WVList
0
15
1
1
0
304
MItem
23
..\..\python\importdl.c
305
WString
4
COBJ
306
WVList
0
307
WVList
0
15
1
1
0
308
MItem
22
..\..\python\marshal.c
309
WString
4
COBJ
310
WVList
0
311
WVList
0
15
1
1
0
312
MItem
25
..\..\python\modsupport.c
313
WString
4
COBJ
314
WVList
0
315
WVList
0
15
1
1
0
316
MItem
24
..\..\python\mystrtoul.c
317
WString
4
COBJ
318
WVList
0
319
WVList
0
15
1
1
0
320
MItem
24
..\..\python\pythonrun.c
321
WString
4
COBJ
322
WVList
0
323
WVList
0
15
1
1
0
324
MItem
27
..\..\python\structmember.c
325
WString
4
COBJ
326
WVList
0
327
WVList
0
15
1
1
0
328
MItem
24
..\..\python\sysmodule.c
329
WString
4
COBJ
330
WVList
0
331
WVList
0
15
1
1
0
332
MItem
24
..\..\python\traceback.c
333
WString
4
COBJ
334
WVList
0
335
WVList
0
15
1
1
0
336
MItem
11
..\config.c
337
WString
4
COBJ
338
WVList
0
339
WVList
0
15
1
1
0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment