blob: aa12c964553308c06461adfa5e0255dea338ba5c [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 ErrnoModule.obj \
146 GetBuildInfo.obj \
147 GetPathP.obj \
148 Main.obj \
149 MathModule.obj \
150 MD5c.obj \
151 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000152 Operator.obj \
153 PosixModule.obj \
154 RegexModule.obj \
155 RegExpr.obj \
156 ReopModule.obj \
157 SelectModule.obj \
158 SignalModule.obj \
159 SocketModule.obj \
160 SoundEx.obj \
161 StropModule.obj \
162 StructModule.obj \
163 TimeModule.obj \
Amaury Forgeot d'Arcb0c29162008-11-22 22:18:04 +0000164 ThreadModule.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000165
166# Omitted Modules (and Description/Reason):
167 #
168 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000169 # audioop.c -- Various Compute Operations on Audio Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000170
171 # Database:
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000172 # _dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
173 # _gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000174
175 # Cryptography:
176 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000177
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000178# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000179# fpectlmodule.obj \
180# fpetestmodule.obj \
181# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000182# grpmodule.obj \
183# mpzmodule.obj \
184# nismodule.obj \
185# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000186# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000187# readline.obj \
188# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000189# syslogmodule.obj \
190# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000191
192 # User Interface:
193# _tkinter.obj \
194# stdwinmodule.obj \
195# cursesmodule.obj \
196# tclNotify.obj \
197# tkappinit.obj \
198 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
199
200 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
201 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000202 # xxmodule.c -- Template to Create Your Own Module
203
204#
205# Standalone Parser Generator Program (Shares Some of Python's Modules)
206PGEN = \
207 PGenMain.obj \
208 PGen.obj \
209 PrintGrammar.obj \
210 ListNode.obj \
211 Grammar.obj \
212 BitSet.obj \
213 FirstSets.obj \
214 MetaGrammar.obj
215
216# Omitted Parser Elements (and Reason):
217 # intrcheck.c -- Not Referenced by Anyone (?)
218
219##################
220# Macros and Flags
221##################
222_BASE = /Q /W2 /I$(PROJINCLUDE)
223 # /Q = Omit IBM Copyright
224 # /W2 = Show Warnings/Errors Only
225 # /Fi = Create Precompiled Headers
226 # /Si = Utilize Precompiled Headers
227
228_GEN = /G4 /Gm /Gd /B"/STACK:360000"
229 # /G4 = Generate Code for 486 (Use 386 for Debugger)
230 # /Gm = Use Multithread Runtime
231 # /Gd = Dynamically Load Runtime
232 # /Gs = Remove Code for Stack Probes
233 # /Gx = Remove C++ Exception-Handling Info
234 # /Tdp = Generate Code for C++ Templates
235 # /Rn = Generate Code without a Runtime
236 # /B"/STACK:n" = Set Stack Size
237
238_OPT = /O /Gl
239 # /O = Enable Speed-Optimizations
240 # /Ol = Pass Code Thru Intermediate Linker
241 # /Gu = Advise Linker All Ext Data is ID'd
242 # /Gl = Have Linker Remove Unused Fns
243
244_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
245 # /Ti = Embed Debugger/Analyzer Recs
246 # /Tm = Enable Debug Memory Fns
247 # /Tx = Request Full Dump Upon Exception
248 # /DDEBUG = Enable App-Internal Debugging Code
249 # /DUSE_SOCKET =
250 # /DUSE_DL_EXPORT =
251
252_OUT =
253 # /Fb = Embed Browser Recs
254 # /Gh = Generate Code for Profiler Hooks
255 # /Fl = Output C/C++ Listing Files
256 # /Lf = Provide Full (Detailed) Listing Files
257 # /Fm. = Output Linker Map File
258 # /Ft. = Output C++ Template Resolution Files
259
260_MAP = /FmNoise\$(.TARGET,B,>.map)
261
262_DLL = /Ge-
263_EXE = /Ge
264 # /Ge = Create an EXE, not DLL
265
266CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
267CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
268
269###################
270# Primary Target(s)
271###################
272All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
273
274##############
275#
276##############
277
278# Object Library of All Essential Python Routines
279PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
280 %do "%.lib"
281
282Python15.dll: Compile.obj PyCore.lib Python.def
283 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
284
285Compile.obj: Compile.c
286 %do ".c.obj" CFLAGS+=$(_DLL)
287
288# Import Library for Using the Python15.dll
289Python15.lib: Python.def
290 %do ".def.lib"
291
292# Small Program to Start Interpreter in Python15.dll
293Python.exe: Python.obj Python15.lib
294 %do "%.exe" CPPFLAGS+=$(_MAP)
295
296#Python.obj: Python.c
297# %do ".c.obj" CFLAGS+=$(_EXE)
298
299PGen.exe: $(PGEN) PyCore.lib
300 %do "%.exe" CPPFLAGS+=$(_MAP)
301
302#######################
303# Miscellaneous Targets
304#######################
305
306# Remove Intermediate Targets but Leave Executable Binaries
307clean:
308 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
309 -- Del /Q /Y Noise >NUL 2>&1
310 -- Del /Q $(ERRS) >NUL 2>&1
311
312# Remove All Targets, Including Final Binaries
313distclean: clean
314 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
315 -- Del /Q Python15.dll Python.exe >NUL 2>&1
316
317release: Python.exe Python15.dll Python15.lib
318 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
319 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
320 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
321
322test:
323 python ..\..\lib\test\regrtest.py
324
325# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
326depend:
327 D:\OpusMake\os2mkmf -c -s
328
329### OPUS MKMF: Do not remove this line! Generated dependencies follow.
330
331_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000332 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000333 import.h intobject.h intrcheck.h listobject.h longobject.h \
334 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
335 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
336 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
337 traceback.h tupleobject.h
338
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000339arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000340 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000341 import.h intobject.h intrcheck.h listobject.h longobject.h \
342 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
343 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
344 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
345 traceback.h tupleobject.h
346
347audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000348 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000349 import.h intobject.h intrcheck.h listobject.h longobject.h \
350 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
351 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
352 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
353 stringobject.h sysmodule.h traceback.h tupleobject.h
354
355binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000356 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000357 import.h intobject.h intrcheck.h listobject.h longobject.h \
358 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
359 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
360 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
361 traceback.h tupleobject.h
362
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000363cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000364 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000365 import.h intobject.h intrcheck.h listobject.h longobject.h \
366 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
367 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
368 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
369 stringobject.h sysmodule.h traceback.h tupleobject.h
370
371cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Georg Brandl03124942008-06-10 15:50:56 +0000372 pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000373 funcobject.h import.h intobject.h intrcheck.h listobject.h \
374 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
375 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
376 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
377 stringobject.h sysmodule.h traceback.h tupleobject.h
378
379cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000380 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000381 import.h intobject.h intrcheck.h listobject.h longobject.h \
382 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
383 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
384 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
385 traceback.h tupleobject.h
386
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000387cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000388 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000389 funcobject.h import.h intobject.h intrcheck.h listobject.h \
390 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
391 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
392 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
393 stringobject.h sysmodule.h traceback.h tupleobject.h
394
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000395_dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000396 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000397 import.h intobject.h intrcheck.h listobject.h longobject.h \
398 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
399 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
400 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
401 traceback.h tupleobject.h
402
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000403errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000404 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000405 import.h intobject.h intrcheck.h listobject.h longobject.h \
406 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
407 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
408 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
409 traceback.h tupleobject.h
410
411errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000412 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000413 import.h intobject.h intrcheck.h listobject.h longobject.h \
414 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
415 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
416 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
417 traceback.h tupleobject.h
418
419fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000420 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000421 fileobject.h floatobject.h funcobject.h import.h intobject.h \
422 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
423 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
424 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
425 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
426
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000428 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000429 funcobject.h import.h intobject.h intrcheck.h listobject.h \
430 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
431 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
432 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
433 stringobject.h sysmodule.h traceback.h tupleobject.h
434
435fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000436 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000437 funcobject.h import.h intobject.h intrcheck.h listobject.h \
438 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
439 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
440 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
441 stringobject.h sysmodule.h traceback.h tupleobject.h
442
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000443_gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000444 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000445 import.h intobject.h intrcheck.h listobject.h longobject.h \
446 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
447 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
448 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
449 traceback.h tupleobject.h
450
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000451getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000452
453getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000454 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000455 import.h intobject.h intrcheck.h listobject.h longobject.h \
456 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
457 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
458 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
459 sysmodule.h traceback.h tupleobject.h
460
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000461grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000462 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000463 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
464 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
465 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
466 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
467 traceback.h tupleobject.h
468
469imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000470 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000471 import.h intobject.h intrcheck.h listobject.h longobject.h \
472 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
473 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
474 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
475 traceback.h tupleobject.h
476
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000477main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000478 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000479 import.h intobject.h intrcheck.h listobject.h longobject.h \
480 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
481 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
482 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
483 traceback.h tupleobject.h
484
485mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000486 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000487 import.h intobject.h intrcheck.h listobject.h longobject.h \
488 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
489 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
490 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
491 stringobject.h sysmodule.h traceback.h tupleobject.h
492
Tim Peters1ca12962001-12-04 03:18:48 +0000493mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000494 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000495 funcobject.h import.h intobject.h intrcheck.h listobject.h \
496 longintrepr.h longobject.h methodobject.h modsupport.h \
497 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
498 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
499 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
500
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000501nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000502 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000503 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
504 listobject.h longobject.h methodobject.h modsupport.h \
505 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
506 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
507 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
508
509operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000510 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000511 import.h intobject.h intrcheck.h listobject.h longobject.h \
512 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
513 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
514 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
515 traceback.h tupleobject.h
516
517parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000518 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000519 funcobject.h graminit.h import.h intobject.h intrcheck.h \
520 listobject.h longobject.h methodobject.h modsupport.h \
521 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
522 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
523 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
524 traceback.h tupleobject.h
525
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000526posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000527 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000528 import.h intobject.h intrcheck.h listobject.h longobject.h \
529 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
530 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
531 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
532 sysmodule.h traceback.h tupleobject.h
533
534posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000535 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000536 import.h intobject.h intrcheck.h listobject.h longobject.h \
537 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
538 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
539 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
540 sysmodule.h traceback.h tupleobject.h
541
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000542pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000543 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000544 import.h intobject.h intrcheck.h listobject.h longobject.h \
545 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
546 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
547 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
548 sysmodule.h traceback.h tupleobject.h
549
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000550readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000551 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000552 import.h intobject.h intrcheck.h listobject.h longobject.h \
553 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
554 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
555 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
556 traceback.h tupleobject.h
557
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000558resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000559 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000560 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
561 listobject.h longobject.h methodobject.h modsupport.h \
562 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
563 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
564 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
565
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000566selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000567 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000568 funcobject.h import.h intobject.h intrcheck.h listobject.h \
569 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
570 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
571 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
572 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
573
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000574signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000575 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000576 funcobject.h import.h intobject.h intrcheck.h listobject.h \
577 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
578 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
579 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
580 stringobject.h sysmodule.h traceback.h tupleobject.h
581
582socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
583 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000584 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000585 funcobject.h import.h intobject.h intrcheck.h listobject.h \
586 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
587 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
588 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
589 stringobject.h sysmodule.h traceback.h tupleobject.h
590
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000591structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000592 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000593 funcobject.h import.h intobject.h intrcheck.h listobject.h \
594 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
595 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
596 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
597 stringobject.h sysmodule.h traceback.h tupleobject.h
598
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000599syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000600 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000601 funcobject.h import.h intobject.h intrcheck.h listobject.h \
602 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
603 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
604 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
605 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
606
607termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000608 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000609 import.h intobject.h intrcheck.h listobject.h longobject.h \
610 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
611 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
612 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
613 traceback.h tupleobject.h
614
Georg Brandl2067bfd2008-05-25 13:05:15 +0000615_threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000616 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000617 funcobject.h import.h intobject.h intrcheck.h listobject.h \
618 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
619 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
620 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
621 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
622
623timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000624 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000625 import.h intobject.h intrcheck.h listobject.h longobject.h \
626 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
627 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
628 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
629 sysmodule.h traceback.h tupleobject.h
630
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000631xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000632 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000633 import.h intobject.h intrcheck.h listobject.h longobject.h \
634 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
635 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
636 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
637 traceback.h tupleobject.h
638
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000639zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000640 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000641 import.h intobject.h intrcheck.h listobject.h longobject.h \
642 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
643 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
644 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
645 traceback.h tupleobject.h
646
647abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000648 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000649 import.h intobject.h intrcheck.h listobject.h longobject.h \
650 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
651 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
652 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
653 traceback.h tupleobject.h
654
655classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000656 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000657 import.h intobject.h intrcheck.h listobject.h longobject.h \
658 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
659 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
660 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
661 structmember.h sysmodule.h traceback.h tupleobject.h
662
663cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000664 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000665 import.h intobject.h intrcheck.h listobject.h longobject.h \
666 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
667 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
668 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
669 traceback.h tupleobject.h
670
671complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000672 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000673 funcobject.h import.h intobject.h intrcheck.h listobject.h \
674 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
675 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
676 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
677 stringobject.h sysmodule.h traceback.h tupleobject.h
678
679dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000680 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000681 import.h intobject.h intrcheck.h listobject.h longobject.h \
682 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
683 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
684 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
685 traceback.h tupleobject.h
686
687fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000688 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000689 import.h intobject.h intrcheck.h listobject.h longobject.h \
690 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
691 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
692 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
693 structmember.h sysmodule.h traceback.h tupleobject.h
694
695floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000696 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000697 import.h intobject.h intrcheck.h listobject.h longobject.h \
698 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
699 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
700 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
701 stringobject.h sysmodule.h traceback.h tupleobject.h
702
703frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000704 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000705 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
706 listobject.h longobject.h methodobject.h modsupport.h \
707 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
708 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
709 rangeobject.h sliceobject.h stringobject.h structmember.h \
710 sysmodule.h traceback.h tupleobject.h
711
712funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000713 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000714 funcobject.h import.h intobject.h intrcheck.h listobject.h \
715 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
716 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
717 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
718 stringobject.h structmember.h sysmodule.h traceback.h \
719 tupleobject.h
720
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000721listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000722 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000723 import.h intobject.h intrcheck.h listobject.h longobject.h \
724 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
725 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
726 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
727 traceback.h tupleobject.h
728
Tim Peters1ca12962001-12-04 03:18:48 +0000729longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000730 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000731 funcobject.h import.h intobject.h intrcheck.h listobject.h \
732 longintrepr.h longobject.h methodobject.h modsupport.h \
733 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
734 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
735 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
736 tupleobject.h
737
738methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000739 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000740 funcobject.h import.h intobject.h intrcheck.h listobject.h \
741 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
742 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
743 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
744 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
745
746moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000747 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000748 funcobject.h import.h intobject.h intrcheck.h listobject.h \
749 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
750 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
751 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
752 stringobject.h sysmodule.h traceback.h tupleobject.h
753
754object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000755 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000756 import.h intobject.h intrcheck.h listobject.h longobject.h \
757 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
758 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
759 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
760 traceback.h tupleobject.h
761
762rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000763 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000764 import.h intobject.h intrcheck.h listobject.h longobject.h \
765 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
766 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
767 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
768 traceback.h tupleobject.h
769
770sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000771 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000772 import.h intobject.h intrcheck.h listobject.h longobject.h \
773 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
774 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
775 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
776 traceback.h tupleobject.h
777
778stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000779 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000780 funcobject.h import.h intobject.h intrcheck.h listobject.h \
781 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
782 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
783 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
784 stringobject.h sysmodule.h traceback.h tupleobject.h
785
786tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000787 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000788 import.h intobject.h intrcheck.h listobject.h longobject.h \
789 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
790 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
791 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
792 traceback.h tupleobject.h
793
794typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000795 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000796 import.h intobject.h intrcheck.h listobject.h longobject.h \
797 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
798 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
799 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
800 traceback.h tupleobject.h
801
802xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000803 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000804 import.h intobject.h intrcheck.h listobject.h longobject.h \
805 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
806 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
807 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
808 traceback.h tupleobject.h
809
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000810acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000811 parser.h pgenheaders.h pydebug.h token.h
812
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000813bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000814
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000815firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000816 pgenheaders.h pydebug.h token.h
817
Tim Peters1ca12962001-12-04 03:18:48 +0000818grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000819 pgenheaders.h pydebug.h token.h
820
Tim Peters1ca12962001-12-04 03:18:48 +0000821grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000822 pgenheaders.h pydebug.h token.h
823
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000824intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000825
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000826listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000827 token.h
828
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000829metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000830 myproto.h pgen.h pgenheaders.h pydebug.h
831
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000832myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000833
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000834node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000835
Tim Peters1ca12962001-12-04 03:18:48 +0000836parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000837 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
838
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000839parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000840 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
841 tokenizer.h
842
Tim Peters1ca12962001-12-04 03:18:48 +0000843pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000844 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
845
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000846pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000847 parsetok.h pgen.h pgenheaders.h pydebug.h
848
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000849printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000850 pgenheaders.h pydebug.h
851
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000852tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000853 pydebug.h token.h tokenizer.h
854
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000855atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000856
857bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000858 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000859 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
860 listobject.h longobject.h methodobject.h modsupport.h \
861 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
862 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
863 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
864 traceback.h tupleobject.h
865
866ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000867 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000868 floatobject.h frameobject.h funcobject.h import.h intobject.h \
869 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
870 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
871 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
872 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
873 tupleobject.h
874
875compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000876 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000877 funcobject.h graminit.h import.h intobject.h intrcheck.h \
878 listobject.h longobject.h methodobject.h modsupport.h \
879 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
880 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
881 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
882 structmember.h sysmodule.h token.h traceback.h tupleobject.h
883
884errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000885 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000886 import.h intobject.h intrcheck.h listobject.h longobject.h \
887 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
888 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
889 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
890 traceback.h tupleobject.h
891
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000892fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000893
894frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000895 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000896 import.h intobject.h intrcheck.h listobject.h longobject.h \
897 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
898 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
899 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
900 traceback.h tupleobject.h
901
902frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000903 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000904 import.h intobject.h intrcheck.h listobject.h longobject.h \
905 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
906 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
907 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
908 traceback.h tupleobject.h
909
910getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000911 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000912 import.h intobject.h intrcheck.h listobject.h longobject.h \
913 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
914 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
915 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
916 traceback.h tupleobject.h
917
918getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000919 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000920 import.h intobject.h intrcheck.h listobject.h longobject.h \
921 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
922 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
923 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
924 traceback.h tupleobject.h
925
926getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000927 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000928 funcobject.h import.h intobject.h intrcheck.h listobject.h \
929 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
930 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
931 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
932 stringobject.h sysmodule.h traceback.h tupleobject.h
933
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000934getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000935 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000936 import.h intobject.h intrcheck.h listobject.h longobject.h \
937 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
938 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
939 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
940 traceback.h tupleobject.h
941
942getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000943 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000944 import.h intobject.h intrcheck.h listobject.h longobject.h \
945 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
946 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
947 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
948 stringobject.h sysmodule.h traceback.h tupleobject.h
949
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000950graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000951 pgenheaders.h pydebug.h
952
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000953hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000954
955import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000956 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000957 fileobject.h floatobject.h funcobject.h import.h importdl.h \
958 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
959 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
960 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
961 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
962 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
963
964importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000965 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000966 import.h importdl.h intobject.h intrcheck.h listobject.h \
967 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
968 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
969 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
970 stringobject.h sysmodule.h traceback.h tupleobject.h
971
972marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000973 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000974 funcobject.h import.h intobject.h intrcheck.h listobject.h \
975 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
976 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
977 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
978 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
979
980modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000981 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000982 import.h intobject.h intrcheck.h listobject.h longobject.h \
983 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
984 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
985 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
986 traceback.h tupleobject.h
987
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000988mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000989
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000990pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000991
992pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000993 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000994 import.h intobject.h intrcheck.h listobject.h longobject.h \
995 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
996 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
997 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
998 traceback.h tupleobject.h
999
1000pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001001 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001002 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1003 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1004 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1005 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1006 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1007 stringobject.h sysmodule.h traceback.h tupleobject.h
1008
1009sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001010 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001011 import.h intobject.h intrcheck.h listobject.h longobject.h \
1012 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1013 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1014 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1015 traceback.h tupleobject.h
1016
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001017strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001018
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001019strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001020
1021structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001022 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001023 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1024 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1025 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1026 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1027 stringobject.h structmember.h sysmodule.h traceback.h \
1028 tupleobject.h
1029
1030sysmodule.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 osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1035 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1036 sysmodule.h traceback.h tupleobject.h
1037
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001038thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001039
1040traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001041 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001042 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1043 listobject.h longobject.h methodobject.h modsupport.h \
1044 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1045 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1046 rangeobject.h sliceobject.h stringobject.h structmember.h \
1047 sysmodule.h traceback.h tupleobject.h