Merged release21-maint changes.
[python/dscho.git] / PC / os2vacpp / makefile.omk
blobd359726daa106304a6b8b7c291bea30edf7fc535
1 ######################################################################
3 #          Top-Level Makefile for Building Python for OS/2
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.
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.
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.
19 # History (Most Recent First)
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
25 ######################################################################
27 ###################
28 # Places and Things
29 ###################
30 PY_MODULES      = ..\..\Modules
31 PY_OBJECTS      = ..\..\Objects
32 PY_PARSER       = ..\..\Parser
33 PY_PYTHON       = ..\..\Python
34 PY_INCLUDE      = ..\..\Include
35 PY_INCLUDES     = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
37 # Where to Find the IBM TCP/IP Socket Includes and Libraries
38 OS2TCPIP        = C:\MPTN
40 # Where to Put the .OBJ Files, To Keep Them Out of the Way
41 .PATH.obj       = obj
43 # Search Path for Include Files
44 PROJINCLUDE     = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
46 # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
47 MKMF_SRCS       = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
49 .HDRPATH.c      := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
50 .PATH.c         = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
51 OTHERLIBS       = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
53 #################
54 # Inference Rules
55 #################
58 ###################
59 # Python Subsystems
60 ###################
62 # PYTHON is the central core, containing the builtins and interpreter.
63 PYTHON          =                    \
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
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
101   # sigcheck.c      -- Primitive Signal Catcher (SignalModule.c Used Instead)
102   # pyfpe.c         -- Primitive FPE Catcher (Not Referenced by Anyone)
103   # frozenmain.c
105 # Python's Internal Parser
106 PARSER          =                   \
107                   Acceler.obj       \
108                   Grammar1.obj      \
109                   MyReadline.obj    \
110                   Node.obj          \
111                   Parser.obj        \
112                   ParseTok.obj      \
113                   Tokenizer.obj
115 # Python Object Types
116 OBJECTS         =                   \
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
138 # Omitted Objects (and Reason):
139   # xxobject.c      -- Template to Create Your Own Object Types
141 # Extension Modules (Built-In or as Separate DLLs)
142 MODULES         =                   \
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     \
155                   NewModule.obj     \
156                   Operator.obj      \
157                   PosixModule.obj   \
158                   RegexModule.obj   \
159                   RegExpr.obj       \
160                   ReopModule.obj    \
161                   SelectModule.obj  \
162                   SignalModule.obj  \
163                   SocketModule.obj  \
164                   SoundEx.obj       \
165                   StropModule.obj   \
166                   StructModule.obj  \
167                   TimeModule.obj    \
168                   ThreadModule.obj  \
169                   YUVConvert.obj
171 # Omitted Modules (and Description/Reason):
172   #
173   # Multimedia:
174   # almodule.c      -- Non-OS/2 Audio Channel Facility (?)
175   # cdmodule.c      -- Wrapper of Non-OS/2 CD Audio Functions
176   # audioop.c       -- Various Compute Operations on Audio Samples
177   # imageop.c       -- Various Compute Operations on Video Samples
178   # imgfile.c       -- Wrapper of SGI ImageLib API
179   # rgbimgmodule.c  -- Non-OS/2 Image Read/Write Capability (Primitive)
180   # sunaudiodev.c   -- Wrapper of Sun Audio Device API
181   # clmodule.c      -- Wrapper of SGI Image/Audio Compression API
183   # Database:
184   # dbmmodule.c     -- Wrapper of DBM Database API (Generic Flavor)
185   # bsddbmodule.c   -- Wrapper of DBM Database API (BSD Flavor)
186   # gdbmmodule.c    -- Wrapper of DBM Database API (GNU Flavor)
188   # Cryptography:
189   # cryptmodule.c   -- Simple Wrapper for crypt() Function
190   # rotormodule.c   -- Implementation of Enigma Crypto Based on Rotors
192 #                  cgensupport.obj   \
193 #                  fcntlmodule.obj   \
194 #                  fmmodule.obj      \
195 #                  fpectlmodule.obj  \
196 #                  fpetestmodule.obj \
197 # Unix-Specific    getpath.obj       \
198 #                  glmodule.obj      \
199 #                  grpmodule.obj     \
200 #                  mpzmodule.obj     \
201 #                  nismodule.obj     \
202 #                  parsermodule.obj  \
203 #                  pcremodule.obj    \
204 #                  pwdmodule.obj     \
205 #                  pypcre.obj        \
206 #                  readline.obj      \
207 #                  resource.obj      \
208 #                  sgimodule.obj     \
209 #                  svmodule.obj      \
210 #                  syslogmodule.obj  \
211 #                  termios.obj       \
212 #                  timingmodule.obj  \
214   # User Interface:
215 #                  _tkinter.obj      \     
216 #                  stdwinmodule.obj  \
217 #                  cursesmodule.obj  \
218 #                  tclNotify.obj     \
219 #                  tkappinit.obj     \
220   # flmodule.c      -- Wrapper of FORMS Library (Screen Forms)
222   # zlibmodule.c    -- Wrapper of ZLib Compression API (GZip Format)
223   # puremodule.c    -- Wrapper of Purify Debugging API (Probably Non-OS/2)
224   # dlmodule.c      -- Some Wierd Form of Data Processing Module
225   # xxmodule.c      -- Template to Create Your Own Module
228 # Standalone Parser Generator Program (Shares Some of Python's Modules)
229 PGEN            =                   \
230                   PGenMain.obj      \
231                   PGen.obj          \
232                   PrintGrammar.obj  \
233                   ListNode.obj      \
234                   Grammar.obj       \
235                   BitSet.obj        \
236                   FirstSets.obj     \
237                   MetaGrammar.obj
239 # Omitted Parser Elements (and Reason):
240   # intrcheck.c     -- Not Referenced by Anyone (?)
242 ##################
243 # Macros and Flags
244 ##################
245 _BASE           = /Q /W2 /I$(PROJINCLUDE)
246                 # /Q   = Omit IBM Copyright
247                 # /W2  = Show Warnings/Errors Only
248                 # /Fi  = Create Precompiled Headers
249                 # /Si  = Utilize Precompiled Headers
251 _GEN            = /G4 /Gm /Gd /B"/STACK:360000"
252                 # /G4  = Generate Code for 486 (Use 386 for Debugger)
253                 # /Gm  = Use Multithread Runtime
254                 # /Gd  = Dynamically Load Runtime
255                 # /Gs  = Remove Code for Stack Probes
256                 # /Gx  = Remove C++ Exception-Handling Info
257                 # /Tdp = Generate Code for C++ Templates
258                 # /Rn  = Generate Code without a Runtime
259                 # /B"/STACK:n" = Set Stack Size
261 _OPT            = /O /Gl
262                 # /O   = Enable Speed-Optimizations
263                 # /Ol  = Pass Code Thru Intermediate Linker
264                 # /Gu  = Advise Linker All Ext Data is ID'd
265                 # /Gl  = Have Linker Remove Unused Fns
267 _DBG            = /DHAVE_CONFIG_H /DUSE_SOCKET
268                 # /Ti  = Embed Debugger/Analyzer Recs
269                 # /Tm  = Enable Debug Memory Fns
270                 # /Tx  = Request Full Dump Upon Exception
271                 # /DDEBUG = Enable App-Internal Debugging Code
272                 # /DUSE_SOCKET = 
273                 # /DUSE_DL_EXPORT = 
275 _OUT            = 
276                 # /Fb  = Embed Browser Recs
277                 # /Gh  = Generate Code for Profiler Hooks
278                 # /Fl  = Output C/C++ Listing Files
279                 # /Lf  = Provide Full (Detailed) Listing Files
280                 # /Fm. = Output Linker Map File
281                 # /Ft. = Output C++ Template Resolution Files
283 _MAP            = /FmNoise\$(.TARGET,B,>.map)
285 _DLL            = /Ge-
286 _EXE            = /Ge
287                 # /Ge = Create an EXE, not DLL
289 CFLAGS          = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
290 CPPFLAGS        = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
292 ###################
293 # Primary Target(s)
294 ###################
295 All:  obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
297 ##############
299 ##############
301 # Object Library of All Essential Python Routines
302 PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
303         %do "%.lib"
305 Python15.dll: Compile.obj PyCore.lib Python.def
306         %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
308 Compile.obj: Compile.c
309         %do ".c.obj" CFLAGS+=$(_DLL)
311 # Import Library for Using the Python15.dll
312 Python15.lib: Python.def
313         %do ".def.lib"
315 # Small Program to Start Interpreter in Python15.dll
316 Python.exe: Python.obj Python15.lib
317         %do "%.exe" CPPFLAGS+=$(_MAP)
319 #Python.obj: Python.c
320 #        %do ".c.obj" CFLAGS+=$(_EXE)
322 PGen.exe: $(PGEN) PyCore.lib
323         %do "%.exe" CPPFLAGS+=$(_MAP)
325 #######################
326 # Miscellaneous Targets
327 #######################
329 # Remove Intermediate Targets but Leave Executable Binaries
330 clean:
331         -- Del /Q $(.PATH.obj)\*.obj            >NUL 2>&1
332         -- Del /Q /Y Noise                      >NUL 2>&1
333         -- Del /Q $(ERRS)                       >NUL 2>&1
335 # Remove All Targets, Including Final Binaries
336 distclean: clean
337         -- Del /Q PyCore.lib Python15.lib       >NUL 2>&1
338         -- Del /Q Python15.dll Python.exe       >NUL 2>&1
340 release: Python.exe Python15.dll Python15.lib
341         -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
342         -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
343         -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
345 test:
346         python ..\..\lib\test\regrtest.py
348 # Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
349 depend:
350         D:\OpusMake\os2mkmf -c -s
352 ### OPUS MKMF:  Do not remove this line!  Generated dependencies follow.
354 _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
355          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
356          import.h intobject.h intrcheck.h listobject.h longobject.h \
357          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
358          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
359          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
360          traceback.h tupleobject.h
362 almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
363          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
364          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
370 arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
371          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
372          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
378 audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
379          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
380          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
386 binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
387          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
388          import.h intobject.h intrcheck.h listobject.h longobject.h \
389          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
390          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
391          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
392          traceback.h tupleobject.h
394 bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
395          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
396          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
402 cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
403          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
404          import.h intobject.h intrcheck.h listobject.h longobject.h \
405          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
406          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
407          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
408          traceback.h tupleobject.h
410 cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
411          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
412          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
418 clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
419          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
420          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
426 cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
427          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
428          import.h intobject.h intrcheck.h listobject.h longobject.h \
429          methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
430          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
431          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
432          stringobject.h sysmodule.h traceback.h tupleobject.h
434 cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
435          pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
436          funcobject.h import.h intobject.h intrcheck.h listobject.h \
437          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
438          mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
439          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
440          stringobject.h sysmodule.h traceback.h tupleobject.h
442 cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
443          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
444          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
450 cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
451          pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \
452          funcobject.h import.h intobject.h intrcheck.h listobject.h \
453          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
454          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
455          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
456          stringobject.h sysmodule.h traceback.h tupleobject.h
458 cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
459          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
460          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
466 dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
467          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
468          import.h intobject.h intrcheck.h listobject.h longobject.h \
469          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
470          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
471          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
472          traceback.h tupleobject.h
474 dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
475          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
476          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
482 errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
483          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
484          import.h intobject.h intrcheck.h listobject.h longobject.h \
485          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
486          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
487          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
488          traceback.h tupleobject.h
490 errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
491          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
492          import.h intobject.h intrcheck.h listobject.h longobject.h \
493          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
494          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
495          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
496          traceback.h tupleobject.h
498 fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
499          classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
500          fileobject.h floatobject.h funcobject.h import.h intobject.h \
501          intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
502          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
503          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
504          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
506 flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
507          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
508          import.h intobject.h intrcheck.h listobject.h longobject.h \
509          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
510          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
511          pythonrun.h rangeobject.h sliceobject.h stringobject.h \
512          structmember.h sysmodule.h traceback.h tupleobject.h
514 fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
515          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
516          import.h intobject.h intrcheck.h listobject.h longobject.h \
517          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
518          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
519          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
520          traceback.h tupleobject.h
522 fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
523          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
524          funcobject.h import.h intobject.h intrcheck.h listobject.h \
525          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
526          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
527          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
528          stringobject.h sysmodule.h traceback.h tupleobject.h
530 fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
531          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
532          funcobject.h import.h intobject.h intrcheck.h listobject.h \
533          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
534          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
535          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
536          stringobject.h sysmodule.h traceback.h tupleobject.h
538 gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
539          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
540          import.h intobject.h intrcheck.h listobject.h longobject.h \
541          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
542          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
543          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
544          traceback.h tupleobject.h
546 getbuildinfo.obj: pyconfig.h
548 getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
549          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
550          import.h intobject.h intrcheck.h listobject.h longobject.h \
551          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
552          object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
553          python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
554          sysmodule.h traceback.h tupleobject.h
556 glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
557          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
558          funcobject.h import.h intobject.h intrcheck.h listobject.h \
559          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
560          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
561          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
562          stringobject.h sysmodule.h traceback.h tupleobject.h
564 grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
565          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
566          grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
567          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
568          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
569          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
570          traceback.h tupleobject.h
572 imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
573          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
574          import.h intobject.h intrcheck.h listobject.h longobject.h \
575          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
576          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
577          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
578          traceback.h tupleobject.h
580 imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
581          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
582          import.h intobject.h intrcheck.h listobject.h longobject.h \
583          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
584          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
585          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
586          traceback.h tupleobject.h
588 main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
589          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
590          import.h intobject.h intrcheck.h listobject.h longobject.h \
591          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
592          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
593          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
594          traceback.h tupleobject.h
596 mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
597          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
598          import.h intobject.h intrcheck.h listobject.h longobject.h \
599          methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
600          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
601          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
602          stringobject.h sysmodule.h traceback.h tupleobject.h
604 md5c.obj: pyconfig.h md5.h
606 md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
607          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
608          import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \
609          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
610          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
611          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
612          traceback.h tupleobject.h
614 mpzmodule.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
615          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
616          funcobject.h import.h intobject.h intrcheck.h listobject.h \
617          longintrepr.h longobject.h methodobject.h modsupport.h \
618          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
619          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
620          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
622 newmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
623          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
624          funcobject.h import.h intobject.h intrcheck.h listobject.h \
625          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
626          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
630 nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
631          cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
632          floatobject.h funcobject.h import.h intobject.h intrcheck.h \
633          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 sysmodule.h traceback.h tupleobject.h
638 operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
639          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
640          import.h intobject.h intrcheck.h listobject.h longobject.h \
641          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
642          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
643          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
644          traceback.h tupleobject.h
646 parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
647          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
648          funcobject.h graminit.h import.h intobject.h intrcheck.h \
649          listobject.h longobject.h methodobject.h modsupport.h \
650          moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
651          pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
652          rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
653          traceback.h tupleobject.h
655 pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
656          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
657          import.h intobject.h intrcheck.h listobject.h longobject.h \
658          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
659          object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \
660          pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
661          stringobject.h sysmodule.h traceback.h tupleobject.h
663 posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
664          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
665          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
671 posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
672          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
673          import.h intobject.h intrcheck.h listobject.h longobject.h \
674          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
675          mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
676          python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
677          sysmodule.h traceback.h tupleobject.h
679 puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
680          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
681          import.h intobject.h intrcheck.h listobject.h longobject.h \
682          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
683          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
684          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
685          traceback.h tupleobject.h
687 pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
688          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
689          import.h intobject.h intrcheck.h listobject.h longobject.h \
690          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
691          object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
692          python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
693          sysmodule.h traceback.h tupleobject.h
695 pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
696          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
697          graminit.h import.h intobject.h intrcheck.h listobject.h \
698          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
699          myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \
700          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
701          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
703 readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
704          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
705          import.h intobject.h intrcheck.h listobject.h longobject.h \
706          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
707          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
708          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
709          traceback.h tupleobject.h
711 regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
712          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
713          import.h intobject.h intrcheck.h listobject.h longobject.h \
714          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
715          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
716          pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
717          sysmodule.h traceback.h tupleobject.h
719 regexpr.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
720          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
721          funcobject.h import.h intobject.h intrcheck.h listobject.h \
722          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
723          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
724          pystate.h python.h pythonrun.h rangeobject.h regexpr.h \
725          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
727 reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
728          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
729          import.h intobject.h intrcheck.h listobject.h longobject.h \
730          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
731          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
732          pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
733          sysmodule.h traceback.h tupleobject.h
735 resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
736          cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \
737          floatobject.h funcobject.h import.h intobject.h intrcheck.h \
738          listobject.h longobject.h methodobject.h modsupport.h \
739          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
740          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
741          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
743 rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \
744          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
745          funcobject.h import.h intobject.h intrcheck.h listobject.h \
746          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
747          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
748          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
749          stringobject.h sysmodule.h traceback.h tupleobject.h
751 rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
752          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
753          import.h intobject.h intrcheck.h listobject.h longobject.h \
754          methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
755          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
756          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
757          stringobject.h sysmodule.h traceback.h tupleobject.h
759 selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
760          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
761          funcobject.h import.h intobject.h intrcheck.h listobject.h \
762          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
763          myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
764          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
765          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
767 sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
768          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
769          import.h intobject.h intrcheck.h listobject.h longobject.h \
770          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
771          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
772          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
773          traceback.h tupleobject.h
775 signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
776          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
777          funcobject.h import.h intobject.h intrcheck.h listobject.h \
778          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
779          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
780          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
781          stringobject.h sysmodule.h traceback.h tupleobject.h
783 socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
784          c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
785          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
786          funcobject.h import.h intobject.h intrcheck.h listobject.h \
787          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
788          myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
789          pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
790          stringobject.h sysmodule.h traceback.h tupleobject.h
792 soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
793          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
794          import.h intobject.h intrcheck.h listobject.h longobject.h \
795          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
796          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
797          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
798          traceback.h tupleobject.h
800 stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \
801          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
802          funcobject.h import.h intobject.h intrcheck.h listobject.h \
803          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
804          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
805          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
806          stringobject.h sysmodule.h traceback.h tupleobject.h
808 stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
809          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
810          import.h intobject.h intrcheck.h listobject.h longobject.h \
811          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
812          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
813          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
814          traceback.h tupleobject.h
816 structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
817          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
818          funcobject.h import.h intobject.h intrcheck.h listobject.h \
819          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
820          mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
821          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
822          stringobject.h sysmodule.h traceback.h tupleobject.h
824 sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
825          classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \
826          fileobject.h floatobject.h funcobject.h import.h intobject.h \
827          intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
828          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
829          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
830          sliceobject.h stringobject.h structmember.h sysmodule.h \
831          traceback.h tupleobject.h
833 svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
834          cobject.h compile.h complexobject.h pyconfig.h dictobject.h \
835          fileobject.h floatobject.h funcobject.h import.h intobject.h \
836          intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
837          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
838          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
839          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h \
840          yuv.h
842 syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
843          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
844          funcobject.h import.h intobject.h intrcheck.h listobject.h \
845          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
846          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
847          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
848          stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
850 termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
851          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
852          import.h intobject.h intrcheck.h listobject.h longobject.h \
853          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
854          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
855          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
856          traceback.h tupleobject.h
858 threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
859          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
860          funcobject.h import.h intobject.h intrcheck.h listobject.h \
861          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
862          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
863          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
864          stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
866 timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
867          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
868          import.h intobject.h intrcheck.h listobject.h longobject.h \
869          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
870          mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
871          python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
872          sysmodule.h traceback.h tupleobject.h
874 timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \
875          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
876          funcobject.h import.h intobject.h intrcheck.h listobject.h \
877          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
878          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
879          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
880          stringobject.h sysmodule.h timing.h traceback.h tupleobject.h
882 xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
883          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
884          import.h intobject.h intrcheck.h listobject.h longobject.h \
885          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
886          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
887          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
888          traceback.h tupleobject.h
890 yuvconvert.obj: yuv.h
892 zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
893          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
894          import.h intobject.h intrcheck.h listobject.h longobject.h \
895          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
896          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
897          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
898          traceback.h tupleobject.h
900 abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
901          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
902          import.h intobject.h intrcheck.h listobject.h longobject.h \
903          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
904          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
905          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
906          traceback.h tupleobject.h
908 classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
909          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
910          import.h intobject.h intrcheck.h listobject.h longobject.h \
911          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
912          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
913          pythonrun.h rangeobject.h sliceobject.h stringobject.h \
914          structmember.h sysmodule.h traceback.h tupleobject.h
916 cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
917          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
918          import.h intobject.h intrcheck.h listobject.h longobject.h \
919          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
920          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
921          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
922          traceback.h tupleobject.h
924 complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
925          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
926          funcobject.h import.h intobject.h intrcheck.h listobject.h \
927          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
928          mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
929          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
930          stringobject.h sysmodule.h traceback.h tupleobject.h
932 dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
933          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
934          import.h intobject.h intrcheck.h listobject.h longobject.h \
935          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
936          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
937          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
938          traceback.h tupleobject.h
940 fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
941          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
942          import.h intobject.h intrcheck.h listobject.h longobject.h \
943          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
944          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
945          pythonrun.h rangeobject.h sliceobject.h stringobject.h \
946          structmember.h sysmodule.h traceback.h tupleobject.h
948 floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
949          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
950          import.h intobject.h intrcheck.h listobject.h longobject.h \
951          methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
952          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
953          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
954          stringobject.h sysmodule.h traceback.h tupleobject.h
956 frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
957          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
958          frameobject.h funcobject.h import.h intobject.h intrcheck.h \
959          listobject.h longobject.h methodobject.h modsupport.h \
960          moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
961          pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
962          rangeobject.h sliceobject.h stringobject.h structmember.h \
963          sysmodule.h traceback.h tupleobject.h
965 funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
966          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
967          funcobject.h import.h intobject.h intrcheck.h listobject.h \
968          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
969          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
970          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
971          stringobject.h structmember.h sysmodule.h traceback.h \
972          tupleobject.h
974 intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
975          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
976          import.h intobject.h intrcheck.h listobject.h longobject.h \
977          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
978          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
979          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
980          traceback.h tupleobject.h
982 listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
983          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
984          import.h intobject.h intrcheck.h listobject.h longobject.h \
985          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
986          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
987          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
988          traceback.h tupleobject.h
990 longobject.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
991          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
992          funcobject.h import.h intobject.h intrcheck.h listobject.h \
993          longintrepr.h longobject.h methodobject.h modsupport.h \
994          moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
995          pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
996          rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
997          tupleobject.h
999 methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
1000          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1001          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1002          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1003          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1004          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1005          stringobject.h sysmodule.h token.h traceback.h tupleobject.h
1007 moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
1008          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1009          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1010          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1011          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1012          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1013          stringobject.h sysmodule.h traceback.h tupleobject.h
1015 object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1016          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1017          import.h intobject.h intrcheck.h listobject.h longobject.h \
1018          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1019          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1020          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1021          traceback.h tupleobject.h
1023 rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1024          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1025          import.h intobject.h intrcheck.h listobject.h longobject.h \
1026          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1027          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1028          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1029          traceback.h tupleobject.h
1031 sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1032          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1033          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
1039 stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
1040          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1041          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1042          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1043          mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1044          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1045          stringobject.h sysmodule.h traceback.h tupleobject.h
1047 tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1048          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1049          import.h intobject.h intrcheck.h listobject.h longobject.h \
1050          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1051          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1052          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1053          traceback.h tupleobject.h
1055 typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1056          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1057          import.h intobject.h intrcheck.h listobject.h longobject.h \
1058          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1059          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1060          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1061          traceback.h tupleobject.h
1063 xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1064          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1065          import.h intobject.h intrcheck.h listobject.h longobject.h \
1066          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1067          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1068          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1069          traceback.h tupleobject.h
1071 acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
1072          parser.h pgenheaders.h pydebug.h token.h
1074 bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h
1076 firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1077          pgenheaders.h pydebug.h token.h
1079 grammar.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1080          pgenheaders.h pydebug.h token.h
1082 grammar1.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1083          pgenheaders.h pydebug.h token.h
1085 intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
1087 listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
1088          token.h
1090 metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
1091          myproto.h pgen.h pgenheaders.h pydebug.h
1093 myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h
1095 node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
1097 parser.obj: assert.h bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \
1098          myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
1100 parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \
1101          node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
1102          tokenizer.h
1104 pgen.obj: assert.h bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \
1105          myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
1107 pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \
1108          parsetok.h pgen.h pgenheaders.h pydebug.h
1110 printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1111          pgenheaders.h pydebug.h
1113 tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \
1114          pydebug.h token.h tokenizer.h
1116 atof.obj: pyconfig.h
1118 bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1119          complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
1120          floatobject.h funcobject.h import.h intobject.h intrcheck.h \
1121          listobject.h longobject.h methodobject.h modsupport.h \
1122          moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
1123          objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1124          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1125          traceback.h tupleobject.h
1127 ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1128          complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \
1129          floatobject.h frameobject.h funcobject.h import.h intobject.h \
1130          intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
1131          moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
1132          pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1133          rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
1134          tupleobject.h
1136 compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1137          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1138          funcobject.h graminit.h import.h intobject.h intrcheck.h \
1139          listobject.h longobject.h methodobject.h modsupport.h \
1140          moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
1141          opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1142          pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1143          structmember.h sysmodule.h token.h traceback.h tupleobject.h
1145 errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1146          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1147          import.h intobject.h intrcheck.h listobject.h longobject.h \
1148          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1149          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1150          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1151          traceback.h tupleobject.h
1153 fmod.obj: pyconfig.h mymath.h
1155 frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1156          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1157          import.h intobject.h intrcheck.h listobject.h longobject.h \
1158          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1159          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1160          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1161          traceback.h tupleobject.h
1163 frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1164          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1165          import.h intobject.h intrcheck.h listobject.h longobject.h \
1166          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1167          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1168          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1169          traceback.h tupleobject.h
1171 getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1172          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1173          import.h intobject.h intrcheck.h listobject.h longobject.h \
1174          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1175          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1176          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1177          traceback.h tupleobject.h
1179 getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1180          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1181          import.h intobject.h intrcheck.h listobject.h longobject.h \
1182          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1183          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1184          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1185          traceback.h tupleobject.h
1187 getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
1188          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1189          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1190          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1191          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1192          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1193          stringobject.h sysmodule.h traceback.h tupleobject.h
1195 getmtime.obj: pyconfig.h
1197 getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1198          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1199          import.h intobject.h intrcheck.h listobject.h longobject.h \
1200          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1201          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1202          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1203          traceback.h tupleobject.h
1205 getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1206          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1207          import.h intobject.h intrcheck.h listobject.h longobject.h \
1208          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1209          object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
1210          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1211          stringobject.h sysmodule.h traceback.h tupleobject.h
1213 graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \
1214          pgenheaders.h pydebug.h
1216 hypot.obj: pyconfig.h mymath.h myproto.h
1218 import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1219          complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
1220          fileobject.h floatobject.h funcobject.h import.h importdl.h \
1221          intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1222          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1223          node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1224          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1225          stringobject.h sysmodule.h token.h traceback.h tupleobject.h
1227 importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1228          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1229          import.h importdl.h intobject.h intrcheck.h listobject.h \
1230          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1231          myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
1232          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1233          stringobject.h sysmodule.h traceback.h tupleobject.h
1235 marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1236          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1237          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1238          longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
1239          moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
1240          pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
1241          sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
1243 modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1244          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1245          import.h intobject.h intrcheck.h listobject.h longobject.h \
1246          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1247          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1248          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1249          traceback.h tupleobject.h
1251 mystrtoul.obj: pyconfig.h
1253 pyfpe.obj: pyconfig.h pyfpe.h
1255 pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1256          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1257          import.h intobject.h intrcheck.h listobject.h longobject.h \
1258          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1259          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1260          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1261          traceback.h tupleobject.h
1263 pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
1264          compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \
1265          fileobject.h floatobject.h funcobject.h grammar.h import.h \
1266          intobject.h intrcheck.h listobject.h longobject.h marshal.h \
1267          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1268          node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
1269          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1270          stringobject.h sysmodule.h traceback.h tupleobject.h
1272 sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1273          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1274          import.h intobject.h intrcheck.h listobject.h longobject.h \
1275          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1276          object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
1277          pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
1278          traceback.h tupleobject.h
1280 strdup.obj: pyconfig.h mymalloc.h myproto.h
1282 strtod.obj: pyconfig.h
1284 structmember.obj: abstract.h ceval.h classobject.h cobject.h \
1285          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1286          funcobject.h import.h intobject.h intrcheck.h listobject.h \
1287          longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
1288          myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
1289          pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
1290          stringobject.h structmember.h sysmodule.h traceback.h \
1291          tupleobject.h
1293 sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
1294          pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \
1295          import.h intobject.h intrcheck.h listobject.h longobject.h \
1296          methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
1297          object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
1298          python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
1299          sysmodule.h traceback.h tupleobject.h
1301 thread.obj: pyconfig.h thread.h
1303 traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
1304          complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \
1305          frameobject.h funcobject.h import.h intobject.h intrcheck.h \
1306          listobject.h longobject.h methodobject.h modsupport.h \
1307          moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
1308          pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
1309          rangeobject.h sliceobject.h stringobject.h structmember.h \
1310          sysmodule.h traceback.h tupleobject.h