--- /dev/null
+######################################################################
+#
+# Top-Level Makefile for Building Python for OS/2
+#
+# This makefile was developed for use with IBM's VisualAge C/C++
+# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
+# version 4.0 of the NMAKE tool that comes with that package.
+#
+# The output of the build is a largish Python15.DLL containing the
+# essential modules of Python and a small Python.exe program to start
+# the interpreter. When embedding Python within another program, only
+# Python15.DLL is needed.
+#
+# These two binaries can be statically linked with the VisualAge C/C++
+# runtime library (producing larger binaries), or dynamically linked
+# to make smaller ones that require the compiler to be installed on
+# any system Python is used on. Review the /Gd+ compiler option for
+# how to do this.
+#
+# NOTE: IBM's NMAKE 4.0 is rather dumb, requiring this makefile to
+# be much more complicated than necessary. I use OpusMAKE
+# myself for a much more powerful MAKE tool but not everyone
+# wishes to buy it. However, as a result I didn't hook in
+# the dependencies on the include files as NMAKE has no easy
+# way to do this without explicitly spelling it all out.
+#
+# History (Most Recent First)
+#
+# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
+# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
+# 03-Aug-96 jrr Original for Use with Python 1.4 Release
+#
+######################################################################
+
+###################
+# Places and Things
+###################
+PY_MODULES = ..\..\Modules
+PY_OBJECTS = ..\..\Objects
+PY_PARSER = ..\..\Parser
+PY_PYTHON = ..\..\Python
+PY_INCLUDE = ..\..\Include
+PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
+
+# File to Collect Wordy Compiler Output re Errors
+ERRS = make.out
+
+# Where to Find the IBM TCP/IP Socket Includes and Libraries
+OS2TCPIP = C:\MPTN
+
+# Where to Put the .OBJ Files, To Keep Them Out of the Way
+PATHOBJ = obj
+
+# Search Path for Include Files
+PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
+
+# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
+MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
+
+#.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
+#.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
+OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
+
+#################
+# Inference Rules
+#################
+{$(PY_MODULES)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
+ @ Echo Compiling $<
+ @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
+
+{$(PY_OBJECTS)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
+ @ Echo Compiling $<
+ @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
+
+{$(PY_PARSER)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
+ @ Echo Compiling $<
+ @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
+
+{$(PY_PYTHON)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
+ @ Echo Compiling $<
+ @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
+
+.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
+ @ Echo Compiling $<
+ @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
+
+###################
+# Python Subsystems
+###################
+
+# PYTHON is the central core, containing the builtins and interpreter.
+PYTHON = \
+ $(PATHOBJ)\BltinModule.obj \
+ $(PATHOBJ)\CEval.obj \
+ $(PATHOBJ)\Compile.obj \
+ $(PATHOBJ)\Errors.obj \
+ $(PATHOBJ)\Frozen.obj \
+ $(PATHOBJ)\Getargs.obj \
+ $(PATHOBJ)\GetCompiler.obj \
+ $(PATHOBJ)\GetCopyright.obj \
+ $(PATHOBJ)\GetMTime.obj \
+ $(PATHOBJ)\GetOpt.obj \
+ $(PATHOBJ)\GetPlatform.obj \
+ $(PATHOBJ)\GetVersion.obj \
+ $(PATHOBJ)\GramInit.obj \
+ $(PATHOBJ)\Import.obj \
+ $(PATHOBJ)\ImportDL.obj \
+ $(PATHOBJ)\Marshal.obj \
+ $(PATHOBJ)\ModSupport.obj \
+ $(PATHOBJ)\MyStrtoul.obj \
+ $(PATHOBJ)\PyState.obj \
+ $(PATHOBJ)\PythonRun.obj \
+ $(PATHOBJ)\StructMember.obj \
+ $(PATHOBJ)\SysModule.obj \
+ $(PATHOBJ)\Thread.obj \
+ $(PATHOBJ)\TraceBack.obj \
+ $(PATHOBJ)\FrozenMain.obj
+
+# Python's Internal Parser
+PARSER = \
+ $(PATHOBJ)\Acceler.obj \
+ $(PATHOBJ)\Grammar1.obj \
+ $(PATHOBJ)\MyReadline.obj \
+ $(PATHOBJ)\Node.obj \
+ $(PATHOBJ)\Parser.obj \
+ $(PATHOBJ)\ParseTok.obj \
+ $(PATHOBJ)\Tokenizer.obj
+
+# Python Object Types
+OBJECTS = \
+ $(PATHOBJ)\Abstract.obj \
+ $(PATHOBJ)\ClassObject.obj \
+ $(PATHOBJ)\CObject.obj \
+ $(PATHOBJ)\ComplexObject.obj \
+ $(PATHOBJ)\DictObject.obj \
+ $(PATHOBJ)\FileObject.obj \
+ $(PATHOBJ)\FloatObject.obj \
+ $(PATHOBJ)\FrameObject.obj \
+ $(PATHOBJ)\FuncObject.obj \
+ $(PATHOBJ)\IntObject.obj \
+ $(PATHOBJ)\ListObject.obj \
+ $(PATHOBJ)\LongObject.obj \
+ $(PATHOBJ)\MethodObject.obj \
+ $(PATHOBJ)\ModuleObject.obj \
+ $(PATHOBJ)\Object.obj \
+ $(PATHOBJ)\RangeObject.obj \
+ $(PATHOBJ)\SliceObject.obj \
+ $(PATHOBJ)\StringObject.obj \
+ $(PATHOBJ)\TupleObject.obj \
+ $(PATHOBJ)\TypeObject.obj
+
+# Extension Modules (Built-In or as Separate DLLs)
+MODULES = \
+ $(PATHOBJ)\ArrayModule.obj \
+ $(PATHOBJ)\BinAscii.obj \
+ $(PATHOBJ)\CMathModule.obj \
+ $(PATHOBJ)\cPickle.obj \
+ $(PATHOBJ)\cStringIO.obj \
+ $(PATHOBJ)\ErrnoModule.obj \
+ $(PATHOBJ)\GetBuildInfo.obj \
+ $(PATHOBJ)\GetPathP.obj \
+ $(PATHOBJ)\Main.obj \
+ $(PATHOBJ)\MathModule.obj \
+ $(PATHOBJ)\MD5c.obj \
+ $(PATHOBJ)\MD5Module.obj \
+ $(PATHOBJ)\NewModule.obj \
+ $(PATHOBJ)\Operator.obj \
+ $(PATHOBJ)\PosixModule.obj \
+ $(PATHOBJ)\RegexModule.obj \
+ $(PATHOBJ)\RegExpr.obj \
+ $(PATHOBJ)\ReopModule.obj \
+ $(PATHOBJ)\SelectModule.obj \
+ $(PATHOBJ)\SignalModule.obj \
+ $(PATHOBJ)\SocketModule.obj \
+ $(PATHOBJ)\SoundEx.obj \
+ $(PATHOBJ)\StropModule.obj \
+ $(PATHOBJ)\StructModule.obj \
+ $(PATHOBJ)\TimeModule.obj \
+ $(PATHOBJ)\ThreadModule.obj \
+ $(PATHOBJ)\YUVConvert.obj
+
+# Standalone Parser Generator Program (Shares Some of Python's Modules)
+PGEN = \
+ $(PATHOBJ)\PGenMain.obj \
+ $(PATHOBJ)\PGen.obj \
+ $(PATHOBJ)\PrintGrammar.obj \
+ $(PATHOBJ)\ListNode.obj \
+ $(PATHOBJ)\Grammar.obj \
+ $(PATHOBJ)\BitSet.obj \
+ $(PATHOBJ)\FirstSets.obj \
+ $(PATHOBJ)\MetaGrammar.obj
+
+##################
+# Macros and Flags
+##################
+_BASE = /Q /W2 /I$(PROJINCLUDE)
+ # /Q = Omit IBM Copyright
+ # /W2 = Show Warnings/Errors Only
+
+_GEN = /G4 /Gm /Gd
+ # /G4 = Generate Code for 486 (Use 386 for Debugger)
+ # /Gm = Use Multithread Runtime
+ # /Gd = Dynamically Load Runtime
+
+_OPT = /O /Gl
+ # /O = Enable Speed-Optimizations
+ # /Ol = Pass Code Thru Intermediate Linker
+ # /Gu = Advise Linker All Ext Data is ID'd
+ # /Gl = Have Linker Remove Unused Fns
+
+_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
+ # /Ti = Embed Debugger/Analyzer Recs
+ # /Tm = Enable Debug Memory Fns
+ # /Tx = Request Full Dump Upon Exception
+ # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
+ # /DUSE_SOCKET = Enables Building In of Socket API
+
+_OUT =
+ # /Fb = Embed Browser Recs
+ # /Gh = Generate Code for Profiler Hooks
+ # /Fl = Output C/C++ Listing Files
+ # /Lf = Provide Full (Detailed) Listing Files
+ # /Fm. = Output Linker Map File
+ # /Ft. = Output C++ Template Resolution Files
+
+_MAP = /FmNoise\$(@R).map
+
+_DLL = /Ge-
+_EXE = /Ge
+ # /Ge = Create an EXE, not DLL
+
+CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
+
+###################
+# Primary Target(s)
+###################
+All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
+
+Modules: $(MODULES)
+Objects: $(OBJECTS)
+Parser: $(PARSER)
+Python: $(PYTHON)
+
+# Directory to Keep .OBJ Files Out of the Way
+obj:
+ @-mkdir obj >>NUL
+
+# Directory to Keep .MAP and Such Text Files Out of the Way
+noise:
+ @-mkdir noise >>NUL
+
+##############
+#
+##############
+
+# Object Library of All Essential Python Routines
+PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
+ @ Echo Adding Updated Object Files to Link Library $@
+ @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
+
+Python15.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
+ @ Echo Linking $@ As DLL
+ @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
+
+# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
+$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
+ @ Echo Compiling $**
+ @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
+
+# Import Library for Using the Python15.dll
+Python15.lib: Python.def
+ @ Echo Making $@
+ @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
+ @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
+
+# Small Program to Start Interpreter in Python15.dll
+Python.exe: $(PATHOBJ)\Python.obj Python15.lib
+ @ Echo Linking $@ As EXE
+ @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
+
+PGen.exe: $(PGEN) PyCore.lib
+ @ Echo Linking $@ As EXE
+ @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
+
+#######################
+# Miscellaneous Targets
+#######################
+
+# Remove Intermediate Targets but Leave Executable Binaries
+clean:
+ -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
+ -- Del /Q /Y Noise >NUL 2>&1
+ -- Del /Q $(ERRS) >NUL 2>&1
+
+# Remove All Targets, Including Final Binaries
+distclean: clean
+ -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
+ -- Del /Q Python15.dll Python.exe PGen.exe >NUL 2>&1
+
+release: Python.exe Python15.dll Python15.lib
+ -- @Echo Y | copy /U Python.exe D:\EXEs
+ -- @Echo Y | copy /U Python15.dll D:\DLLs
+ -- @Echo Y | copy /U Python15.lib E:\Tau\Lib
+
+test:
+ python ..\..\lib\test\regrtest.py
+
+# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
+depend:
+ D:\OpusMake\os2mkmf -c -s
+
+### OPUS MKMF: Do not remove this line! Generated dependencies follow.
+
+_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_MODULES)\cgensupport.h $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
+ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
+ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+getbuildinfo.obj: config.h
+
+getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_MODULES)\cgensupport.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+md5c.obj: config.h $(PY_MODULES)\md5.h
+
+md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_MODULES)\md5.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+newmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
+ $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_MODULES)\pcre-internal.h \
+ $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_MODULES)\pcre-internal.h $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+regexmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_MODULES)\regexpr.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+regexpr.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_MODULES)\regexpr.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+reopmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_MODULES)\regexpr.h $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+rotormodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
+ $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
+ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
+ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h \
+ $(PY_MODULES)\yuv.h
+
+syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_MODULES)\timing.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+yuvconvert.obj: $(PY_MODULES)\yuv.h
+
+zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_PARSER)\assert.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+acceler.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
+ $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\token.h
+
+bitset.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
+
+firstsets.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
+
+grammar.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h \
+ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
+
+grammar1.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h \
+ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
+
+intrcheck.obj: config.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h
+
+listnode.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\token.h
+
+metagrammar.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
+
+myreadline.obj: config.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h
+
+node.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
+ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
+
+parser.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\errcode.h \
+ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
+
+parsetok.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\errcode.h \
+ $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
+ $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
+ $(PY_PARSER)\tokenizer.h
+
+pgen.obj: $(PY_PARSER)\assert.h $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
+
+pgenmain.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
+ $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h
+
+printgrammar.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h
+
+tokenizer.obj: config.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
+
+atof.obj: config.h
+
+bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
+ $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
+ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
+ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+fmod.obj: config.h $(PY_INCLUDE)\mymath.h
+
+frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+getmtime.obj: config.h
+
+getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+graminit.obj: $(PY_INCLUDE)\bitset.h config.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
+ $(PY_INCLUDE)\pydebug.h
+
+hypot.obj: config.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
+
+import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
+ $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
+ $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
+ $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+mystrtoul.obj: config.h
+
+pyfpe.obj: config.h $(PY_INCLUDE)\pyfpe.h
+
+pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
+ $(PY_INCLUDE)\complexobject.h config.h $(PY_INCLUDE)\dictobject.h \
+ $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
+ $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
+ $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
+ $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
+ $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
+ $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
+ $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
+ $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+strdup.obj: config.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
+
+strtod.obj: config.h
+
+structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
+ $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
+ $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
+ $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
+ $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
+ $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
+sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h config.h \
+ $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
+ $(PY_INCLUDE)\tupleobject.h
+
+thread.obj: config.h $(PY_INCLUDE)\thread.h
+
+traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
+ $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
+ config.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
+ $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
+ $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
+ $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
+ $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
+ $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
+ $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
+ $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
+ $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
+ $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
+ $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
+ $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
+
--- /dev/null
+######################################################################
+#
+# Top-Level Makefile for Building Python for OS/2
+#
+# This makefile was developed for use with IBM's VisualAge C/C++
+# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
+# the commercial OpusMAKE tool.
+#
+# The output of the build is a largish Python15.DLL containing the
+# essential modules of Python and a small Python.exe program to start
+# the interpreter. When embedding Python within another program, only
+# Python15.DLL is needed.
+#
+# These two binaries can be statically linked with the VisualAge C/C++
+# runtime library (producing larger binaries), or dynamically linked
+# to make smaller ones that require the compiler to be installed on
+# any system Python is used on.
+#
+# History (Most Recent First)
+#
+# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
+# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
+# 03-Aug-96 jrr Original for Use with Python 1.4 Release
+#
+######################################################################
+
+###################
+# Places and Things
+###################
+PY_MODULES = ..\..\Modules
+PY_OBJECTS = ..\..\Objects
+PY_PARSER = ..\..\Parser
+PY_PYTHON = ..\..\Python
+PY_INCLUDE = ..\..\Include
+PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
+
+# Where to Find the IBM TCP/IP Socket Includes and Libraries
+OS2TCPIP = C:\MPTN
+
+# Where to Put the .OBJ Files, To Keep Them Out of the Way
+.PATH.obj = obj
+
+# Search Path for Include Files
+PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES)
+
+# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
+MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
+
+.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
+.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
+OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib
+
+#################
+# Inference Rules
+#################
+
+
+###################
+# Python Subsystems
+###################
+
+# PYTHON is the central core, containing the builtins and interpreter.
+PYTHON = \
+ BltinModule.obj \
+ CEval.obj \
+ Compile.obj \
+ Errors.obj \
+ Frozen.obj \
+ Getargs.obj \
+ GetCompiler.obj \
+ GetCopyright.obj \
+ GetMTime.obj \
+ GetOpt.obj \
+ GetPlatform.obj \
+ GetVersion.obj \
+ GramInit.obj \
+ Import.obj \
+ ImportDL.obj \
+ Marshal.obj \
+ ModSupport.obj \
+ MyStrtoul.obj \
+ PyState.obj \
+ PythonRun.obj \
+ StructMember.obj \
+ SysModule.obj \
+ Thread.obj \
+ TraceBack.obj \
+ FrozenMain.obj
+
+# Omitted Python Elements (and Reason):
+ # atof.c -- Implementation for Platforms w/o This Function
+ # dup2.c -- Implementation for Platforms w/o This Function
+ # fmod.c -- Implementation for Platforms w/o This Function
+ # getcwd.c -- Implementation for Platforms w/o This Function
+ # hypot.c -- Implementation for Platforms w/o This Function
+ # memmove.c -- Implementation for Platforms w/o This Function
+ # strdup.c -- Implementation for Platforms w/o This Function
+ # strerror.c -- Implementation for Platforms w/o This Function
+ # strtod.c -- Implementation for Platforms w/o This Function
+
+ # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead)
+ # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone)
+ # frozenmain.c
+
+# Python's Internal Parser
+PARSER = \
+ Acceler.obj \
+ Grammar1.obj \
+ MyReadline.obj \
+ Node.obj \
+ Parser.obj \
+ ParseTok.obj \
+ Tokenizer.obj
+
+# Python Object Types
+OBJECTS = \
+ Abstract.obj \
+ ClassObject.obj \
+ CObject.obj \
+ ComplexObject.obj \
+ DictObject.obj \
+ FileObject.obj \
+ FloatObject.obj \
+ FrameObject.obj \
+ FuncObject.obj \
+ IntObject.obj \
+ ListObject.obj \
+ LongObject.obj \
+ MethodObject.obj \
+ ModuleObject.obj \
+ Object.obj \
+ RangeObject.obj \
+ SliceObject.obj \
+ StringObject.obj \
+ TupleObject.obj \
+ TypeObject.obj
+
+# Omitted Objects (and Reason):
+ # xxobject.c -- Template to Create Your Own Object Types
+
+# Extension Modules (Built-In or as Separate DLLs)
+MODULES = \
+ ArrayModule.obj \
+ BinAscii.obj \
+ CMathModule.obj \
+ cPickle.obj \
+ cStringIO.obj \
+ ErrnoModule.obj \
+ GetBuildInfo.obj \
+ GetPathP.obj \
+ Main.obj \
+ MathModule.obj \
+ MD5c.obj \
+ MD5Module.obj \
+ NewModule.obj \
+ Operator.obj \
+ PosixModule.obj \
+ RegexModule.obj \
+ RegExpr.obj \
+ ReopModule.obj \
+ SelectModule.obj \
+ SignalModule.obj \
+ SocketModule.obj \
+ SoundEx.obj \
+ StropModule.obj \
+ StructModule.obj \
+ TimeModule.obj \
+ ThreadModule.obj \
+ YUVConvert.obj
+
+# Omitted Modules (and Description/Reason):
+ #
+ # Multimedia:
+ # almodule.c -- Non-OS/2 Audio Channel Facility (?)
+ # cdmodule.c -- Wrapper of Non-OS/2 CD Audio Functions
+ # audioop.c -- Various Compute Operations on Audio Samples
+ # imageop.c -- Various Compute Operations on Video Samples
+ # imgfile.c -- Wrapper of SGI ImageLib API
+ # rgbimgmodule.c -- Non-OS/2 Image Read/Write Capability (Primitive)
+ # sunaudiodev.c -- Wrapper of Sun Audio Device API
+ # clmodule.c -- Wrapper of SGI Image/Audio Compression API
+
+ # Database:
+ # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor)
+ # bsddbmodule.c -- Wrapper of DBM Database API (BSD Flavor)
+ # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor)
+
+ # Cryptography:
+ # cryptmodule.c -- Simple Wrapper for crypt() Function
+ # rotormodule.c -- Implementation of Enigma Crypto Based on Rotors
+
+# cgensupport.obj \
+# fcntlmodule.obj \
+# fmmodule.obj \
+# fpectlmodule.obj \
+# fpetestmodule.obj \
+# Unix-Specific getpath.obj \
+# glmodule.obj \
+# grpmodule.obj \
+# mpzmodule.obj \
+# nismodule.obj \
+# parsermodule.obj \
+# pcremodule.obj \
+# pwdmodule.obj \
+# pypcre.obj \
+# readline.obj \
+# resource.obj \
+# sgimodule.obj \
+# svmodule.obj \
+# syslogmodule.obj \
+# termios.obj \
+# timingmodule.obj \
+
+ # User Interface:
+# _tkinter.obj \
+# stdwinmodule.obj \
+# cursesmodule.obj \
+# tclNotify.obj \
+# tkappinit.obj \
+ # flmodule.c -- Wrapper of FORMS Library (Screen Forms)
+
+ # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format)
+ # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2)
+ # dlmodule.c -- Some Wierd Form of Data Processing Module
+ # xxmodule.c -- Template to Create Your Own Module
+
+#
+# Standalone Parser Generator Program (Shares Some of Python's Modules)
+PGEN = \
+ PGenMain.obj \
+ PGen.obj \
+ PrintGrammar.obj \
+ ListNode.obj \
+ Grammar.obj \
+ BitSet.obj \
+ FirstSets.obj \
+ MetaGrammar.obj
+
+# Omitted Parser Elements (and Reason):
+ # intrcheck.c -- Not Referenced by Anyone (?)
+
+##################
+# Macros and Flags
+##################
+_BASE = /Q /W2 /I$(PROJINCLUDE)
+ # /Q = Omit IBM Copyright
+ # /W2 = Show Warnings/Errors Only
+ # /Fi = Create Precompiled Headers
+ # /Si = Utilize Precompiled Headers
+
+_GEN = /G4 /Gm /Gd /B"/STACK:360000"
+ # /G4 = Generate Code for 486 (Use 386 for Debugger)
+ # /Gm = Use Multithread Runtime
+ # /Gd = Dynamically Load Runtime
+ # /Gs = Remove Code for Stack Probes
+ # /Gx = Remove C++ Exception-Handling Info
+ # /Tdp = Generate Code for C++ Templates
+ # /Rn = Generate Code without a Runtime
+ # /B"/STACK:n" = Set Stack Size
+
+_OPT = /O /Gl
+ # /O = Enable Speed-Optimizations
+ # /Ol = Pass Code Thru Intermediate Linker
+ # /Gu = Advise Linker All Ext Data is ID'd
+ # /Gl = Have Linker Remove Unused Fns
+
+_DBG = /DHAVE_CONFIG_H /DUSE_SOCKET
+ # /Ti = Embed Debugger/Analyzer Recs
+ # /Tm = Enable Debug Memory Fns
+ # /Tx = Request Full Dump Upon Exception
+ # /DDEBUG = Enable App-Internal Debugging Code
+ # /DUSE_SOCKET =
+ # /DUSE_DL_EXPORT =
+
+_OUT =
+ # /Fb = Embed Browser Recs
+ # /Gh = Generate Code for Profiler Hooks
+ # /Fl = Output C/C++ Listing Files
+ # /Lf = Provide Full (Detailed) Listing Files
+ # /Fm. = Output Linker Map File
+ # /Ft. = Output C++ Template Resolution Files
+
+_MAP = /FmNoise\$(.TARGET,B,>.map)
+
+_DLL = /Ge-
+_EXE = /Ge
+ # /Ge = Create an EXE, not DLL
+
+CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
+CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE)
+
+###################
+# Primary Target(s)
+###################
+All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe
+
+##############
+#
+##############
+
+# Object Library of All Essential Python Routines
+PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj
+ %do "%.lib"
+
+Python15.dll: Compile.obj PyCore.lib Python.def
+ %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP)
+
+Compile.obj: Compile.c
+ %do ".c.obj" CFLAGS+=$(_DLL)
+
+# Import Library for Using the Python15.dll
+Python15.lib: Python.def
+ %do ".def.lib"
+
+# Small Program to Start Interpreter in Python15.dll
+Python.exe: Python.obj Python15.lib
+ %do "%.exe" CPPFLAGS+=$(_MAP)
+
+#Python.obj: Python.c
+# %do ".c.obj" CFLAGS+=$(_EXE)
+
+PGen.exe: $(PGEN) PyCore.lib
+ %do "%.exe" CPPFLAGS+=$(_MAP)
+
+#######################
+# Miscellaneous Targets
+#######################
+
+# Remove Intermediate Targets but Leave Executable Binaries
+clean:
+ -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1
+ -- Del /Q /Y Noise >NUL 2>&1
+ -- Del /Q $(ERRS) >NUL 2>&1
+
+# Remove All Targets, Including Final Binaries
+distclean: clean
+ -- Del /Q PyCore.lib Python15.lib >NUL 2>&1
+ -- Del /Q Python15.dll Python.exe >NUL 2>&1
+
+release: Python.exe Python15.dll Python15.lib
+ -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs
+ -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs
+ -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib
+
+test:
+ python ..\..\lib\test\regrtest.py
+
+# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
+depend:
+ D:\OpusMake\os2mkmf -c -s
+
+### OPUS MKMF: Do not remove this line! Generated dependencies follow.
+
+_tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h cstringio.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h cstringio.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
+ classobject.h cobject.h complexobject.h config.h dictobject.h \
+ fileobject.h floatobject.h funcobject.h import.h intobject.h \
+ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ structmember.h sysmodule.h traceback.h tupleobject.h
+
+fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+getbuildinfo.obj: config.h
+
+getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+md5c.obj: config.h md5.h
+
+md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+mpzmodule.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longintrepr.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+newmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
+ cobject.h complexobject.h config.h dictobject.h fileobject.h \
+ floatobject.h funcobject.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h graminit.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
+ pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
+ rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \
+ traceback.h tupleobject.h
+
+pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \
+ pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ graminit.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+regexpr.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h regexpr.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
+ cobject.h complexobject.h config.h dictobject.h fileobject.h \
+ floatobject.h funcobject.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \
+ c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \
+ pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+structmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \
+ classobject.h cobject.h complexobject.h config.h dictobject.h \
+ fileobject.h floatobject.h funcobject.h import.h intobject.h \
+ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h structmember.h sysmodule.h \
+ traceback.h tupleobject.h
+
+svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \
+ cobject.h compile.h complexobject.h config.h dictobject.h \
+ fileobject.h floatobject.h funcobject.h import.h intobject.h \
+ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h \
+ yuv.h
+
+syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h
+
+termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h thread.h traceback.h tupleobject.h
+
+timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h timing.h traceback.h tupleobject.h
+
+xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+yuvconvert.obj: yuv.h
+
+zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ structmember.h sysmodule.h traceback.h tupleobject.h
+
+cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+complexobject.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ structmember.h sysmodule.h traceback.h tupleobject.h
+
+floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ frameobject.h funcobject.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
+ pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
+ rangeobject.h sliceobject.h stringobject.h structmember.h \
+ sysmodule.h traceback.h tupleobject.h
+
+funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h structmember.h sysmodule.h traceback.h \
+ tupleobject.h
+
+intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+longobject.obj: abstract.h assert.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longintrepr.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \
+ pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
+ rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
+ tupleobject.h
+
+methodobject.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h token.h traceback.h tupleobject.h
+
+moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+stringobject.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+acceler.obj: bitset.h config.h grammar.h mymalloc.h myproto.h node.h \
+ parser.h pgenheaders.h pydebug.h token.h
+
+bitset.obj: bitset.h config.h mymalloc.h myproto.h pgenheaders.h pydebug.h
+
+firstsets.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \
+ pgenheaders.h pydebug.h token.h
+
+grammar.obj: assert.h bitset.h config.h grammar.h mymalloc.h myproto.h \
+ pgenheaders.h pydebug.h token.h
+
+grammar1.obj: assert.h bitset.h config.h grammar.h mymalloc.h myproto.h \
+ pgenheaders.h pydebug.h token.h
+
+intrcheck.obj: config.h intrcheck.h mymalloc.h myproto.h
+
+listnode.obj: config.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \
+ token.h
+
+metagrammar.obj: bitset.h config.h grammar.h metagrammar.h mymalloc.h \
+ myproto.h pgen.h pgenheaders.h pydebug.h
+
+myreadline.obj: config.h intrcheck.h mymalloc.h myproto.h
+
+node.obj: config.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h
+
+parser.obj: assert.h bitset.h config.h errcode.h grammar.h mymalloc.h \
+ myproto.h node.h parser.h pgenheaders.h pydebug.h token.h
+
+parsetok.obj: bitset.h config.h errcode.h grammar.h mymalloc.h myproto.h \
+ node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \
+ tokenizer.h
+
+pgen.obj: assert.h bitset.h config.h grammar.h metagrammar.h mymalloc.h \
+ myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h
+
+pgenmain.obj: bitset.h config.h grammar.h mymalloc.h myproto.h node.h \
+ parsetok.h pgen.h pgenheaders.h pydebug.h
+
+printgrammar.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \
+ pgenheaders.h pydebug.h
+
+tokenizer.obj: config.h errcode.h mymalloc.h myproto.h pgenheaders.h \
+ pydebug.h token.h tokenizer.h
+
+atof.obj: config.h
+
+bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h eval.h fileobject.h \
+ floatobject.h funcobject.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \
+ objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h eval.h fileobject.h \
+ floatobject.h frameobject.h funcobject.h import.h intobject.h \
+ intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \
+ pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
+ rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \
+ tupleobject.h
+
+compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h graminit.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \
+ opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ structmember.h sysmodule.h token.h traceback.h tupleobject.h
+
+errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+fmod.obj: config.h mymath.h
+
+frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+getmtime.obj: config.h
+
+getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+graminit.obj: bitset.h config.h grammar.h mymalloc.h myproto.h \
+ pgenheaders.h pydebug.h
+
+hypot.obj: config.h mymath.h myproto.h
+
+import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h errcode.h eval.h \
+ fileobject.h floatobject.h funcobject.h import.h importdl.h \
+ intobject.h intrcheck.h listobject.h longobject.h marshal.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h token.h traceback.h tupleobject.h
+
+importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h importdl.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \
+ pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \
+ sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h
+
+modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+mystrtoul.obj: config.h
+
+pyfpe.obj: config.h pyfpe.h
+
+pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \
+ compile.h complexobject.h config.h dictobject.h errcode.h eval.h \
+ fileobject.h floatobject.h funcobject.h grammar.h import.h \
+ intobject.h intrcheck.h listobject.h longobject.h marshal.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h sysmodule.h traceback.h tupleobject.h
+
+sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \
+ pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \
+ traceback.h tupleobject.h
+
+strdup.obj: config.h mymalloc.h myproto.h
+
+strtod.obj: config.h
+
+structmember.obj: abstract.h ceval.h classobject.h cobject.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ funcobject.h import.h intobject.h intrcheck.h listobject.h \
+ longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \
+ myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \
+ pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \
+ stringobject.h structmember.h sysmodule.h traceback.h \
+ tupleobject.h
+
+sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
+ config.h dictobject.h fileobject.h floatobject.h funcobject.h \
+ import.h intobject.h intrcheck.h listobject.h longobject.h \
+ methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \
+ object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \
+ python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \
+ sysmodule.h traceback.h tupleobject.h
+
+thread.obj: config.h thread.h
+
+traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \
+ complexobject.h config.h dictobject.h fileobject.h floatobject.h \
+ frameobject.h funcobject.h import.h intobject.h intrcheck.h \
+ listobject.h longobject.h methodobject.h modsupport.h \
+ moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \
+ pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \
+ rangeobject.h sliceobject.h stringobject.h structmember.h \
+ sysmodule.h traceback.h tupleobject.h