blob: 7083c789d686a14199b6a913876d50ddcec4c856 [file] [log] [blame]
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001######################################################################
2#
3# Top-Level Makefile for Building Python for OS/2
4#
5# This makefile was developed for use with IBM's VisualAge C/C++
6# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
7# the commercial OpusMAKE tool.
8#
9# The output of the build is a largish Python15.DLL containing the
10# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
12# Python15.DLL is needed.
13#
14# These two binaries can be statically linked with the VisualAge C/C++
15# runtime library (producing larger binaries), or dynamically linked
16# to make smaller ones that require the compiler to be installed on
17# any system Python is used on.
18#
19# History (Most Recent First)
20#
21# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
22# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
23# 03-Aug-96 jrr Original for Use with Python 1.4 Release
24#
25######################################################################
26
27###################
28# Places and Things
29###################
30PY_MODULES = ..\..\Modules
31PY_OBJECTS = ..\..\Objects
32PY_PARSER = ..\..\Parser
33PY_PYTHON = ..\..\Python
34PY_INCLUDE = ..\..\Include
35PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
36
37# Where to Find the IBM TCP/IP Socket Includes and Libraries
38OS2TCPIP = C:\MPTN
39
40# Where to Put the .OBJ Files, To Keep Them Out of the Way
41.PATH.obj = obj
42
43# Search Path for Include Files
44PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
45
46# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
47MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
48
49.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
50.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
51OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
52
53#################
54# Inference Rules
55#################
56
57
58###################
59# Python Subsystems
60###################
61
62# PYTHON is the central core, containing the builtins and interpreter.
63PYTHON = \
64 BltinModule.obj \
65 CEval.obj \
66 Compile.obj \
67 Errors.obj \
68 Frozen.obj \
69 Getargs.obj \
70 GetCompiler.obj \
71 GetCopyright.obj \
72 GetMTime.obj \
73 GetOpt.obj \
74 GetPlatform.obj \
75 GetVersion.obj \
76 GramInit.obj \
77 Import.obj \
78 ImportDL.obj \
79 Marshal.obj \
80 ModSupport.obj \
81 MyStrtoul.obj \
82 PyState.obj \
83 PythonRun.obj \
84 StructMember.obj \
85 SysModule.obj \
86 Thread.obj \
87 TraceBack.obj \
88 FrozenMain.obj
89
90# Omitted Python Elements (and Reason):
91 # atof.c -- Implementation for Platforms w/o This Function
92 # dup2.c -- Implementation for Platforms w/o This Function
93 # fmod.c -- Implementation for Platforms w/o This Function
94 # getcwd.c -- Implementation for Platforms w/o This Function
95 # hypot.c -- Implementation for Platforms w/o This Function
96 # memmove.c -- Implementation for Platforms w/o This Function
97 # strdup.c -- Implementation for Platforms w/o This Function
98 # strerror.c -- Implementation for Platforms w/o This Function
99 # strtod.c -- Implementation for Platforms w/o This Function
100
101 # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead)
102 # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone)
103 # frozenmain.c
104
105# Python's Internal Parser
106PARSER = \
107 Acceler.obj \
108 Grammar1.obj \
109 MyReadline.obj \
110 Node.obj \
111 Parser.obj \
112 ParseTok.obj \
113 Tokenizer.obj
114
115# Python Object Types
116OBJECTS = \
117 Abstract.obj \
118 ClassObject.obj \
119 CObject.obj \
120 ComplexObject.obj \
121 DictObject.obj \
122 FileObject.obj \
123 FloatObject.obj \
124 FrameObject.obj \
125 FuncObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000126 ListObject.obj \
127 LongObject.obj \
128 MethodObject.obj \
129 ModuleObject.obj \
130 Object.obj \
131 RangeObject.obj \
132 SliceObject.obj \
133 StringObject.obj \
134 TupleObject.obj \
135 TypeObject.obj
136
137# Omitted Objects (and Reason):
138 # xxobject.c -- Template to Create Your Own Object Types
139
140# Extension Modules (Built-In or as Separate DLLs)
141MODULES = \
142 ArrayModule.obj \
143 BinAscii.obj \
144 CMathModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000145 cStringIO.obj \
146 ErrnoModule.obj \
147 GetBuildInfo.obj \
148 GetPathP.obj \
149 Main.obj \
150 MathModule.obj \
151 MD5c.obj \
152 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000153 Operator.obj \
154 PosixModule.obj \
155 RegexModule.obj \
156 RegExpr.obj \
157 ReopModule.obj \
158 SelectModule.obj \
159 SignalModule.obj \
160 SocketModule.obj \
161 SoundEx.obj \
162 StropModule.obj \
163 StructModule.obj \
164 TimeModule.obj \
165 ThreadModule.obj \
166 YUVConvert.obj
167
168# Omitted Modules (and Description/Reason):
169 #
170 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000171 # audioop.c -- Various Compute Operations on Audio Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000172
173 # Database:
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000174 # _dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
175 # _gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000176
177 # Cryptography:
178 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000179
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000180# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000181# fpectlmodule.obj \
182# fpetestmodule.obj \
183# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000184# grpmodule.obj \
185# mpzmodule.obj \
186# nismodule.obj \
187# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000188# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000189# readline.obj \
190# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000191# syslogmodule.obj \
192# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000193
194 # User Interface:
195# _tkinter.obj \
196# stdwinmodule.obj \
197# cursesmodule.obj \
198# tclNotify.obj \
199# tkappinit.obj \
200 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
201
202 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
203 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000204 # xxmodule.c -- Template to Create Your Own Module
205
206#
207# Standalone Parser Generator Program (Shares Some of Python's Modules)
208PGEN = \
209 PGenMain.obj \
210 PGen.obj \
211 PrintGrammar.obj \
212 ListNode.obj \
213 Grammar.obj \
214 BitSet.obj \
215 FirstSets.obj \
216 MetaGrammar.obj
217
218# Omitted Parser Elements (and Reason):
219 # intrcheck.c -- Not Referenced by Anyone (?)
220
221##################
222# Macros and Flags
223##################
224_BASE = /Q /W2 /I$(PROJINCLUDE)
225 # /Q = Omit IBM Copyright
226 # /W2 = Show Warnings/Errors Only
227 # /Fi = Create Precompiled Headers
228 # /Si = Utilize Precompiled Headers
229
230_GEN = /G4 /Gm /Gd /B"/STACK:360000"
231 # /G4 = Generate Code for 486 (Use 386 for Debugger)
232 # /Gm = Use Multithread Runtime
233 # /Gd = Dynamically Load Runtime
234 # /Gs = Remove Code for Stack Probes
235 # /Gx = Remove C++ Exception-Handling Info
236 # /Tdp = Generate Code for C++ Templates
237 # /Rn = Generate Code without a Runtime
238 # /B"/STACK:n" = Set Stack Size
239
240_OPT = /O /Gl
241 # /O = Enable Speed-Optimizations
242 # /Ol = Pass Code Thru Intermediate Linker
243 # /Gu = Advise Linker All Ext Data is ID'd
244 # /Gl = Have Linker Remove Unused Fns
245
246_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
247 # /Ti = Embed Debugger/Analyzer Recs
248 # /Tm = Enable Debug Memory Fns
249 # /Tx = Request Full Dump Upon Exception
250 # /DDEBUG = Enable App-Internal Debugging Code
251 # /DUSE_SOCKET =
252 # /DUSE_DL_EXPORT =
253
254_OUT =
255 # /Fb = Embed Browser Recs
256 # /Gh = Generate Code for Profiler Hooks
257 # /Fl = Output C/C++ Listing Files
258 # /Lf = Provide Full (Detailed) Listing Files
259 # /Fm. = Output Linker Map File
260 # /Ft. = Output C++ Template Resolution Files
261
262_MAP = /FmNoise\$(.TARGET,B,>.map)
263
264_DLL = /Ge-
265_EXE = /Ge
266 # /Ge = Create an EXE, not DLL
267
268CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
269CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
270
271###################
272# Primary Target(s)
273###################
274All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
275
276##############
277#
278##############
279
280# Object Library of All Essential Python Routines
281PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
282 %do "%.lib"
283
284Python15.dll: Compile.obj PyCore.lib Python.def
285 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
286
287Compile.obj: Compile.c
288 %do ".c.obj" CFLAGS+=$(_DLL)
289
290# Import Library for Using the Python15.dll
291Python15.lib: Python.def
292 %do ".def.lib"
293
294# Small Program to Start Interpreter in Python15.dll
295Python.exe: Python.obj Python15.lib
296 %do "%.exe" CPPFLAGS+=$(_MAP)
297
298#Python.obj: Python.c
299# %do ".c.obj" CFLAGS+=$(_EXE)
300
301PGen.exe: $(PGEN) PyCore.lib
302 %do "%.exe" CPPFLAGS+=$(_MAP)
303
304#######################
305# Miscellaneous Targets
306#######################
307
308# Remove Intermediate Targets but Leave Executable Binaries
309clean:
310 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
311 -- Del /Q /Y Noise >NUL 2>&1
312 -- Del /Q $(ERRS) >NUL 2>&1
313
314# Remove All Targets, Including Final Binaries
315distclean: clean
316 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
317 -- Del /Q Python15.dll Python.exe >NUL 2>&1
318
319release: Python.exe Python15.dll Python15.lib
320 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
321 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
322 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
323
324test:
325 python ..\..\lib\test\regrtest.py
326
327# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
328depend:
329 D:\OpusMake\os2mkmf -c -s
330
331### OPUS MKMF: Do not remove this line! Generated dependencies follow.
332
333_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000334 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000335 import.h intobject.h intrcheck.h listobject.h longobject.h \
336 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
337 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
338 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
339 traceback.h tupleobject.h
340
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000341arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000342 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000343 import.h intobject.h intrcheck.h listobject.h longobject.h \
344 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
345 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
346 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
347 traceback.h tupleobject.h
348
349audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000350 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000351 import.h intobject.h intrcheck.h listobject.h longobject.h \
352 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
353 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
354 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
355 stringobject.h sysmodule.h traceback.h tupleobject.h
356
357binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000358 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000359 import.h intobject.h intrcheck.h listobject.h longobject.h \
360 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
361 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
362 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
363 traceback.h tupleobject.h
364
365bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000366 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000367 import.h intobject.h intrcheck.h listobject.h longobject.h \
368 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
369 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
370 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
371 traceback.h tupleobject.h
372
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000373cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000374 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000375 import.h intobject.h intrcheck.h listobject.h longobject.h \
376 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
377 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
378 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
379 stringobject.h sysmodule.h traceback.h tupleobject.h
380
381cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000382 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000383 funcobject.h import.h intobject.h intrcheck.h listobject.h \
384 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
385 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
386 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
387 stringobject.h sysmodule.h traceback.h tupleobject.h
388
389cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000390 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000391 import.h intobject.h intrcheck.h listobject.h longobject.h \
392 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
393 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
394 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
395 traceback.h tupleobject.h
396
397cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000398 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000399 funcobject.h import.h intobject.h intrcheck.h listobject.h \
400 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
401 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
402 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
403 stringobject.h sysmodule.h traceback.h tupleobject.h
404
405cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000406 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000407 funcobject.h import.h intobject.h intrcheck.h listobject.h \
408 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
409 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
410 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
411 stringobject.h sysmodule.h traceback.h tupleobject.h
412
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000413_dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000414 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000415 import.h intobject.h intrcheck.h listobject.h longobject.h \
416 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
417 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
418 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
419 traceback.h tupleobject.h
420
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000421errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000422 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000423 import.h intobject.h intrcheck.h listobject.h longobject.h \
424 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
425 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
426 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
427 traceback.h tupleobject.h
428
429errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000430 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000431 import.h intobject.h intrcheck.h listobject.h longobject.h \
432 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
433 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
434 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
435 traceback.h tupleobject.h
436
437fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000438 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000439 fileobject.h floatobject.h funcobject.h import.h intobject.h \
440 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
441 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
442 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
443 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
444
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000445fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000446 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000447 funcobject.h import.h intobject.h intrcheck.h listobject.h \
448 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
449 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
450 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
451 stringobject.h sysmodule.h traceback.h tupleobject.h
452
453fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000454 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000455 funcobject.h import.h intobject.h intrcheck.h listobject.h \
456 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
457 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
458 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
459 stringobject.h sysmodule.h traceback.h tupleobject.h
460
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000461_gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000462 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000463 import.h intobject.h intrcheck.h listobject.h longobject.h \
464 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
465 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
466 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
467 traceback.h tupleobject.h
468
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000469getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000470
471getpath.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 osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
476 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
477 sysmodule.h traceback.h tupleobject.h
478
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000479grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000480 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000481 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
482 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
483 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
484 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
485 traceback.h tupleobject.h
486
487imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000488 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000489 import.h intobject.h intrcheck.h listobject.h longobject.h \
490 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
491 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
492 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
493 traceback.h tupleobject.h
494
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000495main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000496 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000497 import.h intobject.h intrcheck.h listobject.h longobject.h \
498 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
499 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
500 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
501 traceback.h tupleobject.h
502
503mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000504 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000505 import.h intobject.h intrcheck.h listobject.h longobject.h \
506 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
507 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
508 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
509 stringobject.h sysmodule.h traceback.h tupleobject.h
510
Tim Peters1ca12962001-12-04 03:18:48 +0000511mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000512 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000513 funcobject.h import.h intobject.h intrcheck.h listobject.h \
514 longintrepr.h longobject.h methodobject.h modsupport.h \
515 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
516 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
517 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
518
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000519nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000520 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000521 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
522 listobject.h longobject.h methodobject.h modsupport.h \
523 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
524 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
525 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
526
527operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000528 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000529 import.h intobject.h intrcheck.h listobject.h longobject.h \
530 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
531 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
532 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
533 traceback.h tupleobject.h
534
535parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000536 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000537 funcobject.h graminit.h import.h intobject.h intrcheck.h \
538 listobject.h longobject.h methodobject.h modsupport.h \
539 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
540 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
541 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
542 traceback.h tupleobject.h
543
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000544posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000545 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000546 import.h intobject.h intrcheck.h listobject.h longobject.h \
547 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
548 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
549 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
550 sysmodule.h traceback.h tupleobject.h
551
552posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000553 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000554 import.h intobject.h intrcheck.h listobject.h longobject.h \
555 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
556 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
557 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
558 sysmodule.h traceback.h tupleobject.h
559
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000560pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000561 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000562 import.h intobject.h intrcheck.h listobject.h longobject.h \
563 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
564 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
565 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
566 sysmodule.h traceback.h tupleobject.h
567
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000568readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000569 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000570 import.h intobject.h intrcheck.h listobject.h longobject.h \
571 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
572 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
573 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
574 traceback.h tupleobject.h
575
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000576resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000577 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000578 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
579 listobject.h longobject.h methodobject.h modsupport.h \
580 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
581 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
582 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
583
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000584selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000585 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000586 funcobject.h import.h intobject.h intrcheck.h listobject.h \
587 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
588 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
589 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
590 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
591
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000592signalmodule.obj: abstract.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 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
597 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
598 stringobject.h sysmodule.h traceback.h tupleobject.h
599
600socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
601 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000602 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000603 funcobject.h import.h intobject.h intrcheck.h listobject.h \
604 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
605 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
606 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
607 stringobject.h sysmodule.h traceback.h tupleobject.h
608
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000609structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000610 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000611 funcobject.h import.h intobject.h intrcheck.h listobject.h \
612 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
613 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
614 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
615 stringobject.h sysmodule.h traceback.h tupleobject.h
616
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000617syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000618 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000619 funcobject.h import.h intobject.h intrcheck.h listobject.h \
620 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
621 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
622 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
623 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
624
625termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000626 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000627 import.h intobject.h intrcheck.h listobject.h longobject.h \
628 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
629 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
630 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
631 traceback.h tupleobject.h
632
Georg Brandl2067bfd2008-05-25 13:05:15 +0000633_threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000634 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000635 funcobject.h import.h intobject.h intrcheck.h listobject.h \
636 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
637 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
638 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
639 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
640
641timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000642 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000643 import.h intobject.h intrcheck.h listobject.h longobject.h \
644 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
645 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
646 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
647 sysmodule.h traceback.h tupleobject.h
648
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000649xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000650 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000651 import.h intobject.h intrcheck.h listobject.h longobject.h \
652 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
653 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
654 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
655 traceback.h tupleobject.h
656
657yuvconvert.obj: yuv.h
658
659zlibmodule.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
667abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000668 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000669 import.h intobject.h intrcheck.h listobject.h longobject.h \
670 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
671 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
672 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
673 traceback.h tupleobject.h
674
675classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000676 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000677 import.h intobject.h intrcheck.h listobject.h longobject.h \
678 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
679 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
680 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
681 structmember.h sysmodule.h traceback.h tupleobject.h
682
683cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000684 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000685 import.h intobject.h intrcheck.h listobject.h longobject.h \
686 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
687 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
688 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
689 traceback.h tupleobject.h
690
691complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000692 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000693 funcobject.h import.h intobject.h intrcheck.h listobject.h \
694 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
695 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
696 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
697 stringobject.h sysmodule.h traceback.h tupleobject.h
698
699dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000700 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000701 import.h intobject.h intrcheck.h listobject.h longobject.h \
702 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
703 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
704 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
705 traceback.h tupleobject.h
706
707fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000708 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000709 import.h intobject.h intrcheck.h listobject.h longobject.h \
710 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
711 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
712 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
713 structmember.h sysmodule.h traceback.h tupleobject.h
714
715floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000716 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000717 import.h intobject.h intrcheck.h listobject.h longobject.h \
718 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
719 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
720 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
721 stringobject.h sysmodule.h traceback.h tupleobject.h
722
723frameobject.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 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
726 listobject.h longobject.h methodobject.h modsupport.h \
727 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
728 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
729 rangeobject.h sliceobject.h stringobject.h structmember.h \
730 sysmodule.h traceback.h tupleobject.h
731
732funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000733 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000734 funcobject.h import.h intobject.h intrcheck.h listobject.h \
735 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
736 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
737 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
738 stringobject.h structmember.h sysmodule.h traceback.h \
739 tupleobject.h
740
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000741listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000742 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000743 import.h intobject.h intrcheck.h listobject.h longobject.h \
744 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
745 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
746 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
747 traceback.h tupleobject.h
748
Tim Peters1ca12962001-12-04 03:18:48 +0000749longobject.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 longintrepr.h longobject.h methodobject.h modsupport.h \
753 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
754 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
755 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
756 tupleobject.h
757
758methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000759 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000760 funcobject.h import.h intobject.h intrcheck.h listobject.h \
761 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
762 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
763 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
764 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
765
766moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000767 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000768 funcobject.h import.h intobject.h intrcheck.h listobject.h \
769 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
770 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
771 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
772 stringobject.h sysmodule.h traceback.h tupleobject.h
773
774object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000775 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000776 import.h intobject.h intrcheck.h listobject.h longobject.h \
777 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
778 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
779 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
780 traceback.h tupleobject.h
781
782rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000783 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000784 import.h intobject.h intrcheck.h listobject.h longobject.h \
785 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
786 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
787 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
788 traceback.h tupleobject.h
789
790sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000791 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000792 import.h intobject.h intrcheck.h listobject.h longobject.h \
793 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
794 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
795 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
796 traceback.h tupleobject.h
797
798stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000799 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000800 funcobject.h import.h intobject.h intrcheck.h listobject.h \
801 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
802 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
803 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
804 stringobject.h sysmodule.h traceback.h tupleobject.h
805
806tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000807 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000808 import.h intobject.h intrcheck.h listobject.h longobject.h \
809 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
810 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
811 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
812 traceback.h tupleobject.h
813
814typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000815 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000816 import.h intobject.h intrcheck.h listobject.h longobject.h \
817 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
818 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
819 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
820 traceback.h tupleobject.h
821
822xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000823 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000824 import.h intobject.h intrcheck.h listobject.h longobject.h \
825 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
826 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
827 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
828 traceback.h tupleobject.h
829
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000830acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000831 parser.h pgenheaders.h pydebug.h token.h
832
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000833bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000834
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000835firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000836 pgenheaders.h pydebug.h token.h
837
Tim Peters1ca12962001-12-04 03:18:48 +0000838grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000839 pgenheaders.h pydebug.h token.h
840
Tim Peters1ca12962001-12-04 03:18:48 +0000841grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000842 pgenheaders.h pydebug.h token.h
843
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000844intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000845
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000846listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000847 token.h
848
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000849metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000850 myproto.h pgen.h pgenheaders.h pydebug.h
851
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000852myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000853
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000854node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000855
Tim Peters1ca12962001-12-04 03:18:48 +0000856parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000857 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
858
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000859parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000860 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
861 tokenizer.h
862
Tim Peters1ca12962001-12-04 03:18:48 +0000863pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000864 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
865
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000866pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867 parsetok.h pgen.h pgenheaders.h pydebug.h
868
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000869printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000870 pgenheaders.h pydebug.h
871
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000872tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000873 pydebug.h token.h tokenizer.h
874
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000875atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000876
877bltinmodule.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 funcobject.h import.h intobject.h intrcheck.h \
880 listobject.h longobject.h methodobject.h modsupport.h \
881 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
882 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
883 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
884 traceback.h tupleobject.h
885
886ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000887 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000888 floatobject.h frameobject.h funcobject.h import.h intobject.h \
889 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
890 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
891 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
892 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
893 tupleobject.h
894
895compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000896 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000897 funcobject.h graminit.h import.h intobject.h intrcheck.h \
898 listobject.h longobject.h methodobject.h modsupport.h \
899 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
900 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
901 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
902 structmember.h sysmodule.h token.h traceback.h tupleobject.h
903
904errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000905 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000906 import.h intobject.h intrcheck.h listobject.h longobject.h \
907 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
908 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
909 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
910 traceback.h tupleobject.h
911
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000912fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000913
914frozen.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
922frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000923 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000924 import.h intobject.h intrcheck.h listobject.h longobject.h \
925 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
926 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
927 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
928 traceback.h tupleobject.h
929
930getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000931 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000932 import.h intobject.h intrcheck.h listobject.h longobject.h \
933 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
934 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
935 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
936 traceback.h tupleobject.h
937
938getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000939 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000940 import.h intobject.h intrcheck.h listobject.h longobject.h \
941 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
942 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
943 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
944 traceback.h tupleobject.h
945
946getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000947 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000948 funcobject.h import.h intobject.h intrcheck.h listobject.h \
949 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
950 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
951 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
952 stringobject.h sysmodule.h traceback.h tupleobject.h
953
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000954getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000955
956getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000957 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000958 import.h intobject.h intrcheck.h listobject.h longobject.h \
959 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
960 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
961 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
962 traceback.h tupleobject.h
963
964getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000965 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000966 import.h intobject.h intrcheck.h listobject.h longobject.h \
967 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
968 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
969 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
970 stringobject.h sysmodule.h traceback.h tupleobject.h
971
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000972graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000973 pgenheaders.h pydebug.h
974
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000975hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000976
977import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000978 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000979 fileobject.h floatobject.h funcobject.h import.h importdl.h \
980 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
981 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
982 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
983 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
984 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
985
986importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000987 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000988 import.h importdl.h intobject.h intrcheck.h listobject.h \
989 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
990 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
991 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
992 stringobject.h sysmodule.h traceback.h tupleobject.h
993
994marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000995 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000996 funcobject.h import.h intobject.h intrcheck.h listobject.h \
997 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
998 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
999 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1000 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1001
1002modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001003 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001004 import.h intobject.h intrcheck.h listobject.h longobject.h \
1005 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1006 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1007 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1008 traceback.h tupleobject.h
1009
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001010mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001011
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001012pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001013
1014pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001015 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001016 import.h intobject.h intrcheck.h listobject.h longobject.h \
1017 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1018 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1019 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1020 traceback.h tupleobject.h
1021
1022pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001023 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001024 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1025 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1026 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1027 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1028 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1029 stringobject.h sysmodule.h traceback.h tupleobject.h
1030
1031sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001032 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001033 import.h intobject.h intrcheck.h listobject.h longobject.h \
1034 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1035 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1036 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1037 traceback.h tupleobject.h
1038
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001039strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001040
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001041strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001042
1043structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001044 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001045 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1046 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1047 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1048 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1049 stringobject.h structmember.h sysmodule.h traceback.h \
1050 tupleobject.h
1051
1052sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001053 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001054 import.h intobject.h intrcheck.h listobject.h longobject.h \
1055 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1056 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1057 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1058 sysmodule.h traceback.h tupleobject.h
1059
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001060thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001061
1062traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001063 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001064 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1065 listobject.h longobject.h methodobject.h modsupport.h \
1066 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1067 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1068 rangeobject.h sliceobject.h stringobject.h structmember.h \
1069 sysmodule.h traceback.h tupleobject.h