Commit 1bb7734c authored by Guido van Rossum's avatar Guido van Rossum

Rip out Win3.1 and DOS support

parent 56baca32
#! /usr/bin/env 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()
This diff was suppressed by a .gitattributes entry.
NAME
EXETYPE WINDOWS
CODE PRELOAD MOVABLE DISCARDABLE
DATA PRELOAD MOVABLE
HEAPSIZE 4096
40
projectIdent
0
VpeMain
1
WRect
448
128
9136
8576
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
6048
5482
0
0
10
WFileName
20
wat_os2\pyth_os2.tgt
0
22
11
VComponent
12
WRect
240
704
7792
5568
0
0
13
WFileName
20
wat_dos\pyth_dos.tgt
20
29
8
Welcome to the "PC" subdirectory of the Python distribution
***********************************************************
*** Note: the project files for MS VC++ 5.0 and 6.0 are now in the
*** Note: the project files for MS VC++ 6.0 are now in the
*** PCbuild directory. See the file readme.txt there for build
*** instructions. There is some information below that might
*** still be relevant.
......@@ -62,11 +62,6 @@ testpy.py A Python test program. Run this to test your
failed, and how many were skipped. Don't worry about
skipped tests (these test unavailable optional features).
src A subdirectory used only for VC++ version 1.5 Python
source files. See below. The other compilers do not
use it. They reference the actual distribution
directories instead.
Additional files and subdirectories for 32-bit Windows
======================================================
......@@ -85,47 +80,16 @@ example_nt A subdirectory showing how to build an extension as a
DLL.
Microsoft Visual C++ Version 1.5 (16-bit Windows)
=================================================
Since VC++1.5 does not handle long file names, it is necessary
to run the "makesrc.exe" program in this directory to copy
Python files from the distribution to the directory "src"
with shortened names. Included file names are shortened too.
Do this before you attempt to build Python.
The "makesrc.exe" program is a native NT program, and you must
have NT, Windows 95 or Win32s to run it. Otherwise you will need
to copy distribution files to src yourself.
The makefiles are named *.mak and are located in directories
starting with "vc15_". NOTE: When dependencies are scanned
VC++ will create dependencies for directories which are not
used because it fails to evaluate "#define" properly. You
must manaully edit makefiles (*.mak) to remove references to
"sys/" and other bad directories.
vc15_lib A static Python library. Create this first because is
is required for vc15_w31.
vc15_w31 A Windows 3.1x Python QuickWin (console-mode)
Python including sockets. Requires vc15_lib.
Watcom C++ Version 10.6
=======================
The project file for the Watcom compiler is ./python.wpj.
It will build Watcom versions in the directories wat_*.
wat_dos A 32-bit extended DOS Python (console-mode) using the
dos4gw DOS extender. Sockets are not included.
wat_os2 A 32-bit OS/2 Python (console-mode).
Sockets are not included.
IBM VisualAge C/C++ for OS/2
============================
See os2vacpp/readme.txt. This platform is supported by Jeff Rush.
Note for Windows 3.x and DOS users
==================================
Neither Windows 3.x nor DOS is supported any more. The last Python
version that supported these was Python 1.5.2; the support files were
present in Python 2.0 but weren't updated, and it is not our intention
to support these platforms for Python 2.x.
This directory is used only for VC++ version 1.5 Python source files.
The "makesrc.exe" program copies the sources here with shortened
names. See ../readme.txt.
#include <stdio.h>
#include <direct.h>
#include <string.h>
/* Copy files from source directories to ./src changing
file names and #include names to 8x3 lower case */
char *usage = "You must be in the \"pc\" directory.\n";
char *list[] = {"..\\Include", "..\\Modules", "..\\Objects", "..\\Parser", "..\\Python", ".", 0};
int
main(int argc, char ** argv)
{
DIR *dpath;
struct dirent *dir;
int len;
char **plist;
char *pt1, *pt2, *name;
char dest_path[256], src_path[256], buf256[256];
FILE *fpin, *fpout;
for (plist = list; *plist; plist++){
if ((dpath = opendir(*plist)) == NULL){
printf(usage);
return 1;
}
while (dir = readdir(dpath)){
name = dir->d_name;
len = strlen(name);
if (len > 2 && name[len - 2] == '.' &&
(name[len - 1] == 'c' || name[len - 1] == 'h')){
strcpy(buf256, name);
if (len > 10){
buf256[8] = '.';
buf256[9] = name[len - 1];
buf256[10] = 0;
}
strlwr(buf256);
strncpy(src_path, *plist, 256);
strncat(src_path, "\\", 256);
strncat(src_path, name, 256);
strncpy(dest_path, ".\\src\\", 256);
strncat(dest_path, buf256, 256);
printf("Copying %-30s to %s\n", src_path, dest_path);
fpin = fopen(src_path, "r");
fpout = fopen(dest_path, "w");
while (fgets(buf256, 256, fpin)){
if (!strncmp(buf256, "#include", 8)){
strlwr(buf256);
if ((pt1 = strstr(buf256, "\"")) &&
(pt2 = strstr(buf256, ".")) &&
(*(pt2 + 1) == 'h') &&
(pt2 - pt1 > 9)){
for (pt1 += 9; *pt2; pt1++, pt2++)
*pt1 = *pt2;
*pt1 = 0;
}
}
fputs(buf256, fpout);
}
fclose(fpin);
fclose(fpout);
}
}
closedir(dpath);
}
return 0;
}
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
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
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
# 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.1\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.1\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.1\PC\PYTH_W31.DEF
!endif
!if [if exist MSVC.BND del MSVC.BND]
!endif
SBRS = MAIN.SBR \
GETOPT.SBR \
SELECTMO.SBR \
SOCKETMO.SBR \
PYTHON.SBR
MAIN_DEP = n:\python\python~1.1\pc\src\python.h \
n:\python\python~1.1\pc\src\config.h \
n:\python\python~1.1\pc\src\myproto.h \
n:\python\python~1.1\pc\src\object.h \
n:\python\python~1.1\pc\src\objimpl.h \
n:\python\python~1.1\pc\src\pydebug.h \
n:\python\python~1.1\pc\src\intobjec.h \
n:\python\python~1.1\pc\src\longobje.h \
n:\python\python~1.1\pc\src\floatobj.h \
n:\python\python~1.1\pc\src\complexo.h \
n:\python\python~1.1\pc\src\rangeobj.h \
n:\python\python~1.1\pc\src\stringob.h \
n:\python\python~1.1\pc\src\tupleobj.h \
n:\python\python~1.1\pc\src\listobje.h \
n:\python\python~1.1\pc\src\dictobje.h \
n:\python\python~1.1\pc\src\methodob.h \
n:\python\python~1.1\pc\src\moduleob.h \
n:\python\python~1.1\pc\src\funcobje.h \
n:\python\python~1.1\pc\src\classobj.h \
n:\python\python~1.1\pc\src\fileobje.h \
n:\python\python~1.1\pc\src\cobject.h \
n:\python\python~1.1\pc\src\tracebac.h \
n:\python\python~1.1\pc\src\sliceobj.h \
n:\python\python~1.1\pc\src\pyerrors.h \
n:\python\python~1.1\pc\src\mymalloc.h \
n:\python\python~1.1\pc\src\pystate.h \
n:\python\python~1.1\pc\src\modsuppo.h \
n:\python\python~1.1\pc\src\ceval.h \
n:\python\python~1.1\pc\src\pythonru.h \
n:\python\python~1.1\pc\src\sysmodul.h \
n:\python\python~1.1\pc\src\intrchec.h \
n:\python\python~1.1\pc\src\import.h \
n:\python\python~1.1\pc\src\abstract.h \
n:\python\python~1.1\pc\src\pyfpe.h \
n:\python\python~1.1\pc\src\osdefs.h
GETOPT_DEP =
SELECTMO_DEP = n:\python\python~1.1\pc\src\python.h \
n:\python\python~1.1\pc\src\config.h \
n:\python\python~1.1\pc\src\myproto.h \
n:\python\python~1.1\pc\src\object.h \
n:\python\python~1.1\pc\src\objimpl.h \
n:\python\python~1.1\pc\src\pydebug.h \
n:\python\python~1.1\pc\src\intobjec.h \
n:\python\python~1.1\pc\src\longobje.h \
n:\python\python~1.1\pc\src\floatobj.h \
n:\python\python~1.1\pc\src\complexo.h \
n:\python\python~1.1\pc\src\rangeobj.h \
n:\python\python~1.1\pc\src\stringob.h \
n:\python\python~1.1\pc\src\tupleobj.h \
n:\python\python~1.1\pc\src\listobje.h \
n:\python\python~1.1\pc\src\dictobje.h \
n:\python\python~1.1\pc\src\methodob.h \
n:\python\python~1.1\pc\src\moduleob.h \
n:\python\python~1.1\pc\src\funcobje.h \
n:\python\python~1.1\pc\src\classobj.h \
n:\python\python~1.1\pc\src\fileobje.h \
n:\python\python~1.1\pc\src\cobject.h \
n:\python\python~1.1\pc\src\tracebac.h \
n:\python\python~1.1\pc\src\sliceobj.h \
n:\python\python~1.1\pc\src\pyerrors.h \
n:\python\python~1.1\pc\src\mymalloc.h \
n:\python\python~1.1\pc\src\pystate.h \
n:\python\python~1.1\pc\src\modsuppo.h \
n:\python\python~1.1\pc\src\ceval.h \
n:\python\python~1.1\pc\src\pythonru.h \
n:\python\python~1.1\pc\src\sysmodul.h \
n:\python\python~1.1\pc\src\intrchec.h \
n:\python\python~1.1\pc\src\import.h \
n:\python\python~1.1\pc\src\abstract.h \
n:\python\python~1.1\pc\src\pyfpe.h \
c:\msvc\include\winsock.h \
n:\python\python~1.1\pc\src\myselect.h \
n:\python\python~1.1\pc\src\mytime.h
SOCKETMO_DEP = n:\python\python~1.1\pc\src\python.h \
n:\python\python~1.1\pc\src\config.h \
n:\python\python~1.1\pc\src\myproto.h \
n:\python\python~1.1\pc\src\object.h \
n:\python\python~1.1\pc\src\objimpl.h \
n:\python\python~1.1\pc\src\pydebug.h \
n:\python\python~1.1\pc\src\intobjec.h \
n:\python\python~1.1\pc\src\longobje.h \
n:\python\python~1.1\pc\src\floatobj.h \
n:\python\python~1.1\pc\src\complexo.h \
n:\python\python~1.1\pc\src\rangeobj.h \
n:\python\python~1.1\pc\src\stringob.h \
n:\python\python~1.1\pc\src\tupleobj.h \
n:\python\python~1.1\pc\src\listobje.h \
n:\python\python~1.1\pc\src\dictobje.h \
n:\python\python~1.1\pc\src\methodob.h \
n:\python\python~1.1\pc\src\moduleob.h \
n:\python\python~1.1\pc\src\funcobje.h \
n:\python\python~1.1\pc\src\classobj.h \
n:\python\python~1.1\pc\src\fileobje.h \
n:\python\python~1.1\pc\src\cobject.h \
n:\python\python~1.1\pc\src\tracebac.h \
n:\python\python~1.1\pc\src\sliceobj.h \
n:\python\python~1.1\pc\src\pyerrors.h \
n:\python\python~1.1\pc\src\mymalloc.h \
n:\python\python~1.1\pc\src\pystate.h \
n:\python\python~1.1\pc\src\modsuppo.h \
n:\python\python~1.1\pc\src\ceval.h \
n:\python\python~1.1\pc\src\pythonru.h \
n:\python\python~1.1\pc\src\sysmodul.h \
n:\python\python~1.1\pc\src\intrchec.h \
n:\python\python~1.1\pc\src\import.h \
n:\python\python~1.1\pc\src\abstract.h \
n:\python\python~1.1\pc\src\pyfpe.h \
n:\python\python~1.1\pc\src\thread.h \
n:\python\python~1.1\pc\src\mytime.h \
c:\msvc\include\winsock.h
PYTHON_DEP =
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
PYTHON.OBJ: ..\SRC\PYTHON.C $(PYTHON_DEP)
$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ..\SRC\PYTHON.C
$(PROJ).EXE:: MAIN.OBJ GETOPT.OBJ SELECTMO.OBJ SOCKETMO.OBJ PYTHON.OBJ $(OBJS_EXT) $(DEFFILE)
echo >NUL @<<$(PROJ).CRF
MAIN.OBJ +
GETOPT.OBJ +
SELECTMO.OBJ +
SOCKETMO.OBJ +
PYTHON.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
NAME pyth_dos
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,cpickle.obj,cstringio.obj,errnomodule.obj,getbuildinfo.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,pcremodule.obj,posixmodule.obj,pypcre.obj,python.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,classobject.obj,cobject.obj,complexobject.obj,dictobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,sliceobject.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,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,pystate.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,getpathp.obj
!define BLANK ""
n:\python\python-1.5.1\pc\wat_dos\arraymodule.obj : n:\python\python-1.5.1\m&
odules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\audioop.obj : n:\python\python-1.5.1\modul&
es\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\binascii.obj : n:\python\python-1.5.1\modu&
les\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\cmathmodule.obj : n:\python\python-1.5.1\m&
odules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\cpickle.obj : n:\python\python-1.5.1\modul&
es\cpickle.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\cpickle.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.5.1\pc\wat_dos\cstringio.obj : n:\python\python-1.5.1\mod&
ules\cstringio.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\cstringio.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.5.1\pc\wat_dos\errnomodule.obj : n:\python\python-1.5.1\m&
odules\errnomodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getbuildinfo.obj : n:\python\python-1.5.1\&
modules\getbuildinfo.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\getbuildinfo.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.5.1\pc\wat_dos\imageop.obj : n:\python\python-1.5.1\modul&
es\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\main.obj : n:\python\python-1.5.1\modules\&
main.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\mathmodule.obj : n:\python\python-1.5.1\mo&
dules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\md5c.obj : n:\python\python-1.5.1\modules\&
md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\md5module.obj : n:\python\python-1.5.1\mod&
ules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\newmodule.obj : n:\python\python-1.5.1\mod&
ules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\operator.obj : n:\python\python-1.5.1\modu&
les\operator.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\pcremodule.obj : n:\python\python-1.5.1\mo&
dules\pcremodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\pcremodule.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.5.1\pc\wat_dos\posixmodule.obj : n:\python\python-1.5.1\m&
odules\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\pypcre.obj : n:\python\python-1.5.1\module&
s\pypcre.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\pypcre.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.5.1\pc\wat_dos\python.obj : n:\python\python-1.5.1\module&
s\python.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\modules\python.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.5.1\pc\wat_dos\regexmodule.obj : n:\python\python-1.5.1\m&
odules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\regexpr.obj : n:\python\python-1.5.1\modul&
es\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\rgbimgmodule.obj : n:\python\python-1.5.1\&
modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\rotormodule.obj : n:\python\python-1.5.1\m&
odules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\signalmodule.obj : n:\python\python-1.5.1\&
modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\soundex.obj : n:\python\python-1.5.1\modul&
es\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\stropmodule.obj : n:\python\python-1.5.1\m&
odules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\structmodule.obj : n:\python\python-1.5.1\&
modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\timemodule.obj : n:\python\python-1.5.1\mo&
dules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\yuvconvert.obj : n:\python\python-1.5.1\mo&
dules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\abstract.obj : n:\python\python-1.5.1\obje&
cts\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\classobject.obj : n:\python\python-1.5.1\o&
bjects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\cobject.obj : n:\python\python-1.5.1\objec&
ts\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\complexobject.obj : n:\python\python-1.5.1&
\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\dictobject.obj : n:\python\python-1.5.1\ob&
jects\dictobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\objects\dictobject.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.5.1\pc\wat_dos\fileobject.obj : n:\python\python-1.5.1\ob&
jects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\floatobject.obj : n:\python\python-1.5.1\o&
bjects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\frameobject.obj : n:\python\python-1.5.1\o&
bjects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\funcobject.obj : n:\python\python-1.5.1\ob&
jects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\intobject.obj : n:\python\python-1.5.1\obj&
ects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\listobject.obj : n:\python\python-1.5.1\ob&
jects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\longobject.obj : n:\python\python-1.5.1\ob&
jects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\methodobject.obj : n:\python\python-1.5.1\&
objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\moduleobject.obj : n:\python\python-1.5.1\&
objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\object.obj : n:\python\python-1.5.1\object&
s\object.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\rangeobject.obj : n:\python\python-1.5.1\o&
bjects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\sliceobject.obj : n:\python\python-1.5.1\o&
bjects\sliceobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\objects\sliceobject.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.5.1\pc\wat_dos\stringobject.obj : n:\python\python-1.5.1\&
objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\tupleobject.obj : n:\python\python-1.5.1\o&
bjects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\typeobject.obj : n:\python\python-1.5.1\ob&
jects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\acceler.obj : n:\python\python-1.5.1\parse&
r\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\grammar1.obj : n:\python\python-1.5.1\pars&
er\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\myreadline.obj : n:\python\python-1.5.1\pa&
rser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\node.obj : n:\python\python-1.5.1\parser\n&
ode.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\parser.obj : n:\python\python-1.5.1\parser&
\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\parsetok.obj : n:\python\python-1.5.1\pars&
er\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\tokenizer.obj : n:\python\python-1.5.1\par&
ser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\bltinmodule.obj : n:\python\python-1.5.1\p&
ython\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\ceval.obj : n:\python\python-1.5.1\python\&
ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\compile.obj : n:\python\python-1.5.1\pytho&
n\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\errors.obj : n:\python\python-1.5.1\python&
\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\frozen.obj : n:\python\python-1.5.1\python&
\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getargs.obj : n:\python\python-1.5.1\pytho&
n\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getcompiler.obj : n:\python\python-1.5.1\p&
ython\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getcopyright.obj : n:\python\python-1.5.1\&
python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getmtime.obj : n:\python\python-1.5.1\pyth&
on\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getopt.obj : n:\python\python-1.5.1\python&
\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getplatform.obj : n:\python\python-1.5.1\p&
ython\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getversion.obj : n:\python\python-1.5.1\py&
thon\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\graminit.obj : n:\python\python-1.5.1\pyth&
on\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\import.obj : n:\python\python-1.5.1\python&
\import.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\importdl.obj : n:\python\python-1.5.1\pyth&
on\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\marshal.obj : n:\python\python-1.5.1\pytho&
n\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\modsupport.obj : n:\python\python-1.5.1\py&
thon\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\mystrtoul.obj : n:\python\python-1.5.1\pyt&
hon\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\pystate.obj : n:\python\python-1.5.1\pytho&
n\pystate.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\..\python\pystate.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.5.1\pc\wat_dos\pythonrun.obj : n:\python\python-1.5.1\pyt&
hon\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\structmember.obj : n:\python\python-1.5.1\&
python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\sysmodule.obj : n:\python\python-1.5.1\pyt&
hon\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\traceback.obj : n:\python\python-1.5.1\pyt&
hon\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\config.obj : n:\python\python-1.5.1\pc\con&
fig.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_dos\getpathp.obj : n:\python\python-1.5.1\pc\g&
etpathp.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
*wcc386 ..\getpathp.c -i=..; -i=..\..\Include;C:\WATCOM\h -w4 -e25 -dHAVE_C&
ONFIG_H -ei -zp4 -zq -otexan -d1 -5r -bt=dos -mf
n:\python\python-1.5.1\pc\wat_dos\pyth_dos.exe : n:\python\python-1.5.1\pc\w&
at_dos\arraymodule.obj n:\python\python-1.5.1\pc\wat_dos\audioop.obj n:\pyth&
on\python-1.5.1\pc\wat_dos\binascii.obj n:\python\python-1.5.1\pc\wat_dos\cm&
athmodule.obj n:\python\python-1.5.1\pc\wat_dos\cpickle.obj n:\python\python&
-1.5.1\pc\wat_dos\cstringio.obj n:\python\python-1.5.1\pc\wat_dos\errnomodul&
e.obj n:\python\python-1.5.1\pc\wat_dos\getbuildinfo.obj n:\python\python-1.&
5.1\pc\wat_dos\imageop.obj n:\python\python-1.5.1\pc\wat_dos\main.obj n:\pyt&
hon\python-1.5.1\pc\wat_dos\mathmodule.obj n:\python\python-1.5.1\pc\wat_dos&
\md5c.obj n:\python\python-1.5.1\pc\wat_dos\md5module.obj n:\python\python-1&
.5.1\pc\wat_dos\newmodule.obj n:\python\python-1.5.1\pc\wat_dos\operator.obj&
n:\python\python-1.5.1\pc\wat_dos\pcremodule.obj n:\python\python-1.5.1\pc\&
wat_dos\posixmodule.obj n:\python\python-1.5.1\pc\wat_dos\pypcre.obj n:\pyth&
on\python-1.5.1\pc\wat_dos\python.obj n:\python\python-1.5.1\pc\wat_dos\rege&
xmodule.obj n:\python\python-1.5.1\pc\wat_dos\regexpr.obj n:\python\python-1&
.5.1\pc\wat_dos\rgbimgmodule.obj n:\python\python-1.5.1\pc\wat_dos\rotormodu&
le.obj n:\python\python-1.5.1\pc\wat_dos\signalmodule.obj n:\python\python-1&
.5.1\pc\wat_dos\soundex.obj n:\python\python-1.5.1\pc\wat_dos\stropmodule.ob&
j n:\python\python-1.5.1\pc\wat_dos\structmodule.obj n:\python\python-1.5.1\&
pc\wat_dos\timemodule.obj n:\python\python-1.5.1\pc\wat_dos\yuvconvert.obj n&
:\python\python-1.5.1\pc\wat_dos\abstract.obj n:\python\python-1.5.1\pc\wat_&
dos\classobject.obj n:\python\python-1.5.1\pc\wat_dos\cobject.obj n:\python\&
python-1.5.1\pc\wat_dos\complexobject.obj n:\python\python-1.5.1\pc\wat_dos\&
dictobject.obj n:\python\python-1.5.1\pc\wat_dos\fileobject.obj n:\python\py&
thon-1.5.1\pc\wat_dos\floatobject.obj n:\python\python-1.5.1\pc\wat_dos\fram&
eobject.obj n:\python\python-1.5.1\pc\wat_dos\funcobject.obj n:\python\pytho&
n-1.5.1\pc\wat_dos\intobject.obj n:\python\python-1.5.1\pc\wat_dos\listobjec&
t.obj n:\python\python-1.5.1\pc\wat_dos\longobject.obj n:\python\python-1.5.&
1\pc\wat_dos\methodobject.obj n:\python\python-1.5.1\pc\wat_dos\moduleobject&
.obj n:\python\python-1.5.1\pc\wat_dos\object.obj n:\python\python-1.5.1\pc\&
wat_dos\rangeobject.obj n:\python\python-1.5.1\pc\wat_dos\sliceobject.obj n:&
\python\python-1.5.1\pc\wat_dos\stringobject.obj n:\python\python-1.5.1\pc\w&
at_dos\tupleobject.obj n:\python\python-1.5.1\pc\wat_dos\typeobject.obj n:\p&
ython\python-1.5.1\pc\wat_dos\acceler.obj n:\python\python-1.5.1\pc\wat_dos\&
grammar1.obj n:\python\python-1.5.1\pc\wat_dos\myreadline.obj n:\python\pyth&
on-1.5.1\pc\wat_dos\node.obj n:\python\python-1.5.1\pc\wat_dos\parser.obj n:&
\python\python-1.5.1\pc\wat_dos\parsetok.obj n:\python\python-1.5.1\pc\wat_d&
os\tokenizer.obj n:\python\python-1.5.1\pc\wat_dos\bltinmodule.obj n:\python&
\python-1.5.1\pc\wat_dos\ceval.obj n:\python\python-1.5.1\pc\wat_dos\compile&
.obj n:\python\python-1.5.1\pc\wat_dos\errors.obj n:\python\python-1.5.1\pc\&
wat_dos\frozen.obj n:\python\python-1.5.1\pc\wat_dos\getargs.obj n:\python\p&
ython-1.5.1\pc\wat_dos\getcompiler.obj n:\python\python-1.5.1\pc\wat_dos\get&
copyright.obj n:\python\python-1.5.1\pc\wat_dos\getmtime.obj n:\python\pytho&
n-1.5.1\pc\wat_dos\getopt.obj n:\python\python-1.5.1\pc\wat_dos\getplatform.&
obj n:\python\python-1.5.1\pc\wat_dos\getversion.obj n:\python\python-1.5.1\&
pc\wat_dos\graminit.obj n:\python\python-1.5.1\pc\wat_dos\import.obj n:\pyth&
on\python-1.5.1\pc\wat_dos\importdl.obj n:\python\python-1.5.1\pc\wat_dos\ma&
rshal.obj n:\python\python-1.5.1\pc\wat_dos\modsupport.obj n:\python\python-&
1.5.1\pc\wat_dos\mystrtoul.obj n:\python\python-1.5.1\pc\wat_dos\pystate.obj&
n:\python\python-1.5.1\pc\wat_dos\pythonrun.obj n:\python\python-1.5.1\pc\w&
at_dos\structmember.obj n:\python\python-1.5.1\pc\wat_dos\sysmodule.obj n:\p&
ython\python-1.5.1\pc\wat_dos\traceback.obj n:\python\python-1.5.1\pc\wat_do&
s\config.obj n:\python\python-1.5.1\pc\wat_dos\getpathp.obj .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_dos
@%write pyth_dos.lk1 NAME pyth_dos
@%append pyth_dos.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
ule.obj,cpickle.obj,cstringio.obj,errnomodule.obj,getbuildinfo.obj,imageop.o&
bj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj&
,pcremodule.obj,posixmodule.obj,pypcre.obj,python.obj,regexmodule.obj,regexp&
r.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmod&
ule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,classobj&
ect.obj,cobject.obj,complexobject.obj,dictobject.obj,fileobject.obj,floatobj&
ect.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobje&
ct.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,sliceobj&
ect.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1&
.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodu&
le.obj,ceval.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.o&
bj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,g&
raminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj&
,pystate.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,conf&
ig.obj,getpathp.obj
@%append pyth_dos.lk1
*wlink SYS dos4g op m op st=128K op c 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
0
4
MCommand
0
5
MCommand
0
6
MItem
12
pyth_dos.exe
7
WString
3
EXE
8
WVList
3
9
MVState
10
WString
5
WLINK
11
WString
11
?????Stack:
1
12
WString
4
128k
0
13
MVState
14
WString
5
WLINK
15
WString
11
?????Stack:
0
16
WString
4
128K
0
17
MCState
18
WString
5
WLINK
19
WString
24
?????Case sensitive link
0
1
20
WVList
0
-1
1
1
0
21
WPickList
82
22
MItem
3
*.c
23
WString
4
COBJ
24
WVList
10
25
MVState
26
WString
3
WCC
27
WString
25
d????Include directories:
0
28
WString
30
..; ..\..\Include;$(%watcom)\h
0
29
MVState
30
WString
3
WCC
31
WString
23
?????Macro definitions:
0
32
WString
13
HAVE_CONFIG_H
0
33
MCState
34
WString
3
WCC
35
WString
31
?????Force enums to be type int
0
1
36
MRState
37
WString
3
WCC
38
WString
20
?????Pack structures
0
0
39
MRState
40
WString
3
WCC
41
WString
21
?????4 byte alignment
0
1
42
MVState
43
WString
3
WCC
44
WString
25
d????Include directories:
1
45
WString
29
..;..\..\Include;$(%watcom)\h
0
46
MVState
47
WString
3
WCC
48
WString
23
?????Macro definitions:
1
49
WString
13
HAVE_CONFIG_H
0
50
MCState
51
WString
3
WCC
52
WString
31
?????Force enums to be type int
1
1
53
MRState
54
WString
3
WCC
55
WString
20
?????Pack structures
1
0
56
MRState
57
WString
3
WCC
58
WString
21
?????4 byte alignment
1
1
59
WVList
0
-1
1
1
0
60
MItem
27
..\..\modules\arraymodule.c
61
WString
4
COBJ
62
WVList
0
63
WVList
0
22
1
1
0
64
MItem
23
..\..\modules\audioop.c
65
WString
4
COBJ
66
WVList
0
67
WVList
0
22
1
1
0
68
MItem
24
..\..\modules\binascii.c
69
WString
4
COBJ
70
WVList
0
71
WVList
0
22
1
1
0
72
MItem
27
..\..\modules\cmathmodule.c
73
WString
4
COBJ
74
WVList
0
75
WVList
0
22
1
1
0
76
MItem
23
..\..\modules\cpickle.c
77
WString
4
COBJ
78
WVList
0
79
WVList
0
22
1
1
0
80
MItem
25
..\..\modules\cstringio.c
81
WString
4
COBJ
82
WVList
0
83
WVList
0
22
1
1
0
84
MItem
27
..\..\modules\errnomodule.c
85
WString
4
COBJ
86
WVList
0
87
WVList
0
22
1
1
0
88
MItem
28
..\..\modules\getbuildinfo.c
89
WString
4
COBJ
90
WVList
0
91
WVList
0
22
1
1
0
92
MItem
23
..\..\modules\imageop.c
93
WString
4
COBJ
94
WVList
0
95
WVList
0
22
1
1
0
96
MItem
20
..\..\modules\main.c
97
WString
4
COBJ
98
WVList
0
99
WVList
0
22
1
1
0
100
MItem
26
..\..\modules\mathmodule.c
101
WString
4
COBJ
102
WVList
0
103
WVList
0
22
1
1
0
104
MItem
20
..\..\modules\md5c.c
105
WString
4
COBJ
106
WVList
0
107
WVList
0
22
1
1
0
108
MItem
25
..\..\modules\md5module.c
109
WString
4
COBJ
110
WVList
0
111
WVList
0
22
1
1
0
112
MItem
25
..\..\modules\newmodule.c
113
WString
4
COBJ
114
WVList
0
115
WVList
0
22
1
1
0
116
MItem
24
..\..\modules\operator.c
117
WString
4
COBJ
118
WVList
0
119
WVList
0
22
1
1
0
120
MItem
26
..\..\modules\pcremodule.c
121
WString
4
COBJ
122
WVList
0
123
WVList
0
22
1
1
0
124
MItem
27
..\..\modules\posixmodule.c
125
WString
4
COBJ
126
WVList
0
127
WVList
0
22
1
1
0
128
MItem
22
..\..\modules\pypcre.c
129
WString
4
COBJ
130
WVList
0
131
WVList
0
22
1
1
0
132
MItem
22
..\..\modules\python.c
133
WString
4
COBJ
134
WVList
0
135
WVList
0
22
1
1
0
136
MItem
27
..\..\modules\regexmodule.c
137
WString
4
COBJ
138
WVList
0
139
WVList
0
22
1
1
0
140
MItem
23
..\..\modules\regexpr.c
141
WString
4
COBJ
142
WVList
0
143
WVList
0
22
1
1
0
144
MItem
28
..\..\modules\rgbimgmodule.c
145
WString
4
COBJ
146
WVList
0
147
WVList
0
22
1
1
0
148
MItem
27
..\..\modules\rotormodule.c
149
WString
4
COBJ
150
WVList
0
151
WVList
0
22
1
1
0
152
MItem
28
..\..\modules\signalmodule.c
153
WString
4
COBJ
154
WVList
0
155
WVList
0
22
1
1
0
156
MItem
23
..\..\modules\soundex.c
157
WString
4
COBJ
158
WVList
0
159
WVList
0
22
1
1
0
160
MItem
27
..\..\modules\stropmodule.c
161
WString
4
COBJ
162
WVList
0
163
WVList
0
22
1
1
0
164
MItem
28
..\..\modules\structmodule.c
165
WString
4
COBJ
166
WVList
0
167
WVList
0
22
1
1
0
168
MItem
26
..\..\modules\timemodule.c
169
WString
4
COBJ
170
WVList
0
171
WVList
0
22
1
1
0
172
MItem
26
..\..\modules\yuvconvert.c
173
WString
4
COBJ
174
WVList
0
175
WVList
0
22
1
1
0
176
MItem
24
..\..\objects\abstract.c
177
WString
4
COBJ
178
WVList
0
179
WVList
0
22
1
1
0
180
MItem
27
..\..\objects\classobject.c
181
WString
4
COBJ
182
WVList
0
183
WVList
0
22
1
1
0
184
MItem
23
..\..\objects\cobject.c
185
WString
4
COBJ
186
WVList
0
187
WVList
0
22
1
1
0
188
MItem
29
..\..\objects\complexobject.c
189
WString
4
COBJ
190
WVList
0
191
WVList
0
22
1
1
0
192
MItem
26
..\..\objects\dictobject.c
193
WString
4
COBJ
194
WVList
0
195
WVList
0
22
1
1
0
196
MItem
26
..\..\objects\fileobject.c
197
WString
4
COBJ
198
WVList
0
199
WVList
0
22
1
1
0
200
MItem
27
..\..\objects\floatobject.c
201
WString
4
COBJ
202
WVList
0
203
WVList
0
22
1
1
0
204
MItem
27
..\..\objects\frameobject.c
205
WString
4
COBJ
206
WVList
0
207
WVList
0
22
1
1
0
208
MItem
26
..\..\objects\funcobject.c
209
WString
4
COBJ
210
WVList
0
211
WVList
0
22
1
1
0
212
MItem
25
..\..\objects\intobject.c
213
WString
4
COBJ
214
WVList
0
215
WVList
0
22
1
1
0
216
MItem
26
..\..\objects\listobject.c
217
WString
4
COBJ
218
WVList
0
219
WVList
0
22
1
1
0
220
MItem
26
..\..\objects\longobject.c
221
WString
4
COBJ
222
WVList
0
223
WVList
0
22
1
1
0
224
MItem
28
..\..\objects\methodobject.c
225
WString
4
COBJ
226
WVList
0
227
WVList
0
22
1
1
0
228
MItem
28
..\..\objects\moduleobject.c
229
WString
4
COBJ
230
WVList
0
231
WVList
0
22
1
1
0
232
MItem
22
..\..\objects\object.c
233
WString
4
COBJ
234
WVList
0
235
WVList
0
22
1
1
0
236
MItem
27
..\..\objects\rangeobject.c
237
WString
4
COBJ
238
WVList
0
239
WVList
0
22
1
1
0
240
MItem
27
..\..\objects\sliceobject.c
241
WString
4
COBJ
242
WVList
0
243
WVList
0
22
1
1
0
244
MItem
28
..\..\objects\stringobject.c
245
WString
4
COBJ
246
WVList
0
247
WVList
0
22
1
1
0
248
MItem
27
..\..\objects\tupleobject.c
249
WString
4
COBJ
250
WVList
0
251
WVList
0
22
1
1
0
252
MItem
26
..\..\objects\typeobject.c
253
WString
4
COBJ
254
WVList
0
255
WVList
0
22
1
1
0
256
MItem
22
..\..\parser\acceler.c
257
WString
4
COBJ
258
WVList
0
259
WVList
0
22
1
1
0
260
MItem
23
..\..\parser\grammar1.c
261
WString
4
COBJ
262
WVList
0
263
WVList
0
22
1
1
0
264
MItem
25
..\..\parser\myreadline.c
265
WString
4
COBJ
266
WVList
0
267
WVList
0
22
1
1
0
268
MItem
19
..\..\parser\node.c
269
WString
4
COBJ
270
WVList
0
271
WVList
0
22
1
1
0
272
MItem
21
..\..\parser\parser.c
273
WString
4
COBJ
274
WVList
0
275
WVList
0
22
1
1
0
276
MItem
23
..\..\parser\parsetok.c
277
WString
4
COBJ
278
WVList
0
279
WVList
0
22
1
1
0
280
MItem
24
..\..\parser\tokenizer.c
281
WString
4
COBJ
282
WVList
0
283
WVList
0
22
1
1
0
284
MItem
26
..\..\python\bltinmodule.c
285
WString
4
COBJ
286
WVList
0
287
WVList
0
22
1
1
0
288
MItem
20
..\..\python\ceval.c
289
WString
4
COBJ
290
WVList
0
291
WVList
0
22
1
1
0
292
MItem
22
..\..\python\compile.c
293
WString
4
COBJ
294
WVList
0
295
WVList
0
22
1
1
0
296
MItem
21
..\..\python\errors.c
297
WString
4
COBJ
298
WVList
0
299
WVList
0
22
1
1
0
300
MItem
21
..\..\python\frozen.c
301
WString
4
COBJ
302
WVList
0
303
WVList
0
22
1
1
0
304
MItem
22
..\..\python\getargs.c
305
WString
4
COBJ
306
WVList
0
307
WVList
0
22
1
1
0
308
MItem
26
..\..\python\getcompiler.c
309
WString
4
COBJ
310
WVList
0
311
WVList
0
22
1
1
0
312
MItem
27
..\..\python\getcopyright.c
313
WString
4
COBJ
314
WVList
0
315
WVList
0
22
1
1
0
316
MItem
23
..\..\python\getmtime.c
317
WString
4
COBJ
318
WVList
0
319
WVList
0
22
1
1
0
320
MItem
21
..\..\python\getopt.c
321
WString
4
COBJ
322
WVList
0
323
WVList
0
22
1
1
0
324
MItem
26
..\..\python\getplatform.c
325
WString
4
COBJ
326
WVList
0
327
WVList
0
22
1
1
0
328
MItem
25
..\..\python\getversion.c
329
WString
4
COBJ
330
WVList
0
331
WVList
0
22
1
1
0
332
MItem
23
..\..\python\graminit.c
333
WString
4
COBJ
334
WVList
0
335
WVList
0
22
1
1
0
336
MItem
21
..\..\python\import.c
337
WString
4
COBJ
338
WVList
0
339
WVList
0
22
1
1
0
340
MItem
23
..\..\python\importdl.c
341
WString
4
COBJ
342
WVList
0
343
WVList
0
22
1
1
0
344
MItem
22
..\..\python\marshal.c
345
WString
4
COBJ
346
WVList
0
347
WVList
0
22
1
1
0
348
MItem
25
..\..\python\modsupport.c
349
WString
4
COBJ
350
WVList
0
351
WVList
0
22
1
1
0
352
MItem
24
..\..\python\mystrtoul.c
353
WString
4
COBJ
354
WVList
0
355
WVList
0
22
1
1
0
356
MItem
22
..\..\python\pystate.c
357
WString
4
COBJ
358
WVList
0
359
WVList
0
22
1
1
0
360
MItem
24
..\..\python\pythonrun.c
361
WString
4
COBJ
362
WVList
0
363
WVList
0
22
1
1
0
364
MItem
27
..\..\python\structmember.c
365
WString
4
COBJ
366
WVList
0
367
WVList
0
22
1
1
0
368
MItem
24
..\..\python\sysmodule.c
369
WString
4
COBJ
370
WVList
0
371
WVList
0
22
1
1
0
372
MItem
24
..\..\python\traceback.c
373
WString
4
COBJ
374
WVList
0
375
WVList
0
22
1
1
0
376
MItem
11
..\config.c
377
WString
4
COBJ
378
WVList
0
379
WVList
0
22
1
1
0
380
MItem
13
..\getpathp.c
381
WString
4
COBJ
382
WVList
0
383
WVList
0
22
1
1
0
NAME pyth_os2
FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmodule.obj,cpickle.obj,cstringio.obj,errnomodule.obj,getbuildinfo.obj,imageop.obj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj,pcremodule.obj,posixmodule.obj,pypcre.obj,python.obj,regexmodule.obj,regexpr.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmodule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,classobject.obj,cobject.obj,complexobject.obj,dictobject.obj,fileobject.obj,floatobject.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobject.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,sliceobject.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,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,pystate.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,config.obj,getpathp.obj
!define BLANK ""
n:\python\python-1.5.1\pc\wat_os2\arraymodule.obj : n:\python\python-1.5.1\m&
odules\arraymodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\audioop.obj : n:\python\python-1.5.1\modul&
es\audioop.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\binascii.obj : n:\python\python-1.5.1\modu&
les\binascii.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\cmathmodule.obj : n:\python\python-1.5.1\m&
odules\cmathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\cpickle.obj : n:\python\python-1.5.1\modul&
es\cpickle.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\cpickle.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.5.1\pc\wat_os2\cstringio.obj : n:\python\python-1.5.1\mod&
ules\cstringio.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\cstringio.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.5.1\pc\wat_os2\errnomodule.obj : n:\python\python-1.5.1\m&
odules\errnomodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\errnomodule.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.5.1\pc\wat_os2\getbuildinfo.obj : n:\python\python-1.5.1\&
modules\getbuildinfo.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\getbuildinfo.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.5.1\pc\wat_os2\imageop.obj : n:\python\python-1.5.1\modul&
es\imageop.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\main.obj : n:\python\python-1.5.1\modules\&
main.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\mathmodule.obj : n:\python\python-1.5.1\mo&
dules\mathmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\md5c.obj : n:\python\python-1.5.1\modules\&
md5c.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\md5module.obj : n:\python\python-1.5.1\mod&
ules\md5module.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\newmodule.obj : n:\python\python-1.5.1\mod&
ules\newmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\operator.obj : n:\python\python-1.5.1\modu&
les\operator.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\operator.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.5.1\pc\wat_os2\pcremodule.obj : n:\python\python-1.5.1\mo&
dules\pcremodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\pcremodule.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.5.1\pc\wat_os2\posixmodule.obj : n:\python\python-1.5.1\m&
odules\posixmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\pypcre.obj : n:\python\python-1.5.1\module&
s\pypcre.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\pypcre.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.5.1\pc\wat_os2\python.obj : n:\python\python-1.5.1\module&
s\python.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\modules\python.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.5.1\pc\wat_os2\regexmodule.obj : n:\python\python-1.5.1\m&
odules\regexmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\regexpr.obj : n:\python\python-1.5.1\modul&
es\regexpr.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\rgbimgmodule.obj : n:\python\python-1.5.1\&
modules\rgbimgmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\rotormodule.obj : n:\python\python-1.5.1\m&
odules\rotormodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\signalmodule.obj : n:\python\python-1.5.1\&
modules\signalmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\soundex.obj : n:\python\python-1.5.1\modul&
es\soundex.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\stropmodule.obj : n:\python\python-1.5.1\m&
odules\stropmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\structmodule.obj : n:\python\python-1.5.1\&
modules\structmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\timemodule.obj : n:\python\python-1.5.1\mo&
dules\timemodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\yuvconvert.obj : n:\python\python-1.5.1\mo&
dules\yuvconvert.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\abstract.obj : n:\python\python-1.5.1\obje&
cts\abstract.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\classobject.obj : n:\python\python-1.5.1\o&
bjects\classobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\cobject.obj : n:\python\python-1.5.1\objec&
ts\cobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\complexobject.obj : n:\python\python-1.5.1&
\objects\complexobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\dictobject.obj : n:\python\python-1.5.1\ob&
jects\dictobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\objects\dictobject.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.5.1\pc\wat_os2\fileobject.obj : n:\python\python-1.5.1\ob&
jects\fileobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\floatobject.obj : n:\python\python-1.5.1\o&
bjects\floatobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\frameobject.obj : n:\python\python-1.5.1\o&
bjects\frameobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\funcobject.obj : n:\python\python-1.5.1\ob&
jects\funcobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\intobject.obj : n:\python\python-1.5.1\obj&
ects\intobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\listobject.obj : n:\python\python-1.5.1\ob&
jects\listobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\longobject.obj : n:\python\python-1.5.1\ob&
jects\longobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\methodobject.obj : n:\python\python-1.5.1\&
objects\methodobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\moduleobject.obj : n:\python\python-1.5.1\&
objects\moduleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\object.obj : n:\python\python-1.5.1\object&
s\object.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\rangeobject.obj : n:\python\python-1.5.1\o&
bjects\rangeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\sliceobject.obj : n:\python\python-1.5.1\o&
bjects\sliceobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\objects\sliceobject.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.5.1\pc\wat_os2\stringobject.obj : n:\python\python-1.5.1\&
objects\stringobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\tupleobject.obj : n:\python\python-1.5.1\o&
bjects\tupleobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\typeobject.obj : n:\python\python-1.5.1\ob&
jects\typeobject.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\acceler.obj : n:\python\python-1.5.1\parse&
r\acceler.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\grammar1.obj : n:\python\python-1.5.1\pars&
er\grammar1.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\myreadline.obj : n:\python\python-1.5.1\pa&
rser\myreadline.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\node.obj : n:\python\python-1.5.1\parser\n&
ode.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\parser.obj : n:\python\python-1.5.1\parser&
\parser.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\parsetok.obj : n:\python\python-1.5.1\pars&
er\parsetok.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\tokenizer.obj : n:\python\python-1.5.1\par&
ser\tokenizer.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\bltinmodule.obj : n:\python\python-1.5.1\p&
ython\bltinmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\ceval.obj : n:\python\python-1.5.1\python\&
ceval.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\compile.obj : n:\python\python-1.5.1\pytho&
n\compile.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\errors.obj : n:\python\python-1.5.1\python&
\errors.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\frozen.obj : n:\python\python-1.5.1\python&
\frozen.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getargs.obj : n:\python\python-1.5.1\pytho&
n\getargs.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getcompiler.obj : n:\python\python-1.5.1\p&
ython\getcompiler.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getcopyright.obj : n:\python\python-1.5.1\&
python\getcopyright.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getmtime.obj : n:\python\python-1.5.1\pyth&
on\getmtime.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getopt.obj : n:\python\python-1.5.1\python&
\getopt.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getplatform.obj : n:\python\python-1.5.1\p&
ython\getplatform.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getversion.obj : n:\python\python-1.5.1\py&
thon\getversion.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\graminit.obj : n:\python\python-1.5.1\pyth&
on\graminit.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\import.obj : n:\python\python-1.5.1\python&
\import.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\importdl.obj : n:\python\python-1.5.1\pyth&
on\importdl.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\marshal.obj : n:\python\python-1.5.1\pytho&
n\marshal.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\modsupport.obj : n:\python\python-1.5.1\py&
thon\modsupport.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\mystrtoul.obj : n:\python\python-1.5.1\pyt&
hon\mystrtoul.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\pystate.obj : n:\python\python-1.5.1\pytho&
n\pystate.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\..\python\pystate.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.5.1\pc\wat_os2\pythonrun.obj : n:\python\python-1.5.1\pyt&
hon\pythonrun.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\structmember.obj : n:\python\python-1.5.1\&
python\structmember.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\sysmodule.obj : n:\python\python-1.5.1\pyt&
hon\sysmodule.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\traceback.obj : n:\python\python-1.5.1\pyt&
hon\traceback.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\config.obj : n:\python\python-1.5.1\pc\con&
fig.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\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.5.1\pc\wat_os2\getpathp.obj : n:\python\python-1.5.1\pc\g&
etpathp.c .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
*wcc386 ..\getpathp.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.5.1\pc\wat_os2\pyth_os2.exe : n:\python\python-1.5.1\pc\w&
at_os2\arraymodule.obj n:\python\python-1.5.1\pc\wat_os2\audioop.obj n:\pyth&
on\python-1.5.1\pc\wat_os2\binascii.obj n:\python\python-1.5.1\pc\wat_os2\cm&
athmodule.obj n:\python\python-1.5.1\pc\wat_os2\cpickle.obj n:\python\python&
-1.5.1\pc\wat_os2\cstringio.obj n:\python\python-1.5.1\pc\wat_os2\errnomodul&
e.obj n:\python\python-1.5.1\pc\wat_os2\getbuildinfo.obj n:\python\python-1.&
5.1\pc\wat_os2\imageop.obj n:\python\python-1.5.1\pc\wat_os2\main.obj n:\pyt&
hon\python-1.5.1\pc\wat_os2\mathmodule.obj n:\python\python-1.5.1\pc\wat_os2&
\md5c.obj n:\python\python-1.5.1\pc\wat_os2\md5module.obj n:\python\python-1&
.5.1\pc\wat_os2\newmodule.obj n:\python\python-1.5.1\pc\wat_os2\operator.obj&
n:\python\python-1.5.1\pc\wat_os2\pcremodule.obj n:\python\python-1.5.1\pc\&
wat_os2\posixmodule.obj n:\python\python-1.5.1\pc\wat_os2\pypcre.obj n:\pyth&
on\python-1.5.1\pc\wat_os2\python.obj n:\python\python-1.5.1\pc\wat_os2\rege&
xmodule.obj n:\python\python-1.5.1\pc\wat_os2\regexpr.obj n:\python\python-1&
.5.1\pc\wat_os2\rgbimgmodule.obj n:\python\python-1.5.1\pc\wat_os2\rotormodu&
le.obj n:\python\python-1.5.1\pc\wat_os2\signalmodule.obj n:\python\python-1&
.5.1\pc\wat_os2\soundex.obj n:\python\python-1.5.1\pc\wat_os2\stropmodule.ob&
j n:\python\python-1.5.1\pc\wat_os2\structmodule.obj n:\python\python-1.5.1\&
pc\wat_os2\timemodule.obj n:\python\python-1.5.1\pc\wat_os2\yuvconvert.obj n&
:\python\python-1.5.1\pc\wat_os2\abstract.obj n:\python\python-1.5.1\pc\wat_&
os2\classobject.obj n:\python\python-1.5.1\pc\wat_os2\cobject.obj n:\python\&
python-1.5.1\pc\wat_os2\complexobject.obj n:\python\python-1.5.1\pc\wat_os2\&
dictobject.obj n:\python\python-1.5.1\pc\wat_os2\fileobject.obj n:\python\py&
thon-1.5.1\pc\wat_os2\floatobject.obj n:\python\python-1.5.1\pc\wat_os2\fram&
eobject.obj n:\python\python-1.5.1\pc\wat_os2\funcobject.obj n:\python\pytho&
n-1.5.1\pc\wat_os2\intobject.obj n:\python\python-1.5.1\pc\wat_os2\listobjec&
t.obj n:\python\python-1.5.1\pc\wat_os2\longobject.obj n:\python\python-1.5.&
1\pc\wat_os2\methodobject.obj n:\python\python-1.5.1\pc\wat_os2\moduleobject&
.obj n:\python\python-1.5.1\pc\wat_os2\object.obj n:\python\python-1.5.1\pc\&
wat_os2\rangeobject.obj n:\python\python-1.5.1\pc\wat_os2\sliceobject.obj n:&
\python\python-1.5.1\pc\wat_os2\stringobject.obj n:\python\python-1.5.1\pc\w&
at_os2\tupleobject.obj n:\python\python-1.5.1\pc\wat_os2\typeobject.obj n:\p&
ython\python-1.5.1\pc\wat_os2\acceler.obj n:\python\python-1.5.1\pc\wat_os2\&
grammar1.obj n:\python\python-1.5.1\pc\wat_os2\myreadline.obj n:\python\pyth&
on-1.5.1\pc\wat_os2\node.obj n:\python\python-1.5.1\pc\wat_os2\parser.obj n:&
\python\python-1.5.1\pc\wat_os2\parsetok.obj n:\python\python-1.5.1\pc\wat_o&
s2\tokenizer.obj n:\python\python-1.5.1\pc\wat_os2\bltinmodule.obj n:\python&
\python-1.5.1\pc\wat_os2\ceval.obj n:\python\python-1.5.1\pc\wat_os2\compile&
.obj n:\python\python-1.5.1\pc\wat_os2\errors.obj n:\python\python-1.5.1\pc\&
wat_os2\frozen.obj n:\python\python-1.5.1\pc\wat_os2\getargs.obj n:\python\p&
ython-1.5.1\pc\wat_os2\getcompiler.obj n:\python\python-1.5.1\pc\wat_os2\get&
copyright.obj n:\python\python-1.5.1\pc\wat_os2\getmtime.obj n:\python\pytho&
n-1.5.1\pc\wat_os2\getopt.obj n:\python\python-1.5.1\pc\wat_os2\getplatform.&
obj n:\python\python-1.5.1\pc\wat_os2\getversion.obj n:\python\python-1.5.1\&
pc\wat_os2\graminit.obj n:\python\python-1.5.1\pc\wat_os2\import.obj n:\pyth&
on\python-1.5.1\pc\wat_os2\importdl.obj n:\python\python-1.5.1\pc\wat_os2\ma&
rshal.obj n:\python\python-1.5.1\pc\wat_os2\modsupport.obj n:\python\python-&
1.5.1\pc\wat_os2\mystrtoul.obj n:\python\python-1.5.1\pc\wat_os2\pystate.obj&
n:\python\python-1.5.1\pc\wat_os2\pythonrun.obj n:\python\python-1.5.1\pc\w&
at_os2\structmember.obj n:\python\python-1.5.1\pc\wat_os2\sysmodule.obj n:\p&
ython\python-1.5.1\pc\wat_os2\traceback.obj n:\python\python-1.5.1\pc\wat_os&
2\config.obj n:\python\python-1.5.1\pc\wat_os2\getpathp.obj .AUTODEPEND
@n:
cd n:\python\python-1.5.1\pc\wat_os2
@%write pyth_os2.lk1 NAME pyth_os2
@%append pyth_os2.lk1 FIL arraymodule.obj,audioop.obj,binascii.obj,cmathmod&
ule.obj,cpickle.obj,cstringio.obj,errnomodule.obj,getbuildinfo.obj,imageop.o&
bj,main.obj,mathmodule.obj,md5c.obj,md5module.obj,newmodule.obj,operator.obj&
,pcremodule.obj,posixmodule.obj,pypcre.obj,python.obj,regexmodule.obj,regexp&
r.obj,rgbimgmodule.obj,rotormodule.obj,signalmodule.obj,soundex.obj,stropmod&
ule.obj,structmodule.obj,timemodule.obj,yuvconvert.obj,abstract.obj,classobj&
ect.obj,cobject.obj,complexobject.obj,dictobject.obj,fileobject.obj,floatobj&
ect.obj,frameobject.obj,funcobject.obj,intobject.obj,listobject.obj,longobje&
ct.obj,methodobject.obj,moduleobject.obj,object.obj,rangeobject.obj,sliceobj&
ect.obj,stringobject.obj,tupleobject.obj,typeobject.obj,acceler.obj,grammar1&
.obj,myreadline.obj,node.obj,parser.obj,parsetok.obj,tokenizer.obj,bltinmodu&
le.obj,ceval.obj,compile.obj,errors.obj,frozen.obj,getargs.obj,getcompiler.o&
bj,getcopyright.obj,getmtime.obj,getopt.obj,getplatform.obj,getversion.obj,g&
raminit.obj,import.obj,importdl.obj,marshal.obj,modsupport.obj,mystrtoul.obj&
,pystate.obj,pythonrun.obj,structmember.obj,sysmodule.obj,traceback.obj,conf&
ig.obj,getpathp.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 c 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
2
9
MVState
10
WString
7
OS2LINK
11
WString
11
?????Stack:
0
12
WString
4
128k
0
13
MCState
14
WString
7
OS2LINK
15
WString
24
?????Case sensitive link
0
1
16
WVList
0
-1
1
1
0
17
WPickList
82
18
MItem
3
*.c
19
WString
4
COBJ
20
WVList
5
21
MVState
22
WString
3
WCC
23
WString
25
o?2??Include directories:
0
24
WString
46
..;..\..\Include;$(%watcom)\h;$(%watcom)\h\os2
0
25
MVState
26
WString
3
WCC
27
WString
23
?????Macro definitions:
0
28
WString
13
HAVE_CONFIG_H
0
29
MCState
30
WString
3
WCC
31
WString
31
?????Force enums to be type int
0
1
32
MRState
33
WString
3
WCC
34
WString
20
?????Pack structures
0
0
35
MRState
36
WString
3
WCC
37
WString
21
?????4 byte alignment
0
1
38
WVList
0
-1
1
1
0
39
MItem
27
..\..\modules\arraymodule.c
40
WString
4
COBJ
41
WVList
0
42
WVList
0
18
1
1
0
43
MItem
23
..\..\modules\audioop.c
44
WString
4
COBJ
45
WVList
0
46
WVList
0
18
1
1
0
47
MItem
24
..\..\modules\binascii.c
48
WString
4
COBJ
49
WVList
0
50
WVList
0
18
1
1
0
51
MItem
27
..\..\modules\cmathmodule.c
52
WString
4
COBJ
53
WVList
0
54
WVList
0
18
1
1
0
55
MItem
23
..\..\modules\cpickle.c
56
WString
4
COBJ
57
WVList
0
58
WVList
0
18
1
1
0
59
MItem
25
..\..\modules\cstringio.c
60
WString
4
COBJ
61
WVList
0
62
WVList
0
18
1
1
0
63
MItem
27
..\..\modules\errnomodule.c
64
WString
4
COBJ
65
WVList
0
66
WVList
0
18
1
1
0
67
MItem
28
..\..\modules\getbuildinfo.c
68
WString
4
COBJ
69
WVList
0
70
WVList
0
18
1
1
0
71
MItem
23
..\..\modules\imageop.c
72
WString
4
COBJ
73
WVList
0
74
WVList
0
18
1
1
0
75
MItem
20
..\..\modules\main.c
76
WString
4
COBJ
77
WVList
0
78
WVList
0
18
1
1
0
79
MItem
26
..\..\modules\mathmodule.c
80
WString
4
COBJ
81
WVList
0
82
WVList
0
18
1
1
0
83
MItem
20
..\..\modules\md5c.c
84
WString
4
COBJ
85
WVList
0
86
WVList
0
18
1
1
0
87
MItem
25
..\..\modules\md5module.c
88
WString
4
COBJ
89
WVList
0
90
WVList
0
18
1
1
0
91
MItem
25
..\..\modules\newmodule.c
92
WString
4
COBJ
93
WVList
0
94
WVList
0
18
1
1
0
95
MItem
24
..\..\modules\operator.c
96
WString
4
COBJ
97
WVList
0
98
WVList
0
18
1
1
0
99
MItem
26
..\..\modules\pcremodule.c
100
WString
4
COBJ
101
WVList
0
102
WVList
0
18
1
1
0
103
MItem
27
..\..\modules\posixmodule.c
104
WString
4
COBJ
105
WVList
0
106
WVList
0
18
1
1
0
107
MItem
22
..\..\modules\pypcre.c
108
WString
4
COBJ
109
WVList
0
110
WVList
0
18
1
1
0
111
MItem
22
..\..\modules\python.c
112
WString
4
COBJ
113
WVList
0
114
WVList
0
18
1
1
0
115
MItem
27
..\..\modules\regexmodule.c
116
WString
4
COBJ
117
WVList
0
118
WVList
0
18
1
1
0
119
MItem
23
..\..\modules\regexpr.c
120
WString
4
COBJ
121
WVList
0
122
WVList
0
18
1
1
0
123
MItem
28
..\..\modules\rgbimgmodule.c
124
WString
4
COBJ
125
WVList
0
126
WVList
0
18
1
1
0
127
MItem
27
..\..\modules\rotormodule.c
128
WString
4
COBJ
129
WVList
0
130
WVList
0
18
1
1
0
131
MItem
28
..\..\modules\signalmodule.c
132
WString
4
COBJ
133
WVList
0
134
WVList
0
18
1
1
0
135
MItem
23
..\..\modules\soundex.c
136
WString
4
COBJ
137
WVList
0
138
WVList
0
18
1
1
0
139
MItem
27
..\..\modules\stropmodule.c
140
WString
4
COBJ
141
WVList
0
142
WVList
0
18
1
1
0
143
MItem
28
..\..\modules\structmodule.c
144
WString
4
COBJ
145
WVList
0
146
WVList
0
18
1
1
0
147
MItem
26
..\..\modules\timemodule.c
148
WString
4
COBJ
149
WVList
0
150
WVList
0
18
1
1
0
151
MItem
26
..\..\modules\yuvconvert.c
152
WString
4
COBJ
153
WVList
0
154
WVList
0
18
1
1
0
155
MItem
24
..\..\objects\abstract.c
156
WString
4
COBJ
157
WVList
0
158
WVList
0
18
1
1
0
159
MItem
27
..\..\objects\classobject.c
160
WString
4
COBJ
161
WVList
0
162
WVList
0
18
1
1
0
163
MItem
23
..\..\objects\cobject.c
164
WString
4
COBJ
165
WVList
0
166
WVList
0
18
1
1
0
167
MItem
29
..\..\objects\complexobject.c
168
WString
4
COBJ
169
WVList
0
170
WVList
0
18
1
1
0
171
MItem
26
..\..\objects\dictobject.c
172
WString
4
COBJ
173
WVList
0
174
WVList
0
18
1
1
0
175
MItem
26
..\..\objects\fileobject.c
176
WString
4
COBJ
177
WVList
0
178
WVList
0
18
1
1
0
179
MItem
27
..\..\objects\floatobject.c
180
WString
4
COBJ
181
WVList
0
182
WVList
0
18
1
1
0
183
MItem
27
..\..\objects\frameobject.c
184
WString
4
COBJ
185
WVList
0
186
WVList
0
18
1
1
0
187
MItem
26
..\..\objects\funcobject.c
188
WString
4
COBJ
189
WVList
0
190
WVList
0
18
1
1
0
191
MItem
25
..\..\objects\intobject.c
192
WString
4
COBJ
193
WVList
0
194
WVList
0
18
1
1
0
195
MItem
26
..\..\objects\listobject.c
196
WString
4
COBJ
197
WVList
0
198
WVList
0
18
1
1
0
199
MItem
26
..\..\objects\longobject.c
200
WString
4
COBJ
201
WVList
0
202
WVList
0
18
1
1
0
203
MItem
28
..\..\objects\methodobject.c
204
WString
4
COBJ
205
WVList
0
206
WVList
0
18
1
1
0
207
MItem
28
..\..\objects\moduleobject.c
208
WString
4
COBJ
209
WVList
0
210
WVList
0
18
1
1
0
211
MItem
22
..\..\objects\object.c
212
WString
4
COBJ
213
WVList
0
214
WVList
0
18
1
1
0
215
MItem
27
..\..\objects\rangeobject.c
216
WString
4
COBJ
217
WVList
0
218
WVList
0
18
1
1
0
219
MItem
27
..\..\objects\sliceobject.c
220
WString
4
COBJ
221
WVList
0
222
WVList
0
18
1
1
0
223
MItem
28
..\..\objects\stringobject.c
224
WString
4
COBJ
225
WVList
0
226
WVList
0
18
1
1
0
227
MItem
27
..\..\objects\tupleobject.c
228
WString
4
COBJ
229
WVList
0
230
WVList
0
18
1
1
0
231
MItem
26
..\..\objects\typeobject.c
232
WString
4
COBJ
233
WVList
0
234
WVList
0
18
1
1
0
235
MItem
22
..\..\parser\acceler.c
236
WString
4
COBJ
237
WVList
0
238
WVList
0
18
1
1
0
239
MItem
23
..\..\parser\grammar1.c
240
WString
4
COBJ
241
WVList
0
242
WVList
0
18
1
1
0
243
MItem
25
..\..\parser\myreadline.c
244
WString
4
COBJ
245
WVList
0
246
WVList
0
18
1
1
0
247
MItem
19
..\..\parser\node.c
248
WString
4
COBJ
249
WVList
0
250
WVList
0
18
1
1
0
251
MItem
21
..\..\parser\parser.c
252
WString
4
COBJ
253
WVList
0
254
WVList
0
18
1
1
0
255
MItem
23
..\..\parser\parsetok.c
256
WString
4
COBJ
257
WVList
0
258
WVList
0
18
1
1
0
259
MItem
24
..\..\parser\tokenizer.c
260
WString
4
COBJ
261
WVList
0
262
WVList
0
18
1
1
0
263
MItem
26
..\..\python\bltinmodule.c
264
WString
4
COBJ
265
WVList
0
266
WVList
0
18
1
1
0
267
MItem
20
..\..\python\ceval.c
268
WString
4
COBJ
269
WVList
0
270
WVList
0
18
1
1
0
271
MItem
22
..\..\python\compile.c
272
WString
4
COBJ
273
WVList
0
274
WVList
0
18
1
1
0
275
MItem
21
..\..\python\errors.c
276
WString
4
COBJ
277
WVList
0
278
WVList
0
18
1
1
0
279
MItem
21
..\..\python\frozen.c
280
WString
4
COBJ
281
WVList
0
282
WVList
0
18
1
1
0
283
MItem
22
..\..\python\getargs.c
284
WString
4
COBJ
285
WVList
0
286
WVList
0
18
1
1
0
287
MItem
26
..\..\python\getcompiler.c
288
WString
4
COBJ
289
WVList
0
290
WVList
0
18
1
1
0
291
MItem
27
..\..\python\getcopyright.c
292
WString
4
COBJ
293
WVList
0
294
WVList
0
18
1
1
0
295
MItem
23
..\..\python\getmtime.c
296
WString
4
COBJ
297
WVList
0
298
WVList
0
18
1
1
0
299
MItem
21
..\..\python\getopt.c
300
WString
4
COBJ
301
WVList
0
302
WVList
0
18
1
1
0
303
MItem
26
..\..\python\getplatform.c
304
WString
4
COBJ
305
WVList
0
306
WVList
0
18
1
1
0
307
MItem
25
..\..\python\getversion.c
308
WString
4
COBJ
309
WVList
0
310
WVList
0
18
1
1
0
311
MItem
23
..\..\python\graminit.c
312
WString
4
COBJ
313
WVList
0
314
WVList
0
18
1
1
0
315
MItem
21
..\..\python\import.c
316
WString
4
COBJ
317
WVList
0
318
WVList
0
18
1
1
0
319
MItem
23
..\..\python\importdl.c
320
WString
4
COBJ
321
WVList
0
322
WVList
0
18
1
1
0
323
MItem
22
..\..\python\marshal.c
324
WString
4
COBJ
325
WVList
0
326
WVList
0
18
1
1
0
327
MItem
25
..\..\python\modsupport.c
328
WString
4
COBJ
329
WVList
0
330
WVList
0
18
1
1
0
331
MItem
24
..\..\python\mystrtoul.c
332
WString
4
COBJ
333
WVList
0
334
WVList
0
18
1
1
0
335
MItem
22
..\..\python\pystate.c
336
WString
4
COBJ
337
WVList
0
338
WVList
0
18
1
1
0
339
MItem
24
..\..\python\pythonrun.c
340
WString
4
COBJ
341
WVList
0
342
WVList
0
18
1
1
0
343
MItem
27
..\..\python\structmember.c
344
WString
4
COBJ
345
WVList
0
346
WVList
0
18
1
1
0
347
MItem
24
..\..\python\sysmodule.c
348
WString
4
COBJ
349
WVList
0
350
WVList
0
18
1
1
0
351
MItem
24
..\..\python\traceback.c
352
WString
4
COBJ
353
WVList
0
354
WVList
0
18
1
1
0
355
MItem
11
..\config.c
356
WString
4
COBJ
357
WVList
0
358
WVList
0
18
1
1
0
359
MItem
13
..\getpathp.c
360
WString
4
COBJ
361
WVList
0
362
WVList
0
18
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