blob: 24361d64acee1cf3ed45767f06ee548ebf99c480 [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
363bsddbmodule.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 myproto.h \
367 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
368 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
369 traceback.h tupleobject.h
370
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000371cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000372 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000373 import.h intobject.h intrcheck.h listobject.h longobject.h \
374 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
375 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
379cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Georg Brandl03124942008-06-10 15:50:56 +0000380 pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000381 funcobject.h import.h intobject.h intrcheck.h listobject.h \
382 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
383 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
384 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
385 stringobject.h sysmodule.h traceback.h tupleobject.h
386
387cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000388 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000389 import.h intobject.h intrcheck.h listobject.h longobject.h \
390 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
391 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
392 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
393 traceback.h tupleobject.h
394
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000395cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000396 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000397 funcobject.h import.h intobject.h intrcheck.h listobject.h \
398 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
399 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
400 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
401 stringobject.h sysmodule.h traceback.h tupleobject.h
402
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000403_dbmmodule.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
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000411errno.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
419errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000420 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000421 import.h intobject.h intrcheck.h listobject.h longobject.h \
422 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
423 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
424 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
425 traceback.h tupleobject.h
426
427fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000428 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000429 fileobject.h floatobject.h funcobject.h import.h intobject.h \
430 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
431 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
432 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
433 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
434
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000435fpectlmodule.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
443fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000444 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000445 funcobject.h import.h intobject.h intrcheck.h listobject.h \
446 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
447 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
448 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
449 stringobject.h sysmodule.h traceback.h tupleobject.h
450
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000451_gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000452 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000453 import.h intobject.h intrcheck.h listobject.h longobject.h \
454 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
455 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
456 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
457 traceback.h tupleobject.h
458
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000459getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000460
461getpath.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 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 osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
466 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
467 sysmodule.h traceback.h tupleobject.h
468
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000469grpmodule.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 grp.h 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
477imageop.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
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000485main.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 myproto.h \
489 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
490 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
491 traceback.h tupleobject.h
492
493mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000494 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000495 import.h intobject.h intrcheck.h listobject.h longobject.h \
496 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
497 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
498 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
499 stringobject.h sysmodule.h traceback.h tupleobject.h
500
Tim Peters1ca12962001-12-04 03:18:48 +0000501mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000502 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000503 funcobject.h import.h intobject.h intrcheck.h listobject.h \
504 longintrepr.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
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000509nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000510 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000511 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
512 listobject.h longobject.h methodobject.h modsupport.h \
513 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
514 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
515 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
516
517operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000518 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000519 import.h intobject.h intrcheck.h listobject.h longobject.h \
520 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
521 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
522 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
523 traceback.h tupleobject.h
524
525parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000526 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000527 funcobject.h graminit.h import.h intobject.h intrcheck.h \
528 listobject.h longobject.h methodobject.h modsupport.h \
529 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
530 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
531 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
532 traceback.h tupleobject.h
533
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000534posix.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
542posixmodule.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 mytime.h object.h objimpl.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 +0000550pwdmodule.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 pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
555 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
556 sysmodule.h traceback.h tupleobject.h
557
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000558readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000559 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000560 import.h intobject.h intrcheck.h listobject.h longobject.h \
561 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
562 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
563 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
564 traceback.h tupleobject.h
565
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000566resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000567 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000568 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
569 listobject.h longobject.h methodobject.h modsupport.h \
570 moduleobject.h mymalloc.h myproto.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 +0000574selectmodule.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 myselect.h mytime.h object.h objimpl.h pydebug.h \
579 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
580 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
581
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000582signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000583 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000584 funcobject.h import.h intobject.h intrcheck.h listobject.h \
585 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
586 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
587 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
588 stringobject.h sysmodule.h traceback.h tupleobject.h
589
590socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
591 c:\mptn\include\sys\socket.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 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
596 pyfpe.h 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 +0000599structmodule.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 mymath.h 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 sysmodule.h traceback.h tupleobject.h
606
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000607syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000608 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000609 funcobject.h import.h intobject.h intrcheck.h listobject.h \
610 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
611 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
612 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
613 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
614
615termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000616 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000617 import.h intobject.h intrcheck.h listobject.h longobject.h \
618 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
619 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
620 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
621 traceback.h tupleobject.h
622
Georg Brandl2067bfd2008-05-25 13:05:15 +0000623_threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000624 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000625 funcobject.h import.h intobject.h intrcheck.h listobject.h \
626 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
627 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
628 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
629 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
630
631timemodule.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 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
636 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
637 sysmodule.h traceback.h tupleobject.h
638
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000639xxmodule.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
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000647zlibmodule.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
655abstract.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 sysmodule.h \
661 traceback.h tupleobject.h
662
663classobject.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 \
669 structmember.h sysmodule.h traceback.h tupleobject.h
670
671cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000672 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000673 import.h intobject.h intrcheck.h listobject.h longobject.h \
674 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
675 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
676 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
677 traceback.h tupleobject.h
678
679complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000680 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000681 funcobject.h import.h intobject.h intrcheck.h listobject.h \
682 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
683 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
684 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
685 stringobject.h sysmodule.h traceback.h tupleobject.h
686
687dictobject.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 sysmodule.h \
693 traceback.h tupleobject.h
694
695fileobject.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 myproto.h \
699 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
700 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
701 structmember.h sysmodule.h traceback.h tupleobject.h
702
703floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000704 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000705 import.h intobject.h intrcheck.h listobject.h longobject.h \
706 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
707 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
708 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
709 stringobject.h sysmodule.h traceback.h tupleobject.h
710
711frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000712 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000713 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
714 listobject.h longobject.h methodobject.h modsupport.h \
715 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
716 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
717 rangeobject.h sliceobject.h stringobject.h structmember.h \
718 sysmodule.h traceback.h tupleobject.h
719
720funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000721 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000722 funcobject.h import.h intobject.h intrcheck.h listobject.h \
723 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
724 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
725 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
726 stringobject.h structmember.h sysmodule.h traceback.h \
727 tupleobject.h
728
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000729listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000730 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000731 import.h intobject.h intrcheck.h listobject.h longobject.h \
732 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
733 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
734 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
735 traceback.h tupleobject.h
736
Tim Peters1ca12962001-12-04 03:18:48 +0000737longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000738 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000739 funcobject.h import.h intobject.h intrcheck.h listobject.h \
740 longintrepr.h longobject.h methodobject.h modsupport.h \
741 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
742 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
743 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
744 tupleobject.h
745
746methodobject.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 token.h traceback.h tupleobject.h
753
754moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000755 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000756 funcobject.h import.h intobject.h intrcheck.h listobject.h \
757 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
758 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
759 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
760 stringobject.h sysmodule.h traceback.h tupleobject.h
761
762object.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
770rangeobject.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
778sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000779 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000780 import.h intobject.h intrcheck.h listobject.h longobject.h \
781 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
782 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
783 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
784 traceback.h tupleobject.h
785
786stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000787 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000788 funcobject.h import.h intobject.h intrcheck.h listobject.h \
789 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
790 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
791 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
792 stringobject.h sysmodule.h traceback.h tupleobject.h
793
794tupleobject.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
802typeobject.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
810xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000811 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000812 import.h intobject.h intrcheck.h listobject.h longobject.h \
813 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
814 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
815 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
816 traceback.h tupleobject.h
817
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000818acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000819 parser.h pgenheaders.h pydebug.h token.h
820
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000821bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000822
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000823firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000824 pgenheaders.h pydebug.h token.h
825
Tim Peters1ca12962001-12-04 03:18:48 +0000826grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000827 pgenheaders.h pydebug.h token.h
828
Tim Peters1ca12962001-12-04 03:18:48 +0000829grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000830 pgenheaders.h pydebug.h token.h
831
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000832intrcheck.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 +0000834listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000835 token.h
836
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000837metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000838 myproto.h pgen.h pgenheaders.h pydebug.h
839
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000840myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000841
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000842node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000843
Tim Peters1ca12962001-12-04 03:18:48 +0000844parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000845 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
846
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000847parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000848 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
849 tokenizer.h
850
Tim Peters1ca12962001-12-04 03:18:48 +0000851pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000852 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
853
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000854pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000855 parsetok.h pgen.h pgenheaders.h pydebug.h
856
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000857printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000858 pgenheaders.h pydebug.h
859
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000860tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000861 pydebug.h token.h tokenizer.h
862
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000863atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000864
865bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000866 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
868 listobject.h longobject.h methodobject.h modsupport.h \
869 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
870 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
871 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
872 traceback.h tupleobject.h
873
874ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000875 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000876 floatobject.h frameobject.h funcobject.h import.h intobject.h \
877 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
878 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
879 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
880 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
881 tupleobject.h
882
883compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885 funcobject.h graminit.h import.h intobject.h intrcheck.h \
886 listobject.h longobject.h methodobject.h modsupport.h \
887 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
888 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
889 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
890 structmember.h sysmodule.h token.h traceback.h tupleobject.h
891
892errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000893 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000894 import.h intobject.h intrcheck.h listobject.h longobject.h \
895 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
896 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
897 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
898 traceback.h tupleobject.h
899
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000900fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000901
902frozen.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
910frozenmain.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
918getargs.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
926getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000927 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000928 import.h intobject.h intrcheck.h listobject.h longobject.h \
929 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
930 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
931 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
932 traceback.h tupleobject.h
933
934getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000935 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000936 funcobject.h import.h intobject.h intrcheck.h listobject.h \
937 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
938 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
939 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
940 stringobject.h sysmodule.h traceback.h tupleobject.h
941
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000942getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000943
944getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000945 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000946 import.h intobject.h intrcheck.h listobject.h longobject.h \
947 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
948 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
949 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
950 traceback.h tupleobject.h
951
952getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000953 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000954 import.h intobject.h intrcheck.h listobject.h longobject.h \
955 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
956 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
957 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
958 stringobject.h sysmodule.h traceback.h tupleobject.h
959
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000960graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000961 pgenheaders.h pydebug.h
962
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000963hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000964
965import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000966 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000967 fileobject.h floatobject.h funcobject.h import.h importdl.h \
968 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
969 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
970 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
971 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
972 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
973
974importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000975 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000976 import.h importdl.h intobject.h intrcheck.h listobject.h \
977 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
978 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
979 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
980 stringobject.h sysmodule.h traceback.h tupleobject.h
981
982marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000983 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000984 funcobject.h import.h intobject.h intrcheck.h listobject.h \
985 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
986 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
987 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
988 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
989
990modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000991 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000992 import.h intobject.h intrcheck.h listobject.h longobject.h \
993 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
994 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
995 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
996 traceback.h tupleobject.h
997
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000998mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000999
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001000pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001001
1002pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001003 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001004 import.h intobject.h intrcheck.h listobject.h longobject.h \
1005 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1006 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1007 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1008 traceback.h tupleobject.h
1009
1010pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001011 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001012 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1013 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1014 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1015 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1016 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1017 stringobject.h sysmodule.h traceback.h tupleobject.h
1018
1019sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001020 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001021 import.h intobject.h intrcheck.h listobject.h longobject.h \
1022 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1023 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1024 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1025 traceback.h tupleobject.h
1026
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001027strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001028
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001029strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001030
1031structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001032 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001033 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1034 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1035 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1036 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1037 stringobject.h structmember.h sysmodule.h traceback.h \
1038 tupleobject.h
1039
1040sysmodule.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 osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1045 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1046 sysmodule.h traceback.h tupleobject.h
1047
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001048thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001049
1050traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001051 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001052 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1053 listobject.h longobject.h methodobject.h modsupport.h \
1054 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1055 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1056 rangeobject.h sliceobject.h stringobject.h structmember.h \
1057 sysmodule.h traceback.h tupleobject.h