blob: 4f123c1d73ca9b4bdf0473a7f247cfeae2d39c17 [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 \
145 cPickle.obj \
146 cStringIO.obj \
147 ErrnoModule.obj \
148 GetBuildInfo.obj \
149 GetPathP.obj \
150 Main.obj \
151 MathModule.obj \
152 MD5c.obj \
153 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000154 Operator.obj \
155 PosixModule.obj \
156 RegexModule.obj \
157 RegExpr.obj \
158 ReopModule.obj \
159 SelectModule.obj \
160 SignalModule.obj \
161 SocketModule.obj \
162 SoundEx.obj \
163 StropModule.obj \
164 StructModule.obj \
165 TimeModule.obj \
166 ThreadModule.obj \
167 YUVConvert.obj
168
169# Omitted Modules (and Description/Reason):
170 #
171 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000172 # audioop.c -- Various Compute Operations on Audio Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000173
174 # Database:
175 # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000176 # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
177
178 # Cryptography:
179 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000180
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000181# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000182# fpectlmodule.obj \
183# fpetestmodule.obj \
184# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000185# grpmodule.obj \
186# mpzmodule.obj \
187# nismodule.obj \
188# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000189# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000190# readline.obj \
191# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000192# syslogmodule.obj \
193# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000194
195 # User Interface:
196# _tkinter.obj \
197# stdwinmodule.obj \
198# cursesmodule.obj \
199# tclNotify.obj \
200# tkappinit.obj \
201 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
202
203 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
204 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
205 # dlmodule.c -- Some Wierd Form of Data Processing Module
206 # xxmodule.c -- Template to Create Your Own Module
207
208#
209# Standalone Parser Generator Program (Shares Some of Python's Modules)
210PGEN = \
211 PGenMain.obj \
212 PGen.obj \
213 PrintGrammar.obj \
214 ListNode.obj \
215 Grammar.obj \
216 BitSet.obj \
217 FirstSets.obj \
218 MetaGrammar.obj
219
220# Omitted Parser Elements (and Reason):
221 # intrcheck.c -- Not Referenced by Anyone (?)
222
223##################
224# Macros and Flags
225##################
226_BASE = /Q /W2 /I$(PROJINCLUDE)
227 # /Q = Omit IBM Copyright
228 # /W2 = Show Warnings/Errors Only
229 # /Fi = Create Precompiled Headers
230 # /Si = Utilize Precompiled Headers
231
232_GEN = /G4 /Gm /Gd /B"/STACK:360000"
233 # /G4 = Generate Code for 486 (Use 386 for Debugger)
234 # /Gm = Use Multithread Runtime
235 # /Gd = Dynamically Load Runtime
236 # /Gs = Remove Code for Stack Probes
237 # /Gx = Remove C++ Exception-Handling Info
238 # /Tdp = Generate Code for C++ Templates
239 # /Rn = Generate Code without a Runtime
240 # /B"/STACK:n" = Set Stack Size
241
242_OPT = /O /Gl
243 # /O = Enable Speed-Optimizations
244 # /Ol = Pass Code Thru Intermediate Linker
245 # /Gu = Advise Linker All Ext Data is ID'd
246 # /Gl = Have Linker Remove Unused Fns
247
248_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
249 # /Ti = Embed Debugger/Analyzer Recs
250 # /Tm = Enable Debug Memory Fns
251 # /Tx = Request Full Dump Upon Exception
252 # /DDEBUG = Enable App-Internal Debugging Code
253 # /DUSE_SOCKET =
254 # /DUSE_DL_EXPORT =
255
256_OUT =
257 # /Fb = Embed Browser Recs
258 # /Gh = Generate Code for Profiler Hooks
259 # /Fl = Output C/C++ Listing Files
260 # /Lf = Provide Full (Detailed) Listing Files
261 # /Fm. = Output Linker Map File
262 # /Ft. = Output C++ Template Resolution Files
263
264_MAP = /FmNoise\$(.TARGET,B,>.map)
265
266_DLL = /Ge-
267_EXE = /Ge
268 # /Ge = Create an EXE, not DLL
269
270CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
271CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
272
273###################
274# Primary Target(s)
275###################
276All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
277
278##############
279#
280##############
281
282# Object Library of All Essential Python Routines
283PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
284 %do "%.lib"
285
286Python15.dll: Compile.obj PyCore.lib Python.def
287 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
288
289Compile.obj: Compile.c
290 %do ".c.obj" CFLAGS+=$(_DLL)
291
292# Import Library for Using the Python15.dll
293Python15.lib: Python.def
294 %do ".def.lib"
295
296# Small Program to Start Interpreter in Python15.dll
297Python.exe: Python.obj Python15.lib
298 %do "%.exe" CPPFLAGS+=$(_MAP)
299
300#Python.obj: Python.c
301# %do ".c.obj" CFLAGS+=$(_EXE)
302
303PGen.exe: $(PGEN) PyCore.lib
304 %do "%.exe" CPPFLAGS+=$(_MAP)
305
306#######################
307# Miscellaneous Targets
308#######################
309
310# Remove Intermediate Targets but Leave Executable Binaries
311clean:
312 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
313 -- Del /Q /Y Noise >NUL 2>&1
314 -- Del /Q $(ERRS) >NUL 2>&1
315
316# Remove All Targets, Including Final Binaries
317distclean: clean
318 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
319 -- Del /Q Python15.dll Python.exe >NUL 2>&1
320
321release: Python.exe Python15.dll Python15.lib
322 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
323 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
324 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
325
326test:
327 python ..\..\lib\test\regrtest.py
328
329# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
330depend:
331 D:\OpusMake\os2mkmf -c -s
332
333### OPUS MKMF: Do not remove this line! Generated dependencies follow.
334
335_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000336 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000337 import.h intobject.h intrcheck.h listobject.h longobject.h \
338 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
339 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
340 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
341 traceback.h tupleobject.h
342
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000343arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000344 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000345 import.h intobject.h intrcheck.h listobject.h longobject.h \
346 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
347 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
348 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
349 traceback.h tupleobject.h
350
351audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000352 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000353 import.h intobject.h intrcheck.h listobject.h longobject.h \
354 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
355 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
356 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
357 stringobject.h sysmodule.h traceback.h tupleobject.h
358
359binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000360 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000361 import.h intobject.h intrcheck.h listobject.h longobject.h \
362 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
363 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
364 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
365 traceback.h tupleobject.h
366
367bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000368 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000369 import.h intobject.h intrcheck.h listobject.h longobject.h \
370 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
371 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
372 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
373 traceback.h tupleobject.h
374
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000375cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000376 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000377 import.h intobject.h intrcheck.h listobject.h longobject.h \
378 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
379 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
380 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
381 stringobject.h sysmodule.h traceback.h tupleobject.h
382
383cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000384 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000385 funcobject.h import.h intobject.h intrcheck.h listobject.h \
386 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
387 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
388 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
389 stringobject.h sysmodule.h traceback.h tupleobject.h
390
391cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000392 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000393 import.h intobject.h intrcheck.h listobject.h longobject.h \
394 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
395 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
396 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
397 traceback.h tupleobject.h
398
399cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000400 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000401 funcobject.h import.h intobject.h intrcheck.h listobject.h \
402 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
403 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
404 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
405 stringobject.h sysmodule.h traceback.h tupleobject.h
406
407cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000408 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000409 funcobject.h import.h intobject.h intrcheck.h listobject.h \
410 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
411 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
412 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
413 stringobject.h sysmodule.h traceback.h tupleobject.h
414
415dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000416 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000417 import.h intobject.h intrcheck.h listobject.h longobject.h \
418 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
419 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
420 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
421 traceback.h tupleobject.h
422
423dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000424 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000425 import.h intobject.h intrcheck.h listobject.h longobject.h \
426 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
427 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
428 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
429 traceback.h tupleobject.h
430
431errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000432 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000433 import.h intobject.h intrcheck.h listobject.h longobject.h \
434 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
435 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
436 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
437 traceback.h tupleobject.h
438
439errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000440 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000441 import.h intobject.h intrcheck.h listobject.h longobject.h \
442 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
443 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
444 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
445 traceback.h tupleobject.h
446
447fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000448 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000449 fileobject.h floatobject.h funcobject.h import.h intobject.h \
450 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
451 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
452 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
453 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
454
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000455fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000456 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000457 funcobject.h import.h intobject.h intrcheck.h listobject.h \
458 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
459 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
460 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
461 stringobject.h sysmodule.h traceback.h tupleobject.h
462
463fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000464 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000465 funcobject.h import.h intobject.h intrcheck.h listobject.h \
466 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
467 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
468 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
469 stringobject.h sysmodule.h traceback.h tupleobject.h
470
471gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000472 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000473 import.h intobject.h intrcheck.h listobject.h longobject.h \
474 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
475 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
476 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
477 traceback.h tupleobject.h
478
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000479getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000480
481getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000482 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000483 import.h intobject.h intrcheck.h listobject.h longobject.h \
484 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
485 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
486 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
487 sysmodule.h traceback.h tupleobject.h
488
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000489grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000490 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000491 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
492 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
493 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
494 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
495 traceback.h tupleobject.h
496
497imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000498 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000499 import.h intobject.h intrcheck.h listobject.h longobject.h \
500 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
501 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
502 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
503 traceback.h tupleobject.h
504
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000505main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000506 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000507 import.h intobject.h intrcheck.h listobject.h longobject.h \
508 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
509 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
510 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
511 traceback.h tupleobject.h
512
513mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000514 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000515 import.h intobject.h intrcheck.h listobject.h longobject.h \
516 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
517 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
518 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
519 stringobject.h sysmodule.h traceback.h tupleobject.h
520
Tim Peters1ca12962001-12-04 03:18:48 +0000521mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000522 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000523 funcobject.h import.h intobject.h intrcheck.h listobject.h \
524 longintrepr.h longobject.h methodobject.h modsupport.h \
525 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
526 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
527 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
528
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000529nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000530 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000531 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
532 listobject.h longobject.h methodobject.h modsupport.h \
533 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
534 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
535 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
536
537operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000538 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000539 import.h intobject.h intrcheck.h listobject.h longobject.h \
540 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
541 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
542 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
543 traceback.h tupleobject.h
544
545parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000546 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000547 funcobject.h graminit.h import.h intobject.h intrcheck.h \
548 listobject.h longobject.h methodobject.h modsupport.h \
549 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
550 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
551 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
552 traceback.h tupleobject.h
553
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000554posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000555 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000556 import.h intobject.h intrcheck.h listobject.h longobject.h \
557 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
558 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
559 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
560 sysmodule.h traceback.h tupleobject.h
561
562posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000563 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000564 import.h intobject.h intrcheck.h listobject.h longobject.h \
565 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
566 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
567 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
568 sysmodule.h traceback.h tupleobject.h
569
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000570pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000571 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000572 import.h intobject.h intrcheck.h listobject.h longobject.h \
573 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
574 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
575 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
576 sysmodule.h traceback.h tupleobject.h
577
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000578readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000579 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000580 import.h intobject.h intrcheck.h listobject.h longobject.h \
581 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
582 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
583 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
584 traceback.h tupleobject.h
585
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000586resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000587 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000588 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
589 listobject.h longobject.h methodobject.h modsupport.h \
590 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
591 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
592 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
593
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000594selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000595 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000596 funcobject.h import.h intobject.h intrcheck.h listobject.h \
597 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
598 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
599 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
600 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
601
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000602signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000603 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000604 funcobject.h import.h intobject.h intrcheck.h listobject.h \
605 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
606 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
607 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
608 stringobject.h sysmodule.h traceback.h tupleobject.h
609
610socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
611 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000612 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000613 funcobject.h import.h intobject.h intrcheck.h listobject.h \
614 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
615 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
616 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
617 stringobject.h sysmodule.h traceback.h tupleobject.h
618
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000619structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000620 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000621 funcobject.h import.h intobject.h intrcheck.h listobject.h \
622 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
623 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
624 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
625 stringobject.h sysmodule.h traceback.h tupleobject.h
626
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000627syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000628 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000629 funcobject.h import.h intobject.h intrcheck.h listobject.h \
630 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
631 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
632 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
633 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
634
635termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000636 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000637 import.h intobject.h intrcheck.h listobject.h longobject.h \
638 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
639 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
640 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
641 traceback.h tupleobject.h
642
643threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000644 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000645 funcobject.h import.h intobject.h intrcheck.h listobject.h \
646 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
647 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
648 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
649 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
650
651timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000652 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000653 import.h intobject.h intrcheck.h listobject.h longobject.h \
654 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
655 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
656 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
657 sysmodule.h traceback.h tupleobject.h
658
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000659xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000660 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000661 import.h intobject.h intrcheck.h listobject.h longobject.h \
662 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
663 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
664 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
665 traceback.h tupleobject.h
666
667yuvconvert.obj: yuv.h
668
669zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000670 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000671 import.h intobject.h intrcheck.h listobject.h longobject.h \
672 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
673 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
674 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
675 traceback.h tupleobject.h
676
677abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000678 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000679 import.h intobject.h intrcheck.h listobject.h longobject.h \
680 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
681 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
682 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
683 traceback.h tupleobject.h
684
685classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000686 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000687 import.h intobject.h intrcheck.h listobject.h longobject.h \
688 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
689 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
690 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
691 structmember.h sysmodule.h traceback.h tupleobject.h
692
693cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000694 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000695 import.h intobject.h intrcheck.h listobject.h longobject.h \
696 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
697 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
698 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
699 traceback.h tupleobject.h
700
701complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000702 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000703 funcobject.h import.h intobject.h intrcheck.h listobject.h \
704 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
705 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
706 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
707 stringobject.h sysmodule.h traceback.h tupleobject.h
708
709dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000710 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000711 import.h intobject.h intrcheck.h listobject.h longobject.h \
712 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
713 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
714 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
715 traceback.h tupleobject.h
716
717fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000718 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000719 import.h intobject.h intrcheck.h listobject.h longobject.h \
720 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
721 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
722 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
723 structmember.h sysmodule.h traceback.h tupleobject.h
724
725floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000726 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000727 import.h intobject.h intrcheck.h listobject.h longobject.h \
728 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
729 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
730 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
731 stringobject.h sysmodule.h traceback.h tupleobject.h
732
733frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000734 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000735 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
736 listobject.h longobject.h methodobject.h modsupport.h \
737 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
738 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
739 rangeobject.h sliceobject.h stringobject.h structmember.h \
740 sysmodule.h traceback.h tupleobject.h
741
742funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000743 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000744 funcobject.h import.h intobject.h intrcheck.h listobject.h \
745 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
746 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
747 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
748 stringobject.h structmember.h sysmodule.h traceback.h \
749 tupleobject.h
750
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000751listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000752 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000753 import.h intobject.h intrcheck.h listobject.h longobject.h \
754 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
755 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
756 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
757 traceback.h tupleobject.h
758
Tim Peters1ca12962001-12-04 03:18:48 +0000759longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000760 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000761 funcobject.h import.h intobject.h intrcheck.h listobject.h \
762 longintrepr.h longobject.h methodobject.h modsupport.h \
763 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
764 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
765 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
766 tupleobject.h
767
768methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000769 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000770 funcobject.h import.h intobject.h intrcheck.h listobject.h \
771 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
772 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
773 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
774 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
775
776moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000777 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000778 funcobject.h import.h intobject.h intrcheck.h listobject.h \
779 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
780 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
781 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
782 stringobject.h sysmodule.h traceback.h tupleobject.h
783
784object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000785 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000786 import.h intobject.h intrcheck.h listobject.h longobject.h \
787 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
788 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
789 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
790 traceback.h tupleobject.h
791
792rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000793 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000794 import.h intobject.h intrcheck.h listobject.h longobject.h \
795 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
796 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
797 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
798 traceback.h tupleobject.h
799
800sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000801 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000802 import.h intobject.h intrcheck.h listobject.h longobject.h \
803 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
804 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
805 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
806 traceback.h tupleobject.h
807
808stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000809 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000810 funcobject.h import.h intobject.h intrcheck.h listobject.h \
811 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
812 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
813 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
814 stringobject.h sysmodule.h traceback.h tupleobject.h
815
816tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000817 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000818 import.h intobject.h intrcheck.h listobject.h longobject.h \
819 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
820 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
821 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
822 traceback.h tupleobject.h
823
824typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000825 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000826 import.h intobject.h intrcheck.h listobject.h longobject.h \
827 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
828 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
829 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
830 traceback.h tupleobject.h
831
832xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000833 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000834 import.h intobject.h intrcheck.h listobject.h longobject.h \
835 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
836 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
837 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
838 traceback.h tupleobject.h
839
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000840acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000841 parser.h pgenheaders.h pydebug.h token.h
842
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000843bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000844
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000845firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000846 pgenheaders.h pydebug.h token.h
847
Tim Peters1ca12962001-12-04 03:18:48 +0000848grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000849 pgenheaders.h pydebug.h token.h
850
Tim Peters1ca12962001-12-04 03:18:48 +0000851grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000852 pgenheaders.h pydebug.h token.h
853
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000854intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000855
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000856listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000857 token.h
858
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000859metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000860 myproto.h pgen.h pgenheaders.h pydebug.h
861
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000862myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000863
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000864node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000865
Tim Peters1ca12962001-12-04 03:18:48 +0000866parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
868
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000869parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000870 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
871 tokenizer.h
872
Tim Peters1ca12962001-12-04 03:18:48 +0000873pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000874 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
875
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000876pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000877 parsetok.h pgen.h pgenheaders.h pydebug.h
878
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000879printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000880 pgenheaders.h pydebug.h
881
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000882tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000883 pydebug.h token.h tokenizer.h
884
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000885atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000886
887bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000888 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000889 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
890 listobject.h longobject.h methodobject.h modsupport.h \
891 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
892 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
893 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
894 traceback.h tupleobject.h
895
896ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000897 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000898 floatobject.h frameobject.h funcobject.h import.h intobject.h \
899 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
900 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
901 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
902 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
903 tupleobject.h
904
905compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000906 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000907 funcobject.h graminit.h import.h intobject.h intrcheck.h \
908 listobject.h longobject.h methodobject.h modsupport.h \
909 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
910 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
911 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
912 structmember.h sysmodule.h token.h traceback.h tupleobject.h
913
914errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000915 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000916 import.h intobject.h intrcheck.h listobject.h longobject.h \
917 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
918 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
919 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
920 traceback.h tupleobject.h
921
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000922fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000923
924frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000925 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000926 import.h intobject.h intrcheck.h listobject.h longobject.h \
927 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
928 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
929 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
930 traceback.h tupleobject.h
931
932frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000933 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000934 import.h intobject.h intrcheck.h listobject.h longobject.h \
935 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
936 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
937 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
938 traceback.h tupleobject.h
939
940getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000941 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000942 import.h intobject.h intrcheck.h listobject.h longobject.h \
943 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
944 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
945 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
946 traceback.h tupleobject.h
947
948getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000949 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000950 import.h intobject.h intrcheck.h listobject.h longobject.h \
951 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
952 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
953 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
954 traceback.h tupleobject.h
955
956getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000957 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000958 funcobject.h import.h intobject.h intrcheck.h listobject.h \
959 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
960 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
961 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
962 stringobject.h sysmodule.h traceback.h tupleobject.h
963
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000964getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000965
966getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000967 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000968 import.h intobject.h intrcheck.h listobject.h longobject.h \
969 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
970 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
971 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
972 traceback.h tupleobject.h
973
974getversion.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 intobject.h intrcheck.h listobject.h longobject.h \
977 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
978 object.h objimpl.h patchlevel.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
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000982graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000983 pgenheaders.h pydebug.h
984
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000985hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000986
987import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000988 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000989 fileobject.h floatobject.h funcobject.h import.h importdl.h \
990 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
991 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
992 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
993 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
994 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
995
996importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000997 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000998 import.h importdl.h intobject.h intrcheck.h listobject.h \
999 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1000 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1001 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1002 stringobject.h sysmodule.h traceback.h tupleobject.h
1003
1004marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001005 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001006 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1007 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1008 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1009 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1010 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1011
1012modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001013 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001014 import.h intobject.h intrcheck.h listobject.h longobject.h \
1015 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1016 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1017 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1018 traceback.h tupleobject.h
1019
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001020mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001021
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001022pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001023
1024pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001025 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001026 import.h intobject.h intrcheck.h listobject.h longobject.h \
1027 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1028 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1029 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1030 traceback.h tupleobject.h
1031
1032pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001033 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001034 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1035 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1036 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1037 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1038 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1039 stringobject.h sysmodule.h traceback.h tupleobject.h
1040
1041sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001042 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001043 import.h intobject.h intrcheck.h listobject.h longobject.h \
1044 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1045 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1046 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1047 traceback.h tupleobject.h
1048
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001049strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001050
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001051strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001052
1053structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001054 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001055 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1056 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1057 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1058 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1059 stringobject.h structmember.h sysmodule.h traceback.h \
1060 tupleobject.h
1061
1062sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001063 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001064 import.h intobject.h intrcheck.h listobject.h longobject.h \
1065 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1066 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1067 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1068 sysmodule.h traceback.h tupleobject.h
1069
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001070thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001071
1072traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001073 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001074 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1075 listobject.h longobject.h methodobject.h modsupport.h \
1076 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1077 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1078 rangeobject.h sliceobject.h stringobject.h structmember.h \
1079 sysmodule.h traceback.h tupleobject.h