blob: 4f7f478f4b63784cd2ce1dd59f9d799819e2e10b [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 \
164 ThreadModule.obj \
165 YUVConvert.obj
166
167# Omitted Modules (and Description/Reason):
168 #
169 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000170 # audioop.c -- Various Compute Operations on Audio Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000171
172 # Database:
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000173 # _dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
174 # _gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000175
176 # Cryptography:
177 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000178
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000179# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000180# fpectlmodule.obj \
181# fpetestmodule.obj \
182# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000183# grpmodule.obj \
184# mpzmodule.obj \
185# nismodule.obj \
186# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000187# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000188# readline.obj \
189# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000190# syslogmodule.obj \
191# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000192
193 # User Interface:
194# _tkinter.obj \
195# stdwinmodule.obj \
196# cursesmodule.obj \
197# tclNotify.obj \
198# tkappinit.obj \
199 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
200
201 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
202 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000203 # xxmodule.c -- Template to Create Your Own Module
204
205#
206# Standalone Parser Generator Program (Shares Some of Python's Modules)
207PGEN = \
208 PGenMain.obj \
209 PGen.obj \
210 PrintGrammar.obj \
211 ListNode.obj \
212 Grammar.obj \
213 BitSet.obj \
214 FirstSets.obj \
215 MetaGrammar.obj
216
217# Omitted Parser Elements (and Reason):
218 # intrcheck.c -- Not Referenced by Anyone (?)
219
220##################
221# Macros and Flags
222##################
223_BASE = /Q /W2 /I$(PROJINCLUDE)
224 # /Q = Omit IBM Copyright
225 # /W2 = Show Warnings/Errors Only
226 # /Fi = Create Precompiled Headers
227 # /Si = Utilize Precompiled Headers
228
229_GEN = /G4 /Gm /Gd /B"/STACK:360000"
230 # /G4 = Generate Code for 486 (Use 386 for Debugger)
231 # /Gm = Use Multithread Runtime
232 # /Gd = Dynamically Load Runtime
233 # /Gs = Remove Code for Stack Probes
234 # /Gx = Remove C++ Exception-Handling Info
235 # /Tdp = Generate Code for C++ Templates
236 # /Rn = Generate Code without a Runtime
237 # /B"/STACK:n" = Set Stack Size
238
239_OPT = /O /Gl
240 # /O = Enable Speed-Optimizations
241 # /Ol = Pass Code Thru Intermediate Linker
242 # /Gu = Advise Linker All Ext Data is ID'd
243 # /Gl = Have Linker Remove Unused Fns
244
245_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
246 # /Ti = Embed Debugger/Analyzer Recs
247 # /Tm = Enable Debug Memory Fns
248 # /Tx = Request Full Dump Upon Exception
249 # /DDEBUG = Enable App-Internal Debugging Code
250 # /DUSE_SOCKET =
251 # /DUSE_DL_EXPORT =
252
253_OUT =
254 # /Fb = Embed Browser Recs
255 # /Gh = Generate Code for Profiler Hooks
256 # /Fl = Output C/C++ Listing Files
257 # /Lf = Provide Full (Detailed) Listing Files
258 # /Fm. = Output Linker Map File
259 # /Ft. = Output C++ Template Resolution Files
260
261_MAP = /FmNoise\$(.TARGET,B,>.map)
262
263_DLL = /Ge-
264_EXE = /Ge
265 # /Ge = Create an EXE, not DLL
266
267CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
268CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
269
270###################
271# Primary Target(s)
272###################
273All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
274
275##############
276#
277##############
278
279# Object Library of All Essential Python Routines
280PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
281 %do "%.lib"
282
283Python15.dll: Compile.obj PyCore.lib Python.def
284 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
285
286Compile.obj: Compile.c
287 %do ".c.obj" CFLAGS+=$(_DLL)
288
289# Import Library for Using the Python15.dll
290Python15.lib: Python.def
291 %do ".def.lib"
292
293# Small Program to Start Interpreter in Python15.dll
294Python.exe: Python.obj Python15.lib
295 %do "%.exe" CPPFLAGS+=$(_MAP)
296
297#Python.obj: Python.c
298# %do ".c.obj" CFLAGS+=$(_EXE)
299
300PGen.exe: $(PGEN) PyCore.lib
301 %do "%.exe" CPPFLAGS+=$(_MAP)
302
303#######################
304# Miscellaneous Targets
305#######################
306
307# Remove Intermediate Targets but Leave Executable Binaries
308clean:
309 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
310 -- Del /Q /Y Noise >NUL 2>&1
311 -- Del /Q $(ERRS) >NUL 2>&1
312
313# Remove All Targets, Including Final Binaries
314distclean: clean
315 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
316 -- Del /Q Python15.dll Python.exe >NUL 2>&1
317
318release: Python.exe Python15.dll Python15.lib
319 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
320 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
321 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
322
323test:
324 python ..\..\lib\test\regrtest.py
325
326# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
327depend:
328 D:\OpusMake\os2mkmf -c -s
329
330### OPUS MKMF: Do not remove this line! Generated dependencies follow.
331
332_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000333 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000334 import.h intobject.h intrcheck.h listobject.h longobject.h \
335 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
336 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
337 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
338 traceback.h tupleobject.h
339
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000340arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000341 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000342 import.h intobject.h intrcheck.h listobject.h longobject.h \
343 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
344 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
345 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
346 traceback.h tupleobject.h
347
348audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000349 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000350 import.h intobject.h intrcheck.h listobject.h longobject.h \
351 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
352 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
353 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
354 stringobject.h sysmodule.h traceback.h tupleobject.h
355
356binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000357 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000358 import.h intobject.h intrcheck.h listobject.h longobject.h \
359 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
360 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
361 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
362 traceback.h tupleobject.h
363
364bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000365 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000366 import.h intobject.h intrcheck.h listobject.h longobject.h \
367 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
368 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
369 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
370 traceback.h tupleobject.h
371
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000372cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000373 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000374 import.h intobject.h intrcheck.h listobject.h longobject.h \
375 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
376 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
377 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
378 stringobject.h sysmodule.h traceback.h tupleobject.h
379
380cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Georg Brandl03124942008-06-10 15:50:56 +0000381 pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000382 funcobject.h import.h intobject.h intrcheck.h listobject.h \
383 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
384 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
385 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
386 stringobject.h sysmodule.h traceback.h tupleobject.h
387
388cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000389 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000390 import.h intobject.h intrcheck.h listobject.h longobject.h \
391 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
392 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
393 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
394 traceback.h tupleobject.h
395
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000396cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000397 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000398 funcobject.h import.h intobject.h intrcheck.h listobject.h \
399 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
400 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
401 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
402 stringobject.h sysmodule.h traceback.h tupleobject.h
403
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000404_dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000405 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000406 import.h intobject.h intrcheck.h listobject.h longobject.h \
407 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
408 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
409 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
410 traceback.h tupleobject.h
411
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000412errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000413 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000414 import.h intobject.h intrcheck.h listobject.h longobject.h \
415 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
416 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
417 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
418 traceback.h tupleobject.h
419
420errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000421 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000422 import.h intobject.h intrcheck.h listobject.h longobject.h \
423 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
424 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
425 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
426 traceback.h tupleobject.h
427
428fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000429 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000430 fileobject.h floatobject.h funcobject.h import.h intobject.h \
431 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
432 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
433 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
434 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
435
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000436fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000437 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000438 funcobject.h import.h intobject.h intrcheck.h listobject.h \
439 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
440 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
441 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
442 stringobject.h sysmodule.h traceback.h tupleobject.h
443
444fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000445 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000446 funcobject.h import.h intobject.h intrcheck.h listobject.h \
447 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
448 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
449 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
450 stringobject.h sysmodule.h traceback.h tupleobject.h
451
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000452_gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000453 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000454 import.h intobject.h intrcheck.h listobject.h longobject.h \
455 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
456 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
457 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
458 traceback.h tupleobject.h
459
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000460getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000461
462getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000463 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000464 import.h intobject.h intrcheck.h listobject.h longobject.h \
465 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
466 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
467 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
468 sysmodule.h traceback.h tupleobject.h
469
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000470grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000471 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000472 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
473 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
474 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
475 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
476 traceback.h tupleobject.h
477
478imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000479 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000480 import.h intobject.h intrcheck.h listobject.h longobject.h \
481 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
482 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
483 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
484 traceback.h tupleobject.h
485
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000486main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000487 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000488 import.h intobject.h intrcheck.h listobject.h longobject.h \
489 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
490 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
491 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
492 traceback.h tupleobject.h
493
494mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000495 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000496 import.h intobject.h intrcheck.h listobject.h longobject.h \
497 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
498 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
499 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
500 stringobject.h sysmodule.h traceback.h tupleobject.h
501
Tim Peters1ca12962001-12-04 03:18:48 +0000502mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000503 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000504 funcobject.h import.h intobject.h intrcheck.h listobject.h \
505 longintrepr.h longobject.h methodobject.h modsupport.h \
506 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
507 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
508 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
509
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000510nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000511 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000512 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
513 listobject.h longobject.h methodobject.h modsupport.h \
514 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
515 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
516 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
517
518operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000519 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000520 import.h intobject.h intrcheck.h listobject.h longobject.h \
521 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
522 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
523 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
524 traceback.h tupleobject.h
525
526parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000527 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000528 funcobject.h graminit.h import.h intobject.h intrcheck.h \
529 listobject.h longobject.h methodobject.h modsupport.h \
530 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
531 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
532 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
533 traceback.h tupleobject.h
534
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000535posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000536 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000537 import.h intobject.h intrcheck.h listobject.h longobject.h \
538 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
539 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
540 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
541 sysmodule.h traceback.h tupleobject.h
542
543posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000544 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000545 import.h intobject.h intrcheck.h listobject.h longobject.h \
546 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
547 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
548 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
549 sysmodule.h traceback.h tupleobject.h
550
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000551pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000552 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000553 import.h intobject.h intrcheck.h listobject.h longobject.h \
554 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
555 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
556 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
557 sysmodule.h traceback.h tupleobject.h
558
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000559readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000560 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000561 import.h intobject.h intrcheck.h listobject.h longobject.h \
562 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
563 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
564 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
565 traceback.h tupleobject.h
566
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000567resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000568 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000569 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
570 listobject.h longobject.h methodobject.h modsupport.h \
571 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
572 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
573 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
574
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000575selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000576 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000577 funcobject.h import.h intobject.h intrcheck.h listobject.h \
578 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
579 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
580 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
581 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
582
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000583signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000584 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000585 funcobject.h import.h intobject.h intrcheck.h listobject.h \
586 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
587 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
588 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
589 stringobject.h sysmodule.h traceback.h tupleobject.h
590
591socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
592 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000593 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000594 funcobject.h import.h intobject.h intrcheck.h listobject.h \
595 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
596 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
597 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
598 stringobject.h sysmodule.h traceback.h tupleobject.h
599
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000600structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000601 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000602 funcobject.h import.h intobject.h intrcheck.h listobject.h \
603 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
604 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
605 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
606 stringobject.h sysmodule.h traceback.h tupleobject.h
607
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000608syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000609 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000610 funcobject.h import.h intobject.h intrcheck.h listobject.h \
611 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
612 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
613 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
614 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
615
616termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000617 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000618 import.h intobject.h intrcheck.h listobject.h longobject.h \
619 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
620 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
621 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
622 traceback.h tupleobject.h
623
Georg Brandl2067bfd2008-05-25 13:05:15 +0000624_threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000625 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000626 funcobject.h import.h intobject.h intrcheck.h listobject.h \
627 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
628 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
629 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
630 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
631
632timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000633 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000634 import.h intobject.h intrcheck.h listobject.h longobject.h \
635 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
636 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
637 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
638 sysmodule.h traceback.h tupleobject.h
639
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000640xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000641 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000642 import.h intobject.h intrcheck.h listobject.h longobject.h \
643 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
644 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
645 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
646 traceback.h tupleobject.h
647
648yuvconvert.obj: yuv.h
649
650zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000651 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000652 import.h intobject.h intrcheck.h listobject.h longobject.h \
653 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
654 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
655 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
656 traceback.h tupleobject.h
657
658abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000659 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000660 import.h intobject.h intrcheck.h listobject.h longobject.h \
661 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
662 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
663 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
664 traceback.h tupleobject.h
665
666classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000667 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000668 import.h intobject.h intrcheck.h listobject.h longobject.h \
669 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
670 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
671 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
672 structmember.h sysmodule.h traceback.h tupleobject.h
673
674cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000675 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000676 import.h intobject.h intrcheck.h listobject.h longobject.h \
677 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
678 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
679 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
680 traceback.h tupleobject.h
681
682complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000683 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000684 funcobject.h import.h intobject.h intrcheck.h listobject.h \
685 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
686 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
687 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
688 stringobject.h sysmodule.h traceback.h tupleobject.h
689
690dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000691 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000692 import.h intobject.h intrcheck.h listobject.h longobject.h \
693 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
694 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
695 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
696 traceback.h tupleobject.h
697
698fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000699 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000700 import.h intobject.h intrcheck.h listobject.h longobject.h \
701 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
702 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
703 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
704 structmember.h sysmodule.h traceback.h tupleobject.h
705
706floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000707 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000708 import.h intobject.h intrcheck.h listobject.h longobject.h \
709 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
710 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
711 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
712 stringobject.h sysmodule.h traceback.h tupleobject.h
713
714frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000715 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000716 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
717 listobject.h longobject.h methodobject.h modsupport.h \
718 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
719 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
720 rangeobject.h sliceobject.h stringobject.h structmember.h \
721 sysmodule.h traceback.h tupleobject.h
722
723funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000724 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000725 funcobject.h import.h intobject.h intrcheck.h listobject.h \
726 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
727 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
728 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
729 stringobject.h structmember.h sysmodule.h traceback.h \
730 tupleobject.h
731
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000732listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000733 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000734 import.h intobject.h intrcheck.h listobject.h longobject.h \
735 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
736 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
737 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
738 traceback.h tupleobject.h
739
Tim Peters1ca12962001-12-04 03:18:48 +0000740longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000741 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000742 funcobject.h import.h intobject.h intrcheck.h listobject.h \
743 longintrepr.h longobject.h methodobject.h modsupport.h \
744 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
745 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
746 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
747 tupleobject.h
748
749methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000750 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000751 funcobject.h import.h intobject.h intrcheck.h listobject.h \
752 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
753 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
754 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
755 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
756
757moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000758 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000759 funcobject.h import.h intobject.h intrcheck.h listobject.h \
760 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
761 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
762 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
763 stringobject.h sysmodule.h traceback.h tupleobject.h
764
765object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000766 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000767 import.h intobject.h intrcheck.h listobject.h longobject.h \
768 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
769 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
770 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
771 traceback.h tupleobject.h
772
773rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000774 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000775 import.h intobject.h intrcheck.h listobject.h longobject.h \
776 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
777 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
778 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
779 traceback.h tupleobject.h
780
781sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000782 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000783 import.h intobject.h intrcheck.h listobject.h longobject.h \
784 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
785 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
786 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
787 traceback.h tupleobject.h
788
789stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000790 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000791 funcobject.h import.h intobject.h intrcheck.h listobject.h \
792 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
793 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
794 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
795 stringobject.h sysmodule.h traceback.h tupleobject.h
796
797tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000798 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000799 import.h intobject.h intrcheck.h listobject.h longobject.h \
800 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
801 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
802 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
803 traceback.h tupleobject.h
804
805typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000806 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000807 import.h intobject.h intrcheck.h listobject.h longobject.h \
808 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
809 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
810 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
811 traceback.h tupleobject.h
812
813xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000814 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000815 import.h intobject.h intrcheck.h listobject.h longobject.h \
816 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
817 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
818 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
819 traceback.h tupleobject.h
820
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000821acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000822 parser.h pgenheaders.h pydebug.h token.h
823
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000824bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000825
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000826firstsets.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 +0000829grammar.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
Tim Peters1ca12962001-12-04 03:18:48 +0000832grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000833 pgenheaders.h pydebug.h token.h
834
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000835intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000836
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000837listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000838 token.h
839
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000840metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000841 myproto.h pgen.h pgenheaders.h pydebug.h
842
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000843myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000844
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000845node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000846
Tim Peters1ca12962001-12-04 03:18:48 +0000847parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000848 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
849
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000850parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000851 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
852 tokenizer.h
853
Tim Peters1ca12962001-12-04 03:18:48 +0000854pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000855 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
856
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000857pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000858 parsetok.h pgen.h pgenheaders.h pydebug.h
859
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000860printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000861 pgenheaders.h pydebug.h
862
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000863tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000864 pydebug.h token.h tokenizer.h
865
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000866atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867
868bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000869 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000870 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
871 listobject.h longobject.h methodobject.h modsupport.h \
872 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
873 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
874 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
875 traceback.h tupleobject.h
876
877ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000878 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000879 floatobject.h frameobject.h funcobject.h import.h intobject.h \
880 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
881 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
882 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
883 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
884 tupleobject.h
885
886compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000887 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000888 funcobject.h graminit.h import.h intobject.h intrcheck.h \
889 listobject.h longobject.h methodobject.h modsupport.h \
890 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
891 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
892 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
893 structmember.h sysmodule.h token.h traceback.h tupleobject.h
894
895errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000896 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000897 import.h intobject.h intrcheck.h listobject.h longobject.h \
898 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
899 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
900 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
901 traceback.h tupleobject.h
902
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000903fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000904
905frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000906 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000907 import.h intobject.h intrcheck.h listobject.h longobject.h \
908 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
909 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
910 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
911 traceback.h tupleobject.h
912
913frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000914 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000915 import.h intobject.h intrcheck.h listobject.h longobject.h \
916 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
917 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
918 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
919 traceback.h tupleobject.h
920
921getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000922 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000923 import.h intobject.h intrcheck.h listobject.h longobject.h \
924 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
925 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
926 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
927 traceback.h tupleobject.h
928
929getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000930 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000931 import.h intobject.h intrcheck.h listobject.h longobject.h \
932 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
933 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
934 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
935 traceback.h tupleobject.h
936
937getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000938 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000939 funcobject.h import.h intobject.h intrcheck.h listobject.h \
940 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
941 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
942 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
943 stringobject.h sysmodule.h traceback.h tupleobject.h
944
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000945getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000946
947getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000948 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000949 import.h intobject.h intrcheck.h listobject.h longobject.h \
950 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
951 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
952 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
953 traceback.h tupleobject.h
954
955getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000956 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000957 import.h intobject.h intrcheck.h listobject.h longobject.h \
958 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
959 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
960 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
961 stringobject.h sysmodule.h traceback.h tupleobject.h
962
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000963graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000964 pgenheaders.h pydebug.h
965
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000966hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000967
968import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000969 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000970 fileobject.h floatobject.h funcobject.h import.h importdl.h \
971 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
972 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
973 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
974 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
975 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
976
977importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000978 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000979 import.h importdl.h intobject.h intrcheck.h listobject.h \
980 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
981 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
982 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
983 stringobject.h sysmodule.h traceback.h tupleobject.h
984
985marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000986 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000987 funcobject.h import.h intobject.h intrcheck.h listobject.h \
988 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
989 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
990 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
991 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
992
993modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000994 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000995 import.h intobject.h intrcheck.h listobject.h longobject.h \
996 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
997 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
998 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
999 traceback.h tupleobject.h
1000
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001001mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001002
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001003pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001004
1005pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001006 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001007 import.h intobject.h intrcheck.h listobject.h longobject.h \
1008 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1009 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1010 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1011 traceback.h tupleobject.h
1012
1013pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001014 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001015 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1016 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1017 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1018 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1019 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1020 stringobject.h sysmodule.h traceback.h tupleobject.h
1021
1022sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001023 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001024 import.h intobject.h intrcheck.h listobject.h longobject.h \
1025 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1026 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1027 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1028 traceback.h tupleobject.h
1029
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001030strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001031
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001032strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001033
1034structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001035 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001036 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1037 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1038 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1039 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1040 stringobject.h structmember.h sysmodule.h traceback.h \
1041 tupleobject.h
1042
1043sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001044 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001045 import.h intobject.h intrcheck.h listobject.h longobject.h \
1046 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1047 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1048 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1049 sysmodule.h traceback.h tupleobject.h
1050
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001051thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001052
1053traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.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 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1056 listobject.h longobject.h methodobject.h modsupport.h \
1057 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1058 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1059 rangeobject.h sliceobject.h stringobject.h structmember.h \
1060 sysmodule.h traceback.h tupleobject.h