blob: 783e5ecc7cc9082da343279a3cb7f1395449bb7c [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 \
126 IntObject.obj \
127 ListObject.obj \
128 LongObject.obj \
129 MethodObject.obj \
130 ModuleObject.obj \
131 Object.obj \
132 RangeObject.obj \
133 SliceObject.obj \
134 StringObject.obj \
135 TupleObject.obj \
136 TypeObject.obj
137
138# Omitted Objects (and Reason):
139 # xxobject.c -- Template to Create Your Own Object Types
140
141# Extension Modules (Built-In or as Separate DLLs)
142MODULES = \
143 ArrayModule.obj \
144 BinAscii.obj \
145 CMathModule.obj \
146 cPickle.obj \
147 cStringIO.obj \
148 ErrnoModule.obj \
149 GetBuildInfo.obj \
150 GetPathP.obj \
151 Main.obj \
152 MathModule.obj \
153 MD5c.obj \
154 MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000155 Operator.obj \
156 PosixModule.obj \
157 RegexModule.obj \
158 RegExpr.obj \
159 ReopModule.obj \
160 SelectModule.obj \
161 SignalModule.obj \
162 SocketModule.obj \
163 SoundEx.obj \
164 StropModule.obj \
165 StructModule.obj \
166 TimeModule.obj \
167 ThreadModule.obj \
168 YUVConvert.obj
169
170# Omitted Modules (and Description/Reason):
171 #
172 # Multimedia:
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000173 # audioop.c -- Various Compute Operations on Audio Samples
174 # imageop.c -- Various Compute Operations on Video Samples
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000175 # sunaudiodev.c -- Wrapper of Sun Audio Device API
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000176
177 # Database:
178 # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000179 # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
180
181 # Cryptography:
182 # cryptmodule.c -- Simple Wrapper for crypt() Function
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000183
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000184# fcntlmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000185# fpectlmodule.obj \
186# fpetestmodule.obj \
187# Unix-Specific getpath.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000188# grpmodule.obj \
189# mpzmodule.obj \
190# nismodule.obj \
191# parsermodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000192# pwdmodule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000193# readline.obj \
194# resource.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000195# syslogmodule.obj \
196# termios.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000197
198 # User Interface:
199# _tkinter.obj \
200# stdwinmodule.obj \
201# cursesmodule.obj \
202# tclNotify.obj \
203# tkappinit.obj \
204 # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
205
206 # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
207 # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
208 # dlmodule.c -- Some Wierd Form of Data Processing Module
209 # xxmodule.c -- Template to Create Your Own Module
210
211#
212# Standalone Parser Generator Program (Shares Some of Python's Modules)
213PGEN = \
214 PGenMain.obj \
215 PGen.obj \
216 PrintGrammar.obj \
217 ListNode.obj \
218 Grammar.obj \
219 BitSet.obj \
220 FirstSets.obj \
221 MetaGrammar.obj
222
223# Omitted Parser Elements (and Reason):
224 # intrcheck.c -- Not Referenced by Anyone (?)
225
226##################
227# Macros and Flags
228##################
229_BASE = /Q /W2 /I$(PROJINCLUDE)
230 # /Q = Omit IBM Copyright
231 # /W2 = Show Warnings/Errors Only
232 # /Fi = Create Precompiled Headers
233 # /Si = Utilize Precompiled Headers
234
235_GEN = /G4 /Gm /Gd /B"/STACK:360000"
236 # /G4 = Generate Code for 486 (Use 386 for Debugger)
237 # /Gm = Use Multithread Runtime
238 # /Gd = Dynamically Load Runtime
239 # /Gs = Remove Code for Stack Probes
240 # /Gx = Remove C++ Exception-Handling Info
241 # /Tdp = Generate Code for C++ Templates
242 # /Rn = Generate Code without a Runtime
243 # /B"/STACK:n" = Set Stack Size
244
245_OPT = /O /Gl
246 # /O = Enable Speed-Optimizations
247 # /Ol = Pass Code Thru Intermediate Linker
248 # /Gu = Advise Linker All Ext Data is ID'd
249 # /Gl = Have Linker Remove Unused Fns
250
251_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
252 # /Ti = Embed Debugger/Analyzer Recs
253 # /Tm = Enable Debug Memory Fns
254 # /Tx = Request Full Dump Upon Exception
255 # /DDEBUG = Enable App-Internal Debugging Code
256 # /DUSE_SOCKET =
257 # /DUSE_DL_EXPORT =
258
259_OUT =
260 # /Fb = Embed Browser Recs
261 # /Gh = Generate Code for Profiler Hooks
262 # /Fl = Output C/C++ Listing Files
263 # /Lf = Provide Full (Detailed) Listing Files
264 # /Fm. = Output Linker Map File
265 # /Ft. = Output C++ Template Resolution Files
266
267_MAP = /FmNoise\$(.TARGET,B,>.map)
268
269_DLL = /Ge-
270_EXE = /Ge
271 # /Ge = Create an EXE, not DLL
272
273CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
274CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
275
276###################
277# Primary Target(s)
278###################
279All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
280
281##############
282#
283##############
284
285# Object Library of All Essential Python Routines
286PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
287 %do "%.lib"
288
289Python15.dll: Compile.obj PyCore.lib Python.def
290 %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
291
292Compile.obj: Compile.c
293 %do ".c.obj" CFLAGS+=$(_DLL)
294
295# Import Library for Using the Python15.dll
296Python15.lib: Python.def
297 %do ".def.lib"
298
299# Small Program to Start Interpreter in Python15.dll
300Python.exe: Python.obj Python15.lib
301 %do "%.exe" CPPFLAGS+=$(_MAP)
302
303#Python.obj: Python.c
304# %do ".c.obj" CFLAGS+=$(_EXE)
305
306PGen.exe: $(PGEN) PyCore.lib
307 %do "%.exe" CPPFLAGS+=$(_MAP)
308
309#######################
310# Miscellaneous Targets
311#######################
312
313# Remove Intermediate Targets but Leave Executable Binaries
314clean:
315 -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
316 -- Del /Q /Y Noise >NUL 2>&1
317 -- Del /Q $(ERRS) >NUL 2>&1
318
319# Remove All Targets, Including Final Binaries
320distclean: clean
321 -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
322 -- Del /Q Python15.dll Python.exe >NUL 2>&1
323
324release: Python.exe Python15.dll Python15.lib
325 -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
326 -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
327 -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
328
329test:
330 python ..\..\lib\test\regrtest.py
331
332# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
333depend:
334 D:\OpusMake\os2mkmf -c -s
335
336### OPUS MKMF: Do not remove this line! Generated dependencies follow.
337
338_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000339 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000340 import.h intobject.h intrcheck.h listobject.h longobject.h \
341 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
342 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
343 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
344 traceback.h tupleobject.h
345
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000346arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000347 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000348 import.h intobject.h intrcheck.h listobject.h longobject.h \
349 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
350 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
351 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
352 traceback.h tupleobject.h
353
354audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000355 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000356 import.h intobject.h intrcheck.h listobject.h longobject.h \
357 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
358 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
359 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
360 stringobject.h sysmodule.h traceback.h tupleobject.h
361
362binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000363 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000364 import.h intobject.h intrcheck.h listobject.h longobject.h \
365 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
366 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
367 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
368 traceback.h tupleobject.h
369
370bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000371 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000372 import.h intobject.h intrcheck.h listobject.h longobject.h \
373 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
374 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
375 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
376 traceback.h tupleobject.h
377
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000378cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000379 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000380 import.h intobject.h intrcheck.h listobject.h longobject.h \
381 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
382 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
383 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
384 stringobject.h sysmodule.h traceback.h tupleobject.h
385
386cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000387 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000388 funcobject.h import.h intobject.h intrcheck.h listobject.h \
389 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
390 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
391 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
392 stringobject.h sysmodule.h traceback.h tupleobject.h
393
394cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000395 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000396 import.h intobject.h intrcheck.h listobject.h longobject.h \
397 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
398 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
399 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
400 traceback.h tupleobject.h
401
402cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000403 pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000404 funcobject.h import.h intobject.h intrcheck.h listobject.h \
405 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
406 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
407 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
408 stringobject.h sysmodule.h traceback.h tupleobject.h
409
410cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000411 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000412 funcobject.h import.h intobject.h intrcheck.h listobject.h \
413 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
414 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
415 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
416 stringobject.h sysmodule.h traceback.h tupleobject.h
417
418dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000419 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000420 import.h intobject.h intrcheck.h listobject.h longobject.h \
421 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
422 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
423 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
424 traceback.h tupleobject.h
425
426dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000427 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000428 import.h intobject.h intrcheck.h listobject.h longobject.h \
429 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
430 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
431 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
432 traceback.h tupleobject.h
433
434errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000435 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000436 import.h intobject.h intrcheck.h listobject.h longobject.h \
437 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
438 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
439 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
440 traceback.h tupleobject.h
441
442errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000443 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000444 import.h intobject.h intrcheck.h listobject.h longobject.h \
445 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
446 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
447 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
448 traceback.h tupleobject.h
449
450fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000451 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000452 fileobject.h floatobject.h funcobject.h import.h intobject.h \
453 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
454 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
455 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
456 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
457
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000458fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000459 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000460 funcobject.h import.h intobject.h intrcheck.h listobject.h \
461 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
462 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
463 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
464 stringobject.h sysmodule.h traceback.h tupleobject.h
465
466fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000467 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000468 funcobject.h import.h intobject.h intrcheck.h listobject.h \
469 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
470 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
471 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
472 stringobject.h sysmodule.h traceback.h tupleobject.h
473
474gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000475 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000476 import.h intobject.h intrcheck.h listobject.h longobject.h \
477 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
478 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
479 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
480 traceback.h tupleobject.h
481
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000482getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000483
484getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000485 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000486 import.h intobject.h intrcheck.h listobject.h longobject.h \
487 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
488 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
489 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
490 sysmodule.h traceback.h tupleobject.h
491
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000492grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000493 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000494 grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
495 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
496 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
497 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
498 traceback.h tupleobject.h
499
500imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000501 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000502 import.h intobject.h intrcheck.h listobject.h longobject.h \
503 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
504 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
505 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
506 traceback.h tupleobject.h
507
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000508main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000509 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000510 import.h intobject.h intrcheck.h listobject.h longobject.h \
511 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
512 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
513 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
514 traceback.h tupleobject.h
515
516mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000517 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000518 import.h intobject.h intrcheck.h listobject.h longobject.h \
519 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
520 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
521 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
522 stringobject.h sysmodule.h traceback.h tupleobject.h
523
Tim Peters1ca12962001-12-04 03:18:48 +0000524mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000525 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000526 funcobject.h import.h intobject.h intrcheck.h listobject.h \
527 longintrepr.h longobject.h methodobject.h modsupport.h \
528 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
529 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
530 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
531
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000532nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000533 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000534 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
535 listobject.h longobject.h methodobject.h modsupport.h \
536 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
537 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
538 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
539
540operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000541 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000542 import.h intobject.h intrcheck.h listobject.h longobject.h \
543 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
544 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
545 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
546 traceback.h tupleobject.h
547
548parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000549 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000550 funcobject.h graminit.h import.h intobject.h intrcheck.h \
551 listobject.h longobject.h methodobject.h modsupport.h \
552 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
553 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
554 rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
555 traceback.h tupleobject.h
556
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000557posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000558 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000559 import.h intobject.h intrcheck.h listobject.h longobject.h \
560 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
561 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
562 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
563 sysmodule.h traceback.h tupleobject.h
564
565posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000566 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000567 import.h intobject.h intrcheck.h listobject.h longobject.h \
568 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
569 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
570 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
571 sysmodule.h traceback.h tupleobject.h
572
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000573pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000574 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000575 import.h intobject.h intrcheck.h listobject.h longobject.h \
576 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
577 object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
578 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
579 sysmodule.h traceback.h tupleobject.h
580
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000581readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000582 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000583 import.h intobject.h intrcheck.h listobject.h longobject.h \
584 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
585 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
586 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
587 traceback.h tupleobject.h
588
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000589resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000590 cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000591 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
592 listobject.h longobject.h methodobject.h modsupport.h \
593 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
594 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
595 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
596
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000597selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000598 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000599 funcobject.h import.h intobject.h intrcheck.h listobject.h \
600 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
601 myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
602 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
603 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
604
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000605signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000606 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000607 funcobject.h import.h intobject.h intrcheck.h listobject.h \
608 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
609 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
610 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
611 stringobject.h sysmodule.h traceback.h tupleobject.h
612
613socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
614 c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000615 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000616 funcobject.h import.h intobject.h intrcheck.h listobject.h \
617 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
618 myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
619 pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
620 stringobject.h sysmodule.h traceback.h tupleobject.h
621
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000622structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000623 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000624 funcobject.h import.h intobject.h intrcheck.h listobject.h \
625 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
626 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
627 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
628 stringobject.h sysmodule.h traceback.h tupleobject.h
629
630sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000631 classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000632 fileobject.h floatobject.h funcobject.h import.h intobject.h \
633 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
634 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
635 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
636 sliceobject.h stringobject.h structmember.h sysmodule.h \
637 traceback.h tupleobject.h
638
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000639syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000640 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000641 funcobject.h import.h intobject.h intrcheck.h listobject.h \
642 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
643 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
644 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
645 stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
646
647termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000648 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000649 import.h intobject.h intrcheck.h listobject.h longobject.h \
650 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
651 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
652 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
653 traceback.h tupleobject.h
654
655threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000656 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000657 funcobject.h import.h intobject.h intrcheck.h listobject.h \
658 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
659 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
660 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
661 stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
662
663timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000664 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000665 import.h intobject.h intrcheck.h listobject.h longobject.h \
666 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
667 mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
668 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
669 sysmodule.h traceback.h tupleobject.h
670
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000671xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000672 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000673 import.h intobject.h intrcheck.h listobject.h longobject.h \
674 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
675 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
676 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
677 traceback.h tupleobject.h
678
679yuvconvert.obj: yuv.h
680
681zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000682 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000683 import.h intobject.h intrcheck.h listobject.h longobject.h \
684 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
685 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
686 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
687 traceback.h tupleobject.h
688
689abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000690 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000691 import.h intobject.h intrcheck.h listobject.h longobject.h \
692 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
693 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
694 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
695 traceback.h tupleobject.h
696
697classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000698 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000699 import.h intobject.h intrcheck.h listobject.h longobject.h \
700 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
701 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
702 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
703 structmember.h sysmodule.h traceback.h tupleobject.h
704
705cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000706 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000707 import.h intobject.h intrcheck.h listobject.h longobject.h \
708 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
709 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
710 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
711 traceback.h tupleobject.h
712
713complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000714 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000715 funcobject.h import.h intobject.h intrcheck.h listobject.h \
716 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
717 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
718 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
719 stringobject.h sysmodule.h traceback.h tupleobject.h
720
721dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000722 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000723 import.h intobject.h intrcheck.h listobject.h longobject.h \
724 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
725 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
726 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
727 traceback.h tupleobject.h
728
729fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000730 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000731 import.h intobject.h intrcheck.h listobject.h longobject.h \
732 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
733 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
734 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
735 structmember.h sysmodule.h traceback.h tupleobject.h
736
737floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000738 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000739 import.h intobject.h intrcheck.h listobject.h longobject.h \
740 methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
741 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
742 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
743 stringobject.h sysmodule.h traceback.h tupleobject.h
744
745frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000746 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000747 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
748 listobject.h longobject.h methodobject.h modsupport.h \
749 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
750 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
751 rangeobject.h sliceobject.h stringobject.h structmember.h \
752 sysmodule.h traceback.h tupleobject.h
753
754funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000755 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000756 funcobject.h import.h intobject.h intrcheck.h listobject.h \
757 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
758 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
759 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
760 stringobject.h structmember.h sysmodule.h traceback.h \
761 tupleobject.h
762
763intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000764 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000765 import.h intobject.h intrcheck.h listobject.h longobject.h \
766 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
767 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
768 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
769 traceback.h tupleobject.h
770
771listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000772 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000773 import.h intobject.h intrcheck.h listobject.h longobject.h \
774 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
775 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
776 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
777 traceback.h tupleobject.h
778
Tim Peters1ca12962001-12-04 03:18:48 +0000779longobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000780 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000781 funcobject.h import.h intobject.h intrcheck.h listobject.h \
782 longintrepr.h longobject.h methodobject.h modsupport.h \
783 moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
784 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
785 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
786 tupleobject.h
787
788methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000789 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000790 funcobject.h import.h intobject.h intrcheck.h listobject.h \
791 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
792 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
793 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
794 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
795
796moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000797 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000798 funcobject.h import.h intobject.h intrcheck.h listobject.h \
799 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
800 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
801 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
802 stringobject.h sysmodule.h traceback.h tupleobject.h
803
804object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000805 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000806 import.h intobject.h intrcheck.h listobject.h longobject.h \
807 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
808 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
809 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
810 traceback.h tupleobject.h
811
812rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000813 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000814 import.h intobject.h intrcheck.h listobject.h longobject.h \
815 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
816 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
817 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
818 traceback.h tupleobject.h
819
820sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000821 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000822 import.h intobject.h intrcheck.h listobject.h longobject.h \
823 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
824 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
825 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
826 traceback.h tupleobject.h
827
828stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000829 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000830 funcobject.h import.h intobject.h intrcheck.h listobject.h \
831 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
832 mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
833 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
834 stringobject.h sysmodule.h traceback.h tupleobject.h
835
836tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000837 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000838 import.h intobject.h intrcheck.h listobject.h longobject.h \
839 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
840 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
841 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
842 traceback.h tupleobject.h
843
844typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000845 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000846 import.h intobject.h intrcheck.h listobject.h longobject.h \
847 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
848 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
849 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
850 traceback.h tupleobject.h
851
852xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000853 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000854 import.h intobject.h intrcheck.h listobject.h longobject.h \
855 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
856 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
857 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
858 traceback.h tupleobject.h
859
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000860acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000861 parser.h pgenheaders.h pydebug.h token.h
862
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000863bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000864
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000865firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000866 pgenheaders.h pydebug.h token.h
867
Tim Peters1ca12962001-12-04 03:18:48 +0000868grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000869 pgenheaders.h pydebug.h token.h
870
Tim Peters1ca12962001-12-04 03:18:48 +0000871grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000872 pgenheaders.h pydebug.h token.h
873
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000874intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000875
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000876listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000877 token.h
878
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000879metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000880 myproto.h pgen.h pgenheaders.h pydebug.h
881
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000882myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000883
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885
Tim Peters1ca12962001-12-04 03:18:48 +0000886parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000887 myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
888
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000889parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000890 node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
891 tokenizer.h
892
Tim Peters1ca12962001-12-04 03:18:48 +0000893pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000894 myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
895
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000896pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000897 parsetok.h pgen.h pgenheaders.h pydebug.h
898
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000899printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000900 pgenheaders.h pydebug.h
901
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000902tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000903 pydebug.h token.h tokenizer.h
904
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000905atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000906
907bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000908 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000909 floatobject.h funcobject.h import.h intobject.h intrcheck.h \
910 listobject.h longobject.h methodobject.h modsupport.h \
911 moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
912 objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
913 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
914 traceback.h tupleobject.h
915
916ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000917 complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000918 floatobject.h frameobject.h funcobject.h import.h intobject.h \
919 intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
920 moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
921 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
922 rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
923 tupleobject.h
924
925compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000926 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000927 funcobject.h graminit.h import.h intobject.h intrcheck.h \
928 listobject.h longobject.h methodobject.h modsupport.h \
929 moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
930 opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
931 pythonrun.h rangeobject.h sliceobject.h stringobject.h \
932 structmember.h sysmodule.h token.h traceback.h tupleobject.h
933
934errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000935 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000936 import.h intobject.h intrcheck.h listobject.h longobject.h \
937 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
938 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
939 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
940 traceback.h tupleobject.h
941
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000942fmod.obj: pyconfig.h mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000943
944frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000945 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000946 import.h intobject.h intrcheck.h listobject.h longobject.h \
947 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
948 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
949 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
950 traceback.h tupleobject.h
951
952frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000953 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000954 import.h intobject.h intrcheck.h listobject.h longobject.h \
955 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
956 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
957 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
958 traceback.h tupleobject.h
959
960getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000961 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000962 import.h intobject.h intrcheck.h listobject.h longobject.h \
963 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
964 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
965 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
966 traceback.h tupleobject.h
967
968getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000969 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000970 import.h intobject.h intrcheck.h listobject.h longobject.h \
971 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
972 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
973 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
974 traceback.h tupleobject.h
975
976getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000977 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000978 funcobject.h import.h intobject.h intrcheck.h listobject.h \
979 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
980 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
981 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
982 stringobject.h sysmodule.h traceback.h tupleobject.h
983
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000984getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000985
986getplatform.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 intobject.h intrcheck.h listobject.h longobject.h \
989 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
990 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
991 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
992 traceback.h tupleobject.h
993
994getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000995 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000996 import.h intobject.h intrcheck.h listobject.h longobject.h \
997 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
998 object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
999 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1000 stringobject.h sysmodule.h traceback.h tupleobject.h
1001
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001002graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001003 pgenheaders.h pydebug.h
1004
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001005hypot.obj: pyconfig.h mymath.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001006
1007import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001008 complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001009 fileobject.h floatobject.h funcobject.h import.h importdl.h \
1010 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1011 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1012 node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1013 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1014 stringobject.h sysmodule.h token.h traceback.h tupleobject.h
1015
1016importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001017 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001018 import.h importdl.h intobject.h intrcheck.h listobject.h \
1019 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1020 myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1021 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1022 stringobject.h sysmodule.h traceback.h tupleobject.h
1023
1024marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001025 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001026 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1027 longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1028 moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1029 pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1030 sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1031
1032modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001033 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001034 import.h intobject.h intrcheck.h listobject.h longobject.h \
1035 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1036 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1037 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1038 traceback.h tupleobject.h
1039
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001040mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001041
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001042pyfpe.obj: pyconfig.h pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001043
1044pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001045 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001046 import.h intobject.h intrcheck.h listobject.h longobject.h \
1047 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1048 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1049 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1050 traceback.h tupleobject.h
1051
1052pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001053 compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001054 fileobject.h floatobject.h funcobject.h grammar.h import.h \
1055 intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1056 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1057 node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1058 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1059 stringobject.h sysmodule.h traceback.h tupleobject.h
1060
1061sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001062 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001063 import.h intobject.h intrcheck.h listobject.h longobject.h \
1064 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1065 object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1066 pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1067 traceback.h tupleobject.h
1068
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001069strdup.obj: pyconfig.h mymalloc.h myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001070
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001071strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001072
1073structmember.obj: abstract.h ceval.h classobject.h cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001074 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001075 funcobject.h import.h intobject.h intrcheck.h listobject.h \
1076 longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1077 myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1078 pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1079 stringobject.h structmember.h sysmodule.h traceback.h \
1080 tupleobject.h
1081
1082sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001083 pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001084 import.h intobject.h intrcheck.h listobject.h longobject.h \
1085 methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1086 object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1087 python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1088 sysmodule.h traceback.h tupleobject.h
1089
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001090thread.obj: pyconfig.h thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001091
1092traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001093 complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001094 frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1095 listobject.h longobject.h methodobject.h modsupport.h \
1096 moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1097 pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1098 rangeobject.h sliceobject.h stringobject.h structmember.h \
1099 sysmodule.h traceback.h tupleobject.h