| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | ######################################################################
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | #          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.
 | 
					
						
							|  |  |  | #
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | # The output of the build is a largish Python23.DLL containing the
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | # essential modules of Python and a small Python.exe program to start
 | 
					
						
							|  |  |  | # the interpreter.  When embedding Python within another program, only
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | # Python23.DLL is needed.
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | #
 | 
					
						
							|  |  |  | # 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)
 | 
					
						
							|  |  |  | #
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | # 26-Sep-98 jrr Retested and adjusted for building w/Python 1.5.2a1
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | # 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | # Where to Find the Tcl/Tk Base Directory for Libs/Includes
 | 
					
						
							|  |  |  | TCLTK		= D:\TclTk | 
					
						
							|  |  |  | TCLBASE		= D:\Tcl7.6\OS2 | 
					
						
							|  |  |  | TKBASE		= D:\Tk4.2\OS2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | # Where to Put the .OBJ Files, To Keep Them Out of the Way
 | 
					
						
							|  |  |  | PATHOBJ		= obj | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Search Path for Include Files
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | PROJINCLUDE	= .;$(TCLBASE);$(TKBASE);$(OS2TCPIP)\Include;$(PY_INCLUDES) | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 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)
 | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  | OTHERLIBS	= so32dll.lib tcp32dll.lib # Tcl76.lib Tk42.lib | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #################
 | 
					
						
							|  |  |  | # 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      \
 | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  |                   $(PATHOBJ)\FrozenMain.obj     \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\exceptions.obj     \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\symtable.obj       \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\codecs.obj         \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\future.obj         \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\dynload_os2.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\mysnprintf.obj     \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\iterobject.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Python's Internal Parser
 | 
					
						
							|  |  |  | PARSER		=                              \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Acceler.obj       \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Grammar1.obj      \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\ListNode.obj      \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\Node.obj          \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Parser.obj        \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\ParseTok.obj      \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\BitSet.obj        \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MetaGrammar.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Tokenizer.obj     \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MyReadline.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Python Object Types
 | 
					
						
							|  |  |  | OBJECTS		=                              \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Abstract.obj      \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\BoolObject.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\BufferObject.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\CellObject.obj    \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\ClassObject.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\CObject.obj       \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\ComplexObject.obj \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\DescrObject.obj   \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\DictObject.obj    \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\EnumObject.obj    \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\FileObject.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\FloatObject.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\FrameObject.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\FuncObject.obj    \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\IterObject.obj    \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\ListObject.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\LongObject.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MethodObject.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\ModuleObject.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Object.obj        \
 | 
					
						
							| 
									
										
										
										
											2004-03-29 11:53:38 +00:00
										 |  |  |                   $(PATHOBJ)\ObMalloc.obj      \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\RangeObject.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\SliceObject.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\StringObject.obj  \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\StructSeq.obj     \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\TupleObject.obj   \
 | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  |                   $(PATHOBJ)\TypeObject.obj    \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\UnicodeObject.obj \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\UnicodeCType.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\WeakrefObject.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Extension Modules (Built-In or as Separate DLLs)
 | 
					
						
							|  |  |  | MODULES		=                              \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\ArrayModule.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\BinAscii.obj      \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\CMathModule.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\ErrnoModule.obj   \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\GCModule.obj      \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\GetBuildInfo.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\GetPathP.obj      \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Main.obj          \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MathModule.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MD5c.obj          \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MD5Module.obj     \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Operator.obj      \
 | 
					
						
							| 
									
										
										
										
											1997-12-05 22:07:14 +00:00
										 |  |  |                   $(PATHOBJ)\PCREModule.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\PyPCRE.obj        \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\PosixModule.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\RegexModule.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\RegExpr.obj       \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\SelectModule.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\SignalModule.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\SocketModule.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\StropModule.obj   \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\StructModule.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\TimeModule.obj    \
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (jeu., 20 nov. 2008) | 1 line
  move useful sys.settrace information to the function's documentation from the debugger
........
  r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (jeu., 20 nov. 2008) | 1 line
  fix indentation and a sphinx warning
........
  r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (jeu., 20 nov. 2008) | 1 line
  oops! didn't mean to disable that test
........
  r67318 | amaury.forgeotdarc | 2008-11-21 23:05:48 +0100 (ven., 21 nov. 2008) | 4 lines
  #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present.
  Will backport to 2.6
........
  r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (sam., 22 nov. 2008) | 2 lines
  #4364: fix attribute name on ctypes object.
........
  r67342 | amaury.forgeotdarc | 2008-11-22 20:39:38 +0100 (sam., 22 nov. 2008) | 3 lines
  yuvconvert.c is a part of the "sv" module, an old IRIX thing
  and certainly not useful for any Windows build.
........
  r67343 | amaury.forgeotdarc | 2008-11-22 21:01:18 +0100 (sam., 22 nov. 2008) | 5 lines
  #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from
  stack overflow. But doing this, it always crashes when the stack is nearly full.
  Reviewed by Martin von Loewis. Will backport to 2.6.
........
											
										 
											2008-11-22 22:18:04 +00:00
										 |  |  |                   $(PATHOBJ)\ThreadModule.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Standalone Parser Generator Program (Shares Some of Python's Modules)
 | 
					
						
							|  |  |  | PGEN            =                              \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\PGen.obj          \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\PGenMain.obj      \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\MySNPrintf.obj    \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Tokenizer_Pgen.obj \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  |                   $(PATHOBJ)\PrintGrammar.obj  \
 | 
					
						
							|  |  |  |                   $(PATHOBJ)\Grammar.obj       \
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |                   $(PATHOBJ)\FirstSets.obj | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ##################
 | 
					
						
							|  |  |  | # Macros and Flags
 | 
					
						
							|  |  |  | ##################
 | 
					
						
							|  |  |  | _BASE		= /Q /W2 /I$(PROJINCLUDE) | 
					
						
							|  |  |  | 		# /Q   = Omit IBM Copyright | 
					
						
							|  |  |  | 		# /W2  = Show Warnings/Errors Only | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-05 22:07:14 +00:00
										 |  |  | _GEN		= /G4 /Gm /Gd- | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 		# /G4  = Generate Code for 486 (Use 386 for Debugger) | 
					
						
							|  |  |  | 		# /Gm  = Use Multithread Runtime | 
					
						
							|  |  |  | 		# /Gd  = Dynamically Load Runtime | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 		# /Ms  = Use _System Calling Convention (vs _Optlink) | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | 		#        (to allow non-VAC++ code to call into Python23.dll) | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | _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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-05 22:07:14 +00:00
										 |  |  | _DBG		= /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET | 
					
						
							|  |  |  |                 # /Wpro= Generate Compiler Warnings re Missing Prototypes | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 		# /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)
 | 
					
						
							|  |  |  | ###################
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | All:  obj noise PyCore.lib Python23.lib PGen.exe \ | 
					
						
							|  |  |  |       Python.exe PythonPM.exe Python23.dll # _tkinter.dll | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ##############
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | ##############
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | # Python Extension DLL: Tcl/Tk Interface
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | #_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
 | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  | #	@ Echo Linking $@ As DLL
 | 
					
						
							|  |  |  | #	@ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  | #$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
 | 
					
						
							|  |  |  | #	@ Echo Compiling $**
 | 
					
						
							|  |  |  | #	@ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
 | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | # 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) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	@ Echo Linking $@ As DLL | 
					
						
							|  |  |  | 	@ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
					
						
							| 
									
										
										
										
											2001-11-05 02:45:59 +00:00
										 |  |  | #	@ Echo Compressing $@ with LxLite
 | 
					
						
							|  |  |  | #	@ lxlite $@
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 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) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | # Import Library for Using the Python23.dll
 | 
					
						
							|  |  |  | Python23.lib: Python.def | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	@ Echo Making $@ | 
					
						
							|  |  |  | 	@ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS) | 
					
						
							|  |  |  | 	@ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | # Small Command-Line Program to Start Interpreter in Python23.dll
 | 
					
						
							|  |  |  | Python.exe: $(PATHOBJ)\Python.obj Python23.lib | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	@ Echo Linking $@ As EXE | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 	@ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | # Small PM-GUI Program to Start Interpreter in Python23.dll
 | 
					
						
							|  |  |  | PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 	@ Echo Linking $@ As EXE | 
					
						
							|  |  |  | 	@ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  |         -- Del /Q PyCore.lib Python23.lib       >NUL 2>&1 | 
					
						
							|  |  |  |         -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | release: Python.exe Python23.dll Python23.lib | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	-- @Echo Y | copy /U Python.exe   D:\EXEs | 
					
						
							| 
									
										
										
										
											2002-08-18 06:31:01 +00:00
										 |  |  | 	-- @Echo Y | copy /U Python23.dll D:\DLLs | 
					
						
							|  |  |  | 	-- @Echo Y | copy /U Python23.lib E:\Tau\Lib | 
					
						
							| 
									
										
										
										
											1998-09-28 22:02:40 +00:00
										 |  |  | 	-- @Echo Y | copy /U _tkinter.dll D:\Python | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											2008-06-10 15:50:56 +00:00
										 |  |  | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 10:29:35 +00:00
										 |  |  | _dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 10:29:35 +00:00
										 |  |  | _gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | getbuildinfo.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-25 13:05:15 +00:00
										 |  |  | _threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\myproto.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\token.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
 | 
					
						
							|  |  |  | 	 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\myproto.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 03:18:48 +00:00
										 |  |  | pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | atof.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
 | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\pydebug.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | mystrtoul.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | strtod.obj: pyconfig.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
					
						
							|  |  |  | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 \ | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 \
 | 
					
						
							| 
									
										
										
										
											2001-07-26 13:41:06 +00:00
										 |  |  | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
 | 
					
						
							| 
									
										
										
										
											1997-11-22 21:59:45 +00:00
										 |  |  | 	 $(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 |