blob: b03725ac24cd62dca52869a378043123d8997835 [file] [log] [blame]
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001######################################################################
2#
3# Top-Level Makefile for Building Python for OS/2
4#
5# This makefile was developed for use with IBM's VisualAge C/C++
6# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
7# the commercial OpusMAKE tool.
8#
9# The output of the build is a largish Python15.DLL containing the
10# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
12# Python15.DLL is needed.
13#
14# These two binaries can be statically linked with the VisualAge C/C++
15# runtime library (producing larger binaries), or dynamically linked
16# to make smaller ones that require the compiler to be installed on
17# any system Python is used on.
18#
19# History (Most Recent First)
20#
21# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
22# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
23# 03-Aug-96 jrr Original for Use with Python 1.4 Release
24#
25######################################################################
26
27###################
28# Places and Things
29###################
30PY_MODULES = ..\..\Modules
31PY_OBJECTS = ..\..\Objects
32PY_PARSER = ..\..\Parser
33PY_PYTHON = ..\..\Python
34PY_INCLUDE = ..\..\Include
35PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
36
37# Where to Find the IBM TCP/IP Socket Includes and Libraries
38OS2TCPIP = C:\MPTN
39
40# Where to Put the .OBJ Files, To Keep Them Out of the Way
41.PATH.obj = obj
42
43# Search Path for Include Files
44PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
45
46# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
47MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
48
49.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
50.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
51OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
52
53#################
54# Inference Rules
55#################
56
57
58###################
59# Python Subsystems
60###################
61
62# PYTHON is the central core, containing the builtins and interpreter.
63PYTHON = \
64 BltinModule.obj \
65 CEval.obj \
66 Compile.obj \
67 Errors.obj \
68 Frozen.obj \
69 Getargs.obj \
70 GetCompiler.obj \
71 GetCopyright.obj \
72 GetMTime.obj \
73 GetOpt.obj \
74 GetPlatform.obj \
75 GetVersion.obj \
76 GramInit.obj \
77 Import.obj \
78 ImportDL.obj \
79 Marshal.obj \
80 ModSupport.obj \
81 MyStrtoul.obj \
82 PyState.obj \
83 PythonRun.obj \
84 StructMember.obj \
85 SysModule.obj \
86 Thread.obj \
87 TraceBack.obj \
88 FrozenMain.obj
89
90# Omitted Python Elements (and Reason):
91 # atof.c -- Implementation for Platforms w/o This Function
92 # dup2.c -- Implementation for Platforms w/o This Function
93 # fmod.c -- Implementation for Platforms w/o This Function
94 # getcwd.c -- Implementation for Platforms w/o This Function
95 # hypot.c -- Implementation for Platforms w/o This Function
96 # memmove.c -- Implementation for Platforms w/o This Function
97 # strdup.c -- Implementation for Platforms w/o This Function
98 # strerror.c -- Implementation for Platforms w/o This Function
99 # strtod.c -- Implementation for Platforms w/o This Function
100
101 # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead)
102 # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone)
103 # frozenmain.c
104
105# Python's Internal Parser
106PARSER = \
107 Acceler.obj \
108 Grammar1.obj \
109 MyReadline.obj \
110 Node.obj \
111 Parser.obj \
112 ParseTok.obj \
113 Tokenizer.obj
114
115# Python Object Types
116OBJECTS = \
117 Abstract.obj \
118 ClassObject.obj \
119 CObject.obj \
120 ComplexObject.obj \
121 DictObject.obj \
122 FileObject.obj \
123 FloatObject.obj \
124 FrameObject.obj \
125 FuncObject.obj \
126 IntObject.obj \
127 ListObject.obj \
128 LongObject.obj \
129 MethodObject.obj \
130 ModuleObject.obj \
131 Object.obj \
132 RangeObject.obj \
133 SliceObject.obj \
134 StringObject.obj \
135 TupleObject.obj \
136 TypeObject.obj
137
138# Omitted Objects (and Reason):
139 # xxobject.c -- Template to Create Your Own Object Types
140
141# Extension Modules (Built-In or as Separate DLLs)
142MODULES = \
143 ArrayModule.obj \
144 BinAscii.obj \
145 CMathModule.obj \
146 cPickle.obj \
147 cStringIO.obj \
148 ErrnoModule.obj \
149 GetBuildInfo.obj \
150 GetPathP.obj \
151 Main.obj \
152 MathModule.obj \
153 MD5c.obj \
154 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000155 Operator.obj \
156 PosixModule.obj \
157 RegexModule.obj \
158 RegExpr.obj \
159 ReopModule.obj \
160 SelectModule.obj \
161 SignalModule.obj \
162 SocketModule.obj \
163 SoundEx.obj \
164 StropModule.obj \
165 StructModule.obj \
166 TimeModule.obj \
167 ThreadModule.obj \
168 YUVConvert.obj
169
170# Omitted Modules (and Description/Reason):
171 #
172 # Multimedia:
173 # almodule.c -- Non-OS/2 Audio Channel Facility (?)
174 # cdmodule.c -- Wrapper of Non-OS/2 CD Audio Functions
175 # audioop.c -- Various Compute Operations on Audio Samples
176 # imageop.c -- Various Compute Operations on Video Samples
177 # imgfile.c -- Wrapper of SGI ImageLib API
178 # rgbimgmodule.c -- Non-OS/2 Image Read/Write Capability (Primitive)
179 # sunaudiodev.c -- Wrapper of Sun Audio Device API
180 # clmodule.c -- Wrapper of SGI Image/Audio Compression API
181
182 # Database:
183 # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
184 # bsddbmodule.c -- Wrapper of DBM Database API (BSD Flavor)
185 # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
186
187 # Cryptography:
188 # cryptmodule.c -- Simple Wrapper for crypt() Function
189 # rotormodule.c -- Implementation of Enigma Crypto Based on Rotors
190
191# cgensupport.obj \
192# fcntlmodule.obj \
193# fmmodule.obj \
194# fpectlmodule.obj \
195# fpetestmodule.obj \
196# Unix-Specific getpath.obj \
197# glmodule.obj \
198# grpmodule.obj \
199# mpzmodule.obj \
200# nismodule.obj \
201# parsermodule.obj \
202# pcremodule.obj \
203# pwdmodule.obj \
204# pypcre.obj \
205# readline.obj \
206# resource.obj \
207# sgimodule.obj \
208# svmodule.obj \
209# syslogmodule.obj \
210# termios.obj \
211# timingmodule.obj \
212
213 # User Interface:
214# _tkinter.obj \
215# stdwinmodule.obj \
216# cursesmodule.obj \
217# tclNotify.obj \
218# tkappinit.obj \
219 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
220
221 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
222 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
Jesus Cea585ad8a2009-07-02 15:37:21 +0000223 # dlmodule.c -- Some Weird Form of Data Processing Module
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000224 # xxmodule.c -- Template to Create Your Own Module
225
226#
227# Standalone Parser Generator Program (Shares Some of Python's Modules)
228PGEN = \
229 PGenMain.obj \
230 PGen.obj \
231 PrintGrammar.obj \
232 ListNode.obj \
233 Grammar.obj \
234 BitSet.obj \
235 FirstSets.obj \
236 MetaGrammar.obj
237
238# Omitted Parser Elements (and Reason):
239 # intrcheck.c -- Not Referenced by Anyone (?)
240
241##################
242# Macros and Flags
243##################
244_BASE = /Q /W2 /I$(PROJINCLUDE)
245 # /Q = Omit IBM Copyright
246 # /W2 = Show Warnings/Errors Only
247 # /Fi = Create Precompiled Headers
248 # /Si = Utilize Precompiled Headers
249
250_GEN = /G4 /Gm /Gd /B"/STACK:360000"
251 # /G4 = Generate Code for 486 (Use 386 for Debugger)
252 # /Gm = Use Multithread Runtime
253 # /Gd = Dynamically Load Runtime
254 # /Gs = Remove Code for Stack Probes
255 # /Gx = Remove C++ Exception-Handling Info
256 # /Tdp = Generate Code for C++ Templates
257 # /Rn = Generate Code without a Runtime
258 # /B"/STACK:n" = Set Stack Size
259
260_OPT = /O /Gl
261 # /O = Enable Speed-Optimizations
262 # /Ol = Pass Code Thru Intermediate Linker
263 # /Gu = Advise Linker All Ext Data is ID'd
264 # /Gl = Have Linker Remove Unused Fns
265
266_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
267 # /Ti = Embed Debugger/Analyzer Recs
268 # /Tm = Enable Debug Memory Fns
269 # /Tx = Request Full Dump Upon Exception
270 # /DDEBUG = Enable App-Internal Debugging Code
271 # /DUSE_SOCKET =
272 # /DUSE_DL_EXPORT =
273
274_OUT =
275 # /Fb = Embed Browser Recs
276 # /Gh = Generate Code for Profiler Hooks
277 # /Fl = Output C/C++ Listing Files
278 # /Lf = Provide Full (Detailed) Listing Files
279 # /Fm. = Output Linker Map File
280 # /Ft. = Output C++ Template Resolution Files
281
282_MAP = /FmNoise\$(.TARGET,B,>.map)
283
284_DLL = /Ge-
285_EXE = /Ge
286 # /Ge = Create an EXE, not DLL
287
288CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
289CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
290
291###################
292# Primary Target(s)
293###################
294All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
295
296##############
297#
298##############
299
300# Object Library of All Essential Python Routines
301PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
302 %do "%.lib"
303
304Python15.dll: Compile.obj PyCore.lib Python.def
305 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
306
307Compile.obj: Compile.c
308 %do ".c.obj" CFLAGS+=$(_DLL)
309
310# Import Library for Using the Python15.dll
311Python15.lib: Python.def
312 %do ".def.lib"
313
314# Small Program to Start Interpreter in Python15.dll
315Python.exe: Python.obj Python15.lib
316 %do "%.exe" CPPFLAGS+=$(_MAP)
317
318#Python.obj: Python.c
319# %do ".c.obj" CFLAGS+=$(_EXE)
320
321PGen.exe: $(PGEN) PyCore.lib
322 %do "%.exe" CPPFLAGS+=$(_MAP)
323
324#######################
325# Miscellaneous Targets
326#######################
327
328# Remove Intermediate Targets but Leave Executable Binaries
329clean:
330 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
331 -- Del /Q /Y Noise >NUL 2>&1
332 -- Del /Q $(ERRS) >NUL 2>&1
333
334# Remove All Targets, Including Final Binaries
335distclean: clean
336 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
337 -- Del /Q Python15.dll Python.exe >NUL 2>&1
338
339release: Python.exe Python15.dll Python15.lib
340 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
341 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
342 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
343
344test:
345 python ..\..\lib\test\regrtest.py
346
347# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
348depend:
349 D:\OpusMake\os2mkmf -c -s
350
351### OPUS MKMF: Do not remove this line! Generated dependencies follow.
352
353_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000354 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000355 import.h intobject.h intrcheck.h listobject.h longobject.h \
356 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
357 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
358 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
359 traceback.h tupleobject.h
360
361almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000362 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000363 import.h intobject.h intrcheck.h listobject.h longobject.h \
364 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
365 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
366 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
367 traceback.h tupleobject.h
368
369arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000370 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000371 import.h intobject.h intrcheck.h listobject.h longobject.h \
372 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
373 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
374 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
375 traceback.h tupleobject.h
376
377audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000378 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000379 import.h intobject.h intrcheck.h listobject.h longobject.h \
380 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
381 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
382 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
383 stringobject.h sysmodule.h traceback.h tupleobject.h
384
385binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000386 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000387 import.h intobject.h intrcheck.h listobject.h longobject.h \
388 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
389 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
390 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
391 traceback.h tupleobject.h
392
393bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000394 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000395 import.h intobject.h intrcheck.h listobject.h longobject.h \
396 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
397 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
398 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
399 traceback.h tupleobject.h
400
401cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000402 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000403 import.h intobject.h intrcheck.h listobject.h longobject.h \
404 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
405 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
406 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
407 traceback.h tupleobject.h
408
409cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000410 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000411 funcobject.h import.h intobject.h intrcheck.h listobject.h \
412 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
413 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
414 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
415 stringobject.h sysmodule.h traceback.h tupleobject.h
416
417clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000418 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000419 import.h intobject.h intrcheck.h listobject.h longobject.h \
420 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
421 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
422 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
423 traceback.h tupleobject.h
424
425cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000426 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427 import.h intobject.h intrcheck.h listobject.h longobject.h \
428 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
429 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
430 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
431 stringobject.h sysmodule.h traceback.h tupleobject.h
432
433cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000434 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000435 funcobject.h import.h intobject.h intrcheck.h listobject.h \
436 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
437 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
438 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
439 stringobject.h sysmodule.h traceback.h tupleobject.h
440
441cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000442 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000443 import.h intobject.h intrcheck.h listobject.h longobject.h \
444 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
445 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
446 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
447 traceback.h tupleobject.h
448
449cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000450 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000451 funcobject.h import.h intobject.h intrcheck.h listobject.h \
452 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
453 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
454 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
455 stringobject.h sysmodule.h traceback.h tupleobject.h
456
457cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000458 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000459 funcobject.h import.h intobject.h intrcheck.h listobject.h \
460 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
461 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
462 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
463 stringobject.h sysmodule.h traceback.h tupleobject.h
464
465dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000466 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000467 import.h intobject.h intrcheck.h listobject.h longobject.h \
468 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
469 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
470 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
471 traceback.h tupleobject.h
472
473dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000474 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000475 import.h intobject.h intrcheck.h listobject.h longobject.h \
476 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
477 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
478 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
479 traceback.h tupleobject.h
480
481errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000482 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000483 import.h intobject.h intrcheck.h listobject.h longobject.h \
484 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
485 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
486 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
487 traceback.h tupleobject.h
488
489errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000490 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000491 import.h intobject.h intrcheck.h listobject.h longobject.h \
492 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
493 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
494 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
495 traceback.h tupleobject.h
496
497fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000498 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000499 fileobject.h floatobject.h funcobject.h import.h intobject.h \
500 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
501 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
502 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
503 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
504
505flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000506 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000507 import.h intobject.h intrcheck.h listobject.h longobject.h \
508 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
509 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
510 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
511 structmember.h sysmodule.h traceback.h tupleobject.h
512
513fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000514 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000515 import.h intobject.h intrcheck.h listobject.h longobject.h \
516 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
517 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
518 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
519 traceback.h tupleobject.h
520
521fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000522 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000523 funcobject.h import.h intobject.h intrcheck.h listobject.h \
524 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
525 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
526 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
527 stringobject.h sysmodule.h traceback.h tupleobject.h
528
529fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000530 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000531 funcobject.h import.h intobject.h intrcheck.h listobject.h \
532 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
533 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
534 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
535 stringobject.h sysmodule.h traceback.h tupleobject.h
536
537gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000538 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000539 import.h intobject.h intrcheck.h listobject.h longobject.h \
540 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
541 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
542 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
543 traceback.h tupleobject.h
544
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000545getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000546
547getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000548 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000549 import.h intobject.h intrcheck.h listobject.h longobject.h \
550 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
551 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
552 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
553 sysmodule.h traceback.h tupleobject.h
554
555glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000556 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000557 funcobject.h import.h intobject.h intrcheck.h listobject.h \
558 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
559 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
560 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
561 stringobject.h sysmodule.h traceback.h tupleobject.h
562
563grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000564 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000565 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
566 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
567 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
568 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
569 traceback.h tupleobject.h
570
571imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000572 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000573 import.h intobject.h intrcheck.h listobject.h longobject.h \
574 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
575 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
576 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
577 traceback.h tupleobject.h
578
579imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000580 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000581 import.h intobject.h intrcheck.h listobject.h longobject.h \
582 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
583 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
584 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
585 traceback.h tupleobject.h
586
587main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000588 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000589 import.h intobject.h intrcheck.h listobject.h longobject.h \
590 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
591 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
592 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
593 traceback.h tupleobject.h
594
595mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000596 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000597 import.h intobject.h intrcheck.h listobject.h longobject.h \
598 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
599 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
600 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
601 stringobject.h sysmodule.h traceback.h tupleobject.h
602
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000603md5c.obj: pyconfig.h md5.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000604
605md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000606 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000607 import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \
608 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
609 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
610 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
611 traceback.h tupleobject.h
612
Tim Peters1ca12962001-12-04 03:18:48 +0000613mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000614 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000615 funcobject.h import.h intobject.h intrcheck.h listobject.h \
616 longintrepr.h longobject.h methodobject.h modsupport.h \
617 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
618 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
619 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
620
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000621nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000622 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000623 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
624 listobject.h longobject.h methodobject.h modsupport.h \
625 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
626 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
627 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
628
629operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000630 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000631 import.h intobject.h intrcheck.h listobject.h longobject.h \
632 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
633 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
634 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
635 traceback.h tupleobject.h
636
637parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000638 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000639 funcobject.h graminit.h import.h intobject.h intrcheck.h \
640 listobject.h longobject.h methodobject.h modsupport.h \
641 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
642 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
643 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
644 traceback.h tupleobject.h
645
646pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000647 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000648 import.h intobject.h intrcheck.h listobject.h longobject.h \
649 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
650 object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \
651 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
652 stringobject.h sysmodule.h traceback.h tupleobject.h
653
654posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000655 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000656 import.h intobject.h intrcheck.h listobject.h longobject.h \
657 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
658 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
659 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
660 sysmodule.h traceback.h tupleobject.h
661
662posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000663 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000664 import.h intobject.h intrcheck.h listobject.h longobject.h \
665 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
666 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
667 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
668 sysmodule.h traceback.h tupleobject.h
669
670puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000671 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000672 import.h intobject.h intrcheck.h listobject.h longobject.h \
673 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
674 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
675 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
676 traceback.h tupleobject.h
677
678pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000679 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000680 import.h intobject.h intrcheck.h listobject.h longobject.h \
681 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
682 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
683 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
684 sysmodule.h traceback.h tupleobject.h
685
686pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000687 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000688 graminit.h import.h intobject.h intrcheck.h listobject.h \
689 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
690 myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \
691 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
692 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
693
694readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000695 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000696 import.h intobject.h intrcheck.h listobject.h longobject.h \
697 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
698 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
699 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
700 traceback.h tupleobject.h
701
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000702resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000703 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000704 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
705 listobject.h longobject.h methodobject.h modsupport.h \
706 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
707 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
708 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
709
710rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000711 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000712 funcobject.h import.h intobject.h intrcheck.h listobject.h \
713 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
714 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
715 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
716 stringobject.h sysmodule.h traceback.h tupleobject.h
717
718rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000719 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000720 import.h intobject.h intrcheck.h listobject.h longobject.h \
721 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
722 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
723 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
724 stringobject.h sysmodule.h traceback.h tupleobject.h
725
726selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000727 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000728 funcobject.h import.h intobject.h intrcheck.h listobject.h \
729 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
730 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
731 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
732 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
733
734sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000735 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000736 import.h intobject.h intrcheck.h listobject.h longobject.h \
737 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
738 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
739 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
740 traceback.h tupleobject.h
741
742signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000743 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000744 funcobject.h import.h intobject.h intrcheck.h listobject.h \
745 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
746 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
747 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
748 stringobject.h sysmodule.h traceback.h tupleobject.h
749
750socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
751 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000752 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000753 funcobject.h import.h intobject.h intrcheck.h listobject.h \
754 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
755 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
756 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
757 stringobject.h sysmodule.h traceback.h tupleobject.h
758
759soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000760 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000761 import.h intobject.h intrcheck.h listobject.h longobject.h \
762 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
763 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
764 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
765 traceback.h tupleobject.h
766
767stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000768 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000769 funcobject.h import.h intobject.h intrcheck.h listobject.h \
770 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
771 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
772 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
773 stringobject.h sysmodule.h traceback.h tupleobject.h
774
775stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000776 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000777 import.h intobject.h intrcheck.h listobject.h longobject.h \
778 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
779 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
780 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
781 traceback.h tupleobject.h
782
783structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000784 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000785 funcobject.h import.h intobject.h intrcheck.h listobject.h \
786 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
787 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
788 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
789 stringobject.h sysmodule.h traceback.h tupleobject.h
790
791sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000792 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000793 fileobject.h floatobject.h funcobject.h import.h intobject.h \
794 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
795 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
796 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
797 sliceobject.h stringobject.h structmember.h sysmodule.h \
798 traceback.h tupleobject.h
799
800svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000801 cobject.h compile.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000802 fileobject.h floatobject.h funcobject.h import.h intobject.h \
803 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
804 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
805 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
806 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h \
807 yuv.h
808
809syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000810 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000811 funcobject.h import.h intobject.h intrcheck.h listobject.h \
812 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
813 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
814 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
815 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
816
817termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000818 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000819 import.h intobject.h intrcheck.h listobject.h longobject.h \
820 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
821 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
822 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
823 traceback.h tupleobject.h
824
825threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000826 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000827 funcobject.h import.h intobject.h intrcheck.h listobject.h \
828 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
829 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
830 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
831 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
832
833timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000834 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000835 import.h intobject.h intrcheck.h listobject.h longobject.h \
836 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
837 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
838 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
839 sysmodule.h traceback.h tupleobject.h
840
841timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000842 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000843 funcobject.h import.h intobject.h intrcheck.h listobject.h \
844 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
845 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
846 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
847 stringobject.h sysmodule.h timing.h traceback.h tupleobject.h
848
849xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000850 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000851 import.h intobject.h intrcheck.h listobject.h longobject.h \
852 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
853 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
854 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
855 traceback.h tupleobject.h
856
857yuvconvert.obj: yuv.h
858
859zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000860 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000861 import.h intobject.h intrcheck.h listobject.h longobject.h \
862 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
863 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
864 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
865 traceback.h tupleobject.h
866
867abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000868 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000869 import.h intobject.h intrcheck.h listobject.h longobject.h \
870 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
871 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
872 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
873 traceback.h tupleobject.h
874
875classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000876 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000877 import.h intobject.h intrcheck.h listobject.h longobject.h \
878 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
879 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
880 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
881 structmember.h sysmodule.h traceback.h tupleobject.h
882
883cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885 import.h intobject.h intrcheck.h listobject.h longobject.h \
886 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
887 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
888 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
889 traceback.h tupleobject.h
890
891complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000892 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000893 funcobject.h import.h intobject.h intrcheck.h listobject.h \
894 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
895 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
896 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
897 stringobject.h sysmodule.h traceback.h tupleobject.h
898
899dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000900 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000901 import.h intobject.h intrcheck.h listobject.h longobject.h \
902 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
903 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
904 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
905 traceback.h tupleobject.h
906
907fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000908 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000909 import.h intobject.h intrcheck.h listobject.h longobject.h \
910 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
911 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
912 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
913 structmember.h sysmodule.h traceback.h tupleobject.h
914
915floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000916 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000917 import.h intobject.h intrcheck.h listobject.h longobject.h \
918 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
919 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
920 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
921 stringobject.h sysmodule.h traceback.h tupleobject.h
922
923frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000924 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000925 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
926 listobject.h longobject.h methodobject.h modsupport.h \
927 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
928 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
929 rangeobject.h sliceobject.h stringobject.h structmember.h \
930 sysmodule.h traceback.h tupleobject.h
931
932funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000933 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000934 funcobject.h import.h intobject.h intrcheck.h listobject.h \
935 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
936 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
937 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
938 stringobject.h structmember.h sysmodule.h traceback.h \
939 tupleobject.h
940
941intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000942 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000943 import.h intobject.h intrcheck.h listobject.h longobject.h \
944 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
945 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
946 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
947 traceback.h tupleobject.h
948
949listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000950 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000951 import.h intobject.h intrcheck.h listobject.h longobject.h \
952 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
953 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
954 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
955 traceback.h tupleobject.h
956
Tim Peters1ca12962001-12-04 03:18:48 +0000957longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000958 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000959 funcobject.h import.h intobject.h intrcheck.h listobject.h \
960 longintrepr.h longobject.h methodobject.h modsupport.h \
961 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
962 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
963 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
964 tupleobject.h
965
966methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000967 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000968 funcobject.h import.h intobject.h intrcheck.h listobject.h \
969 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
970 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
971 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
972 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
973
974moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000975 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000976 funcobject.h import.h intobject.h intrcheck.h listobject.h \
977 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
978 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
979 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
980 stringobject.h sysmodule.h traceback.h tupleobject.h
981
982object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000983 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000984 import.h intobject.h intrcheck.h listobject.h longobject.h \
985 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
986 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
987 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
988 traceback.h tupleobject.h
989
990rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000991 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000992 import.h intobject.h intrcheck.h listobject.h longobject.h \
993 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
994 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
995 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
996 traceback.h tupleobject.h
997
998sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000999 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001000 import.h intobject.h intrcheck.h listobject.h longobject.h \
1001 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1002 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1003 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1004 traceback.h tupleobject.h
1005
1006stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001007 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001008 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1009 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1010 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1011 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1012 stringobject.h sysmodule.h traceback.h tupleobject.h
1013
1014tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001015 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001016 import.h intobject.h intrcheck.h listobject.h longobject.h \
1017 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1018 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1019 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1020 traceback.h tupleobject.h
1021
1022typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001023 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001024 import.h intobject.h intrcheck.h listobject.h longobject.h \
1025 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1026 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1027 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1028 traceback.h tupleobject.h
1029
1030xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001031 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001032 import.h intobject.h intrcheck.h listobject.h longobject.h \
1033 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1034 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1035 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1036 traceback.h tupleobject.h
1037
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001038acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001039 parser.h pgenheaders.h pydebug.h token.h
1040
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001041bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001042
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001043firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001044 pgenheaders.h pydebug.h token.h
1045
Tim Peters1ca12962001-12-04 03:18:48 +00001046grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001047 pgenheaders.h pydebug.h token.h
1048
Tim Peters1ca12962001-12-04 03:18:48 +00001049grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001050 pgenheaders.h pydebug.h token.h
1051
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001052intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001053
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001054listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001055 token.h
1056
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001057metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001058 myproto.h pgen.h pgenheaders.h pydebug.h
1059
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001060myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001061
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001062node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001063
Tim Peters1ca12962001-12-04 03:18:48 +00001064parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001065 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
1066
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001067parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001068 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
1069 tokenizer.h
1070
Tim Peters1ca12962001-12-04 03:18:48 +00001071pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001072 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
1073
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001074pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001075 parsetok.h pgen.h pgenheaders.h pydebug.h
1076
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001077printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001078 pgenheaders.h pydebug.h
1079
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001080tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001081 pydebug.h token.h tokenizer.h
1082
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001083atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001084
1085bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001086 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001087 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
1088 listobject.h longobject.h methodobject.h modsupport.h \
1089 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
1090 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1091 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1092 traceback.h tupleobject.h
1093
1094ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001095 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001096 floatobject.h frameobject.h funcobject.h import.h intobject.h \
1097 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
1098 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
1099 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1100 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
1101 tupleobject.h
1102
1103compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001104 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001105 funcobject.h graminit.h import.h intobject.h intrcheck.h \
1106 listobject.h longobject.h methodobject.h modsupport.h \
1107 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
1108 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1109 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1110 structmember.h sysmodule.h token.h traceback.h tupleobject.h
1111
1112errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001113 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001114 import.h intobject.h intrcheck.h listobject.h longobject.h \
1115 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1116 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1117 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1118 traceback.h tupleobject.h
1119
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001120fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001121
1122frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001123 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001124 import.h intobject.h intrcheck.h listobject.h longobject.h \
1125 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1126 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1127 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1128 traceback.h tupleobject.h
1129
1130frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001131 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001132 import.h intobject.h intrcheck.h listobject.h longobject.h \
1133 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1134 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1135 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1136 traceback.h tupleobject.h
1137
1138getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001139 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001140 import.h intobject.h intrcheck.h listobject.h longobject.h \
1141 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1142 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1143 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1144 traceback.h tupleobject.h
1145
1146getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001147 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001148 import.h intobject.h intrcheck.h listobject.h longobject.h \
1149 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1150 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1151 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1152 traceback.h tupleobject.h
1153
1154getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001155 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001156 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1157 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1158 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1159 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1160 stringobject.h sysmodule.h traceback.h tupleobject.h
1161
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001162getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001163
1164getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001165 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001166 import.h intobject.h intrcheck.h listobject.h longobject.h \
1167 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1168 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1169 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1170 traceback.h tupleobject.h
1171
1172getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001173 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001174 import.h intobject.h intrcheck.h listobject.h longobject.h \
1175 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1176 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
1177 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1178 stringobject.h sysmodule.h traceback.h tupleobject.h
1179
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001180graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001181 pgenheaders.h pydebug.h
1182
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001183hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001184
1185import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001186 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001187 fileobject.h floatobject.h funcobject.h import.h importdl.h \
1188 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1189 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1190 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1191 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1192 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
1193
1194importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001195 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001196 import.h importdl.h intobject.h intrcheck.h listobject.h \
1197 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1198 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1199 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1200 stringobject.h sysmodule.h traceback.h tupleobject.h
1201
1202marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001203 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001204 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1205 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1206 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1207 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1208 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1209
1210modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001211 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001212 import.h intobject.h intrcheck.h listobject.h longobject.h \
1213 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1214 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1215 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1216 traceback.h tupleobject.h
1217
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001218mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001219
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001220pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001221
1222pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001223 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001224 import.h intobject.h intrcheck.h listobject.h longobject.h \
1225 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1226 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1227 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1228 traceback.h tupleobject.h
1229
1230pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001231 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001232 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1233 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1234 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1235 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1236 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1237 stringobject.h sysmodule.h traceback.h tupleobject.h
1238
1239sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001240 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001241 import.h intobject.h intrcheck.h listobject.h longobject.h \
1242 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1243 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1244 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1245 traceback.h tupleobject.h
1246
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001247strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001248
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001249strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001250
1251structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001252 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001253 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1254 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1255 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1256 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1257 stringobject.h structmember.h sysmodule.h traceback.h \
1258 tupleobject.h
1259
1260sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001261 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001262 import.h intobject.h intrcheck.h listobject.h longobject.h \
1263 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1264 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1265 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1266 sysmodule.h traceback.h tupleobject.h
1267
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001268thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001269
1270traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001271 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001272 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1273 listobject.h longobject.h methodobject.h modsupport.h \
1274 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1275 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1276 rangeobject.h sliceobject.h stringobject.h structmember.h \
1277 sysmodule.h traceback.h tupleobject.h