blob: f0ed27398ad1e566f0a3322bedb7b9612dd08da1 [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 \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000126 ListObject.obj \
127 LongObject.obj \
128 MethodObject.obj \
129 ModuleObject.obj \
130 Object.obj \
131 RangeObject.obj \
132 SliceObject.obj \
133 StringObject.obj \
134 TupleObject.obj \
135 TypeObject.obj
136
137# Omitted Objects (and Reason):
138 # xxobject.c -- Template to Create Your Own Object Types
139
140# Extension Modules (Built-In or as Separate DLLs)
141MODULES = \
142 ArrayModule.obj \
143 BinAscii.obj \
144 CMathModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000145 cStringIO.obj \
146 ErrnoModule.obj \
147 GetBuildInfo.obj \
148 GetPathP.obj \
149 Main.obj \
150 MathModule.obj \
151 MD5c.obj \
152 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000153 Operator.obj \
154 PosixModule.obj \
155 RegexModule.obj \
156 RegExpr.obj \
157 ReopModule.obj \
158 SelectModule.obj \
159 SignalModule.obj \
160 SocketModule.obj \
161 SoundEx.obj \
162 StropModule.obj \
163 StructModule.obj \
164 TimeModule.obj \
165 ThreadModule.obj \
166 YUVConvert.obj
167
168# Omitted Modules (and Description/Reason):
169 #
170 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000171 # audioop.c -- Various Compute Operations on Audio Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000172
173 # Database:
174 # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000175 # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
176
177 # Cryptography:
178 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000179
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000180# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000181# fpectlmodule.obj \
182# fpetestmodule.obj \
183# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000184# grpmodule.obj \
185# mpzmodule.obj \
186# nismodule.obj \
187# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000188# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000189# readline.obj \
190# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000191# syslogmodule.obj \
192# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000193
194 # User Interface:
195# _tkinter.obj \
196# stdwinmodule.obj \
197# cursesmodule.obj \
198# tclNotify.obj \
199# tkappinit.obj \
200 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
201
202 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
203 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
204 # dlmodule.c -- Some Wierd Form of Data Processing Module
205 # xxmodule.c -- Template to Create Your Own Module
206
207#
208# Standalone Parser Generator Program (Shares Some of Python's Modules)
209PGEN = \
210 PGenMain.obj \
211 PGen.obj \
212 PrintGrammar.obj \
213 ListNode.obj \
214 Grammar.obj \
215 BitSet.obj \
216 FirstSets.obj \
217 MetaGrammar.obj
218
219# Omitted Parser Elements (and Reason):
220 # intrcheck.c -- Not Referenced by Anyone (?)
221
222##################
223# Macros and Flags
224##################
225_BASE = /Q /W2 /I$(PROJINCLUDE)
226 # /Q = Omit IBM Copyright
227 # /W2 = Show Warnings/Errors Only
228 # /Fi = Create Precompiled Headers
229 # /Si = Utilize Precompiled Headers
230
231_GEN = /G4 /Gm /Gd /B"/STACK:360000"
232 # /G4 = Generate Code for 486 (Use 386 for Debugger)
233 # /Gm = Use Multithread Runtime
234 # /Gd = Dynamically Load Runtime
235 # /Gs = Remove Code for Stack Probes
236 # /Gx = Remove C++ Exception-Handling Info
237 # /Tdp = Generate Code for C++ Templates
238 # /Rn = Generate Code without a Runtime
239 # /B"/STACK:n" = Set Stack Size
240
241_OPT = /O /Gl
242 # /O = Enable Speed-Optimizations
243 # /Ol = Pass Code Thru Intermediate Linker
244 # /Gu = Advise Linker All Ext Data is ID'd
245 # /Gl = Have Linker Remove Unused Fns
246
247_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
248 # /Ti = Embed Debugger/Analyzer Recs
249 # /Tm = Enable Debug Memory Fns
250 # /Tx = Request Full Dump Upon Exception
251 # /DDEBUG = Enable App-Internal Debugging Code
252 # /DUSE_SOCKET =
253 # /DUSE_DL_EXPORT =
254
255_OUT =
256 # /Fb = Embed Browser Recs
257 # /Gh = Generate Code for Profiler Hooks
258 # /Fl = Output C/C++ Listing Files
259 # /Lf = Provide Full (Detailed) Listing Files
260 # /Fm. = Output Linker Map File
261 # /Ft. = Output C++ Template Resolution Files
262
263_MAP = /FmNoise\$(.TARGET,B,>.map)
264
265_DLL = /Ge-
266_EXE = /Ge
267 # /Ge = Create an EXE, not DLL
268
269CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
270CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
271
272###################
273# Primary Target(s)
274###################
275All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
276
277##############
278#
279##############
280
281# Object Library of All Essential Python Routines
282PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
283 %do "%.lib"
284
285Python15.dll: Compile.obj PyCore.lib Python.def
286 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
287
288Compile.obj: Compile.c
289 %do ".c.obj" CFLAGS+=$(_DLL)
290
291# Import Library for Using the Python15.dll
292Python15.lib: Python.def
293 %do ".def.lib"
294
295# Small Program to Start Interpreter in Python15.dll
296Python.exe: Python.obj Python15.lib
297 %do "%.exe" CPPFLAGS+=$(_MAP)
298
299#Python.obj: Python.c
300# %do ".c.obj" CFLAGS+=$(_EXE)
301
302PGen.exe: $(PGEN) PyCore.lib
303 %do "%.exe" CPPFLAGS+=$(_MAP)
304
305#######################
306# Miscellaneous Targets
307#######################
308
309# Remove Intermediate Targets but Leave Executable Binaries
310clean:
311 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
312 -- Del /Q /Y Noise >NUL 2>&1
313 -- Del /Q $(ERRS) >NUL 2>&1
314
315# Remove All Targets, Including Final Binaries
316distclean: clean
317 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
318 -- Del /Q Python15.dll Python.exe >NUL 2>&1
319
320release: Python.exe Python15.dll Python15.lib
321 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
322 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
323 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
324
325test:
326 python ..\..\lib\test\regrtest.py
327
328# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
329depend:
330 D:\OpusMake\os2mkmf -c -s
331
332### OPUS MKMF: Do not remove this line! Generated dependencies follow.
333
334_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000335 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000336 import.h intobject.h intrcheck.h listobject.h longobject.h \
337 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
338 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
339 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
340 traceback.h tupleobject.h
341
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000342arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000343 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000344 import.h intobject.h intrcheck.h listobject.h longobject.h \
345 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
346 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
347 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
348 traceback.h tupleobject.h
349
350audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000351 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000352 import.h intobject.h intrcheck.h listobject.h longobject.h \
353 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
354 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
355 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
356 stringobject.h sysmodule.h traceback.h tupleobject.h
357
358binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000359 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000360 import.h intobject.h intrcheck.h listobject.h longobject.h \
361 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
362 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
363 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
364 traceback.h tupleobject.h
365
366bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000367 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000368 import.h intobject.h intrcheck.h listobject.h longobject.h \
369 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
370 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
371 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
372 traceback.h tupleobject.h
373
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000374cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000375 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000376 import.h intobject.h intrcheck.h listobject.h longobject.h \
377 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
378 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
379 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
380 stringobject.h sysmodule.h traceback.h tupleobject.h
381
382cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000383 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000384 funcobject.h import.h intobject.h intrcheck.h listobject.h \
385 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
386 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
387 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
388 stringobject.h sysmodule.h traceback.h tupleobject.h
389
390cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000391 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000392 import.h intobject.h intrcheck.h listobject.h longobject.h \
393 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
394 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
395 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
396 traceback.h tupleobject.h
397
398cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000399 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000400 funcobject.h import.h intobject.h intrcheck.h listobject.h \
401 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
402 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
403 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
404 stringobject.h sysmodule.h traceback.h tupleobject.h
405
406cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000407 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000408 funcobject.h import.h intobject.h intrcheck.h listobject.h \
409 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
410 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
411 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
412 stringobject.h sysmodule.h traceback.h tupleobject.h
413
414dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000415 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000416 import.h intobject.h intrcheck.h listobject.h longobject.h \
417 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
418 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
419 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
420 traceback.h tupleobject.h
421
422dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000423 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000424 import.h intobject.h intrcheck.h listobject.h longobject.h \
425 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
426 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
427 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
428 traceback.h tupleobject.h
429
430errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000431 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000432 import.h intobject.h intrcheck.h listobject.h longobject.h \
433 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
434 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
435 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
436 traceback.h tupleobject.h
437
438errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000439 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000440 import.h intobject.h intrcheck.h listobject.h longobject.h \
441 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
442 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
443 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
444 traceback.h tupleobject.h
445
446fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000447 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000448 fileobject.h floatobject.h funcobject.h import.h intobject.h \
449 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
450 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
451 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
452 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
453
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000454fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000455 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000456 funcobject.h import.h intobject.h intrcheck.h listobject.h \
457 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
458 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
459 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
460 stringobject.h sysmodule.h traceback.h tupleobject.h
461
462fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000463 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000464 funcobject.h import.h intobject.h intrcheck.h listobject.h \
465 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
466 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
467 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
468 stringobject.h sysmodule.h traceback.h tupleobject.h
469
470gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000471 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000472 import.h intobject.h intrcheck.h listobject.h longobject.h \
473 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
474 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
475 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
476 traceback.h tupleobject.h
477
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000478getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000479
480getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000481 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000482 import.h intobject.h intrcheck.h listobject.h longobject.h \
483 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
484 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
485 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
486 sysmodule.h traceback.h tupleobject.h
487
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000488grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000489 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000490 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
491 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
492 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
493 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
494 traceback.h tupleobject.h
495
496imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000497 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000498 import.h intobject.h intrcheck.h listobject.h longobject.h \
499 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
500 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
501 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
502 traceback.h tupleobject.h
503
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000504main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000505 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000506 import.h intobject.h intrcheck.h listobject.h longobject.h \
507 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
508 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
509 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
510 traceback.h tupleobject.h
511
512mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000513 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000514 import.h intobject.h intrcheck.h listobject.h longobject.h \
515 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
516 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
517 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
518 stringobject.h sysmodule.h traceback.h tupleobject.h
519
Tim Peters1ca12962001-12-04 03:18:48 +0000520mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000521 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000522 funcobject.h import.h intobject.h intrcheck.h listobject.h \
523 longintrepr.h longobject.h methodobject.h modsupport.h \
524 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
525 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
526 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
527
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000528nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000529 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000530 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
531 listobject.h longobject.h methodobject.h modsupport.h \
532 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
533 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
534 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
535
536operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000537 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000538 import.h intobject.h intrcheck.h listobject.h longobject.h \
539 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
540 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
541 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
542 traceback.h tupleobject.h
543
544parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000545 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000546 funcobject.h graminit.h import.h intobject.h intrcheck.h \
547 listobject.h longobject.h methodobject.h modsupport.h \
548 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
549 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
550 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
551 traceback.h tupleobject.h
552
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000553posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000554 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000555 import.h intobject.h intrcheck.h listobject.h longobject.h \
556 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
557 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
558 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
559 sysmodule.h traceback.h tupleobject.h
560
561posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000562 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000563 import.h intobject.h intrcheck.h listobject.h longobject.h \
564 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
565 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
566 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
567 sysmodule.h traceback.h tupleobject.h
568
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000569pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000570 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000571 import.h intobject.h intrcheck.h listobject.h longobject.h \
572 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
573 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
574 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
575 sysmodule.h traceback.h tupleobject.h
576
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000577readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000578 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000579 import.h intobject.h intrcheck.h listobject.h longobject.h \
580 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
581 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
582 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
583 traceback.h tupleobject.h
584
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000585resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000586 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000587 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
588 listobject.h longobject.h methodobject.h modsupport.h \
589 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
590 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
591 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
592
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000593selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000594 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000595 funcobject.h import.h intobject.h intrcheck.h listobject.h \
596 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
597 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
598 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
599 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
600
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000601signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000602 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000603 funcobject.h import.h intobject.h intrcheck.h listobject.h \
604 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
605 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
606 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
607 stringobject.h sysmodule.h traceback.h tupleobject.h
608
609socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
610 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000611 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000612 funcobject.h import.h intobject.h intrcheck.h listobject.h \
613 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
614 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
615 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
616 stringobject.h sysmodule.h traceback.h tupleobject.h
617
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000618structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000619 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000620 funcobject.h import.h intobject.h intrcheck.h listobject.h \
621 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
622 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
623 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
624 stringobject.h sysmodule.h traceback.h tupleobject.h
625
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000626syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000627 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000628 funcobject.h import.h intobject.h intrcheck.h listobject.h \
629 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
630 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
631 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
632 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
633
634termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000635 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000636 import.h intobject.h intrcheck.h listobject.h longobject.h \
637 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
638 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
639 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
640 traceback.h tupleobject.h
641
642threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000643 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000644 funcobject.h import.h intobject.h intrcheck.h listobject.h \
645 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
646 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
647 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
648 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
649
650timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000651 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000652 import.h intobject.h intrcheck.h listobject.h longobject.h \
653 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
654 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
655 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
656 sysmodule.h traceback.h tupleobject.h
657
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000658xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000659 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000660 import.h intobject.h intrcheck.h listobject.h longobject.h \
661 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
662 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
663 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
664 traceback.h tupleobject.h
665
666yuvconvert.obj: yuv.h
667
668zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000669 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000670 import.h intobject.h intrcheck.h listobject.h longobject.h \
671 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
672 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
673 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
674 traceback.h tupleobject.h
675
676abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000677 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000678 import.h intobject.h intrcheck.h listobject.h longobject.h \
679 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
680 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
681 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
682 traceback.h tupleobject.h
683
684classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000685 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000686 import.h intobject.h intrcheck.h listobject.h longobject.h \
687 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
688 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
689 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
690 structmember.h sysmodule.h traceback.h tupleobject.h
691
692cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000693 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000694 import.h intobject.h intrcheck.h listobject.h longobject.h \
695 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
696 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
697 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
698 traceback.h tupleobject.h
699
700complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000701 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000702 funcobject.h import.h intobject.h intrcheck.h listobject.h \
703 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
704 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
705 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
706 stringobject.h sysmodule.h traceback.h tupleobject.h
707
708dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000709 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000710 import.h intobject.h intrcheck.h listobject.h longobject.h \
711 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
712 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
713 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
714 traceback.h tupleobject.h
715
716fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000717 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000718 import.h intobject.h intrcheck.h listobject.h longobject.h \
719 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
720 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
721 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
722 structmember.h sysmodule.h traceback.h tupleobject.h
723
724floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000725 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000726 import.h intobject.h intrcheck.h listobject.h longobject.h \
727 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
728 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
729 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
730 stringobject.h sysmodule.h traceback.h tupleobject.h
731
732frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000733 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000734 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
735 listobject.h longobject.h methodobject.h modsupport.h \
736 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
737 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
738 rangeobject.h sliceobject.h stringobject.h structmember.h \
739 sysmodule.h traceback.h tupleobject.h
740
741funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000742 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000743 funcobject.h import.h intobject.h intrcheck.h listobject.h \
744 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
745 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
746 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
747 stringobject.h structmember.h sysmodule.h traceback.h \
748 tupleobject.h
749
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000750listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000751 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000752 import.h intobject.h intrcheck.h listobject.h longobject.h \
753 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
754 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
755 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
756 traceback.h tupleobject.h
757
Tim Peters1ca12962001-12-04 03:18:48 +0000758longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000759 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000760 funcobject.h import.h intobject.h intrcheck.h listobject.h \
761 longintrepr.h longobject.h methodobject.h modsupport.h \
762 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
763 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
764 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
765 tupleobject.h
766
767methodobject.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 token.h traceback.h tupleobject.h
774
775moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000776 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000777 funcobject.h import.h intobject.h intrcheck.h listobject.h \
778 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
779 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
780 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
781 stringobject.h sysmodule.h traceback.h tupleobject.h
782
783object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000784 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000785 import.h intobject.h intrcheck.h listobject.h longobject.h \
786 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
787 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
788 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
789 traceback.h tupleobject.h
790
791rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000792 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000793 import.h intobject.h intrcheck.h listobject.h longobject.h \
794 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
795 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
796 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
797 traceback.h tupleobject.h
798
799sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000800 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000801 import.h intobject.h intrcheck.h listobject.h longobject.h \
802 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
803 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
804 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
805 traceback.h tupleobject.h
806
807stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000808 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000809 funcobject.h import.h intobject.h intrcheck.h listobject.h \
810 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
811 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
812 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
813 stringobject.h sysmodule.h traceback.h tupleobject.h
814
815tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000816 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000817 import.h intobject.h intrcheck.h listobject.h longobject.h \
818 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
819 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
820 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
821 traceback.h tupleobject.h
822
823typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000824 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000825 import.h intobject.h intrcheck.h listobject.h longobject.h \
826 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
827 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
828 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
829 traceback.h tupleobject.h
830
831xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000832 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000833 import.h intobject.h intrcheck.h listobject.h longobject.h \
834 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
835 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
836 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
837 traceback.h tupleobject.h
838
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000839acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000840 parser.h pgenheaders.h pydebug.h token.h
841
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000842bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000843
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000844firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000845 pgenheaders.h pydebug.h token.h
846
Tim Peters1ca12962001-12-04 03:18:48 +0000847grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000848 pgenheaders.h pydebug.h token.h
849
Tim Peters1ca12962001-12-04 03:18:48 +0000850grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000851 pgenheaders.h pydebug.h token.h
852
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000853intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000854
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000855listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000856 token.h
857
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000858metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000859 myproto.h pgen.h pgenheaders.h pydebug.h
860
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000861myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000862
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000863node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000864
Tim Peters1ca12962001-12-04 03:18:48 +0000865parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000866 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
867
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000868parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000869 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
870 tokenizer.h
871
Tim Peters1ca12962001-12-04 03:18:48 +0000872pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000873 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
874
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000875pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000876 parsetok.h pgen.h pgenheaders.h pydebug.h
877
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000878printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000879 pgenheaders.h pydebug.h
880
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000881tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000882 pydebug.h token.h tokenizer.h
883
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885
886bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000887 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000888 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
889 listobject.h longobject.h methodobject.h modsupport.h \
890 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
891 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
892 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
893 traceback.h tupleobject.h
894
895ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000896 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000897 floatobject.h frameobject.h funcobject.h import.h intobject.h \
898 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
899 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
900 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
901 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
902 tupleobject.h
903
904compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000905 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000906 funcobject.h graminit.h import.h intobject.h intrcheck.h \
907 listobject.h longobject.h methodobject.h modsupport.h \
908 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
909 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
910 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
911 structmember.h sysmodule.h token.h traceback.h tupleobject.h
912
913errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000914 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000915 import.h intobject.h intrcheck.h listobject.h longobject.h \
916 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
917 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
918 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
919 traceback.h tupleobject.h
920
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000921fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000922
923frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000924 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000925 import.h intobject.h intrcheck.h listobject.h longobject.h \
926 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
927 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
928 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
929 traceback.h tupleobject.h
930
931frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000932 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000933 import.h intobject.h intrcheck.h listobject.h longobject.h \
934 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
935 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
936 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
937 traceback.h tupleobject.h
938
939getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000940 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000941 import.h intobject.h intrcheck.h listobject.h longobject.h \
942 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
943 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
944 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
945 traceback.h tupleobject.h
946
947getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000948 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000949 import.h intobject.h intrcheck.h listobject.h longobject.h \
950 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
951 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
952 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
953 traceback.h tupleobject.h
954
955getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000956 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000957 funcobject.h import.h intobject.h intrcheck.h listobject.h \
958 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
959 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
960 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
961 stringobject.h sysmodule.h traceback.h tupleobject.h
962
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000963getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000964
965getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000966 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000967 import.h intobject.h intrcheck.h listobject.h longobject.h \
968 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
969 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
970 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
971 traceback.h tupleobject.h
972
973getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000974 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000975 import.h intobject.h intrcheck.h listobject.h longobject.h \
976 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
977 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
978 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
979 stringobject.h sysmodule.h traceback.h tupleobject.h
980
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000981graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000982 pgenheaders.h pydebug.h
983
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000984hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000985
986import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000987 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000988 fileobject.h floatobject.h funcobject.h import.h importdl.h \
989 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
990 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
991 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
992 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
993 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
994
995importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000996 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000997 import.h importdl.h intobject.h intrcheck.h listobject.h \
998 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
999 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1000 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1001 stringobject.h sysmodule.h traceback.h tupleobject.h
1002
1003marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001004 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001005 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1006 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1007 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1008 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1009 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1010
1011modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001012 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001013 import.h intobject.h intrcheck.h listobject.h longobject.h \
1014 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1015 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1016 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1017 traceback.h tupleobject.h
1018
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001019mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001020
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001021pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001022
1023pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001024 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001025 import.h intobject.h intrcheck.h listobject.h longobject.h \
1026 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1027 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1028 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1029 traceback.h tupleobject.h
1030
1031pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001032 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001033 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1034 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1035 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1036 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1037 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1038 stringobject.h sysmodule.h traceback.h tupleobject.h
1039
1040sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001041 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001042 import.h intobject.h intrcheck.h listobject.h longobject.h \
1043 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1044 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1045 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1046 traceback.h tupleobject.h
1047
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001048strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001049
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001050strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001051
1052structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001053 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001054 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1055 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1056 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1057 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1058 stringobject.h structmember.h sysmodule.h traceback.h \
1059 tupleobject.h
1060
1061sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001062 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001063 import.h intobject.h intrcheck.h listobject.h longobject.h \
1064 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1065 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1066 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1067 sysmodule.h traceback.h tupleobject.h
1068
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001069thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001070
1071traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001072 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001073 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1074 listobject.h longobject.h methodobject.h modsupport.h \
1075 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1076 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1077 rangeobject.h sliceobject.h stringobject.h structmember.h \
1078 sysmodule.h traceback.h tupleobject.h