| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1 | ###################################################################### | 
 | 2 | # | 
 | 3 | #          Top-Level Makefile for Building Python for OS/2 | 
 | 4 | # | 
 | 5 | # This makefile was developed for use with IBM's VisualAge C/C++ | 
 | 6 | # for OS/2 compiler, version 3.0, with Fixpack 8 applied.  It uses | 
 | 7 | # version 4.0 of the NMAKE tool that comes with that package. | 
 | 8 | # | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 9 | # The output of the build is a largish Python23.DLL containing the | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 10 | # essential modules of Python and a small Python.exe program to start | 
 | 11 | # the interpreter.  When embedding Python within another program, only | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 12 | # Python23.DLL is needed. | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 13 | # | 
 | 14 | # These two binaries can be statically linked with the VisualAge C/C++ | 
 | 15 | # runtime library (producing larger binaries), or dynamically linked | 
 | 16 | # to make smaller ones that require the compiler to be installed on | 
 | 17 | # any system Python is used on.  Review the /Gd+ compiler option for | 
 | 18 | # how to do this. | 
 | 19 | # | 
 | 20 | # NOTE: IBM's NMAKE 4.0 is rather dumb, requiring this makefile to | 
 | 21 | #       be much more complicated than necessary.  I use OpusMAKE | 
 | 22 | #       myself for a much more powerful MAKE tool but not everyone | 
 | 23 | #       wishes to buy it.  However, as a result I didn't hook in | 
 | 24 | #       the dependencies on the include files as NMAKE has no easy | 
 | 25 | #       way to do this without explicitly spelling it all out. | 
 | 26 | # | 
 | 27 | # History (Most Recent First) | 
 | 28 | # | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 29 | # 26-Sep-98 jrr Retested and adjusted for building w/Python 1.5.2a1 | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 30 | # 20-Nov-97 jrr Cleaned Up for Applying to Distribution | 
 | 31 | # 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4 | 
 | 32 | # 03-Aug-96 jrr Original for Use with Python 1.4 Release | 
 | 33 | # | 
 | 34 | ###################################################################### | 
 | 35 |  | 
 | 36 | ################### | 
 | 37 | # Places and Things | 
 | 38 | ################### | 
 | 39 | PY_MODULES      = ..\..\Modules | 
 | 40 | PY_OBJECTS      = ..\..\Objects | 
 | 41 | PY_PARSER       = ..\..\Parser | 
 | 42 | PY_PYTHON       = ..\..\Python | 
 | 43 | PY_INCLUDE      = ..\..\Include | 
 | 44 | PY_INCLUDES     = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) | 
 | 45 |  | 
 | 46 | # File to Collect Wordy Compiler Output re Errors | 
 | 47 | ERRS		= make.out | 
 | 48 |  | 
 | 49 | # Where to Find the IBM TCP/IP Socket Includes and Libraries | 
 | 50 | OS2TCPIP        = C:\MPTN | 
 | 51 |  | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 52 | # Where to Find the Tcl/Tk Base Directory for Libs/Includes | 
 | 53 | TCLTK		= D:\TclTk | 
 | 54 | TCLBASE		= D:\Tcl7.6\OS2 | 
 | 55 | TKBASE		= D:\Tk4.2\OS2 | 
 | 56 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 57 | # Where to Put the .OBJ Files, To Keep Them Out of the Way | 
 | 58 | PATHOBJ		= obj | 
 | 59 |  | 
 | 60 | # Search Path for Include Files | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 61 | PROJINCLUDE	= .;$(TCLBASE);$(TKBASE);$(OS2TCPIP)\Include;$(PY_INCLUDES) | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 62 |  | 
 | 63 | # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial) | 
 | 64 | MKMF_SRCS	= $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c | 
 | 65 |  | 
 | 66 | #.HDRPATH.c	:= $(PROJINCLUDE,;= ) $(.HDRPATH.c) | 
 | 67 | #.PATH.c         = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 68 | OTHERLIBS	= so32dll.lib tcp32dll.lib # Tcl76.lib Tk42.lib | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 69 |  | 
 | 70 | ################# | 
 | 71 | # Inference Rules | 
 | 72 | ################# | 
 | 73 | {$(PY_MODULES)\}.c{$(PATHOBJ)\}.obj:	# Compile C Code into a .OBJ File | 
 | 74 | 	@ Echo Compiling $< | 
 | 75 | 	@ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS) | 
 | 76 |  | 
 | 77 | {$(PY_OBJECTS)\}.c{$(PATHOBJ)\}.obj:	# Compile C Code into a .OBJ File | 
 | 78 | 	@ Echo Compiling $< | 
 | 79 | 	@ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS) | 
 | 80 |  | 
 | 81 | {$(PY_PARSER)\}.c{$(PATHOBJ)\}.obj:	# Compile C Code into a .OBJ File | 
 | 82 | 	@ Echo Compiling $< | 
 | 83 | 	@ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS) | 
 | 84 |  | 
 | 85 | {$(PY_PYTHON)\}.c{$(PATHOBJ)\}.obj:	# Compile C Code into a .OBJ File | 
 | 86 | 	@ Echo Compiling $< | 
 | 87 | 	@ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS) | 
 | 88 |  | 
 | 89 | .c{$(PATHOBJ)\}.obj:			# Compile C Code into a .OBJ File | 
 | 90 | 	@ Echo Compiling $< | 
 | 91 | 	@ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS) | 
 | 92 |  | 
 | 93 | ################### | 
 | 94 | # Python Subsystems | 
 | 95 | ################### | 
 | 96 |  | 
 | 97 | # PYTHON is the central core, containing the builtins and interpreter. | 
 | 98 | PYTHON		=                               \ | 
 | 99 |                   $(PATHOBJ)\BltinModule.obj    \ | 
 | 100 |                   $(PATHOBJ)\CEval.obj          \ | 
 | 101 |                   $(PATHOBJ)\Compile.obj        \ | 
 | 102 |                   $(PATHOBJ)\Errors.obj         \ | 
 | 103 |                   $(PATHOBJ)\Frozen.obj         \ | 
 | 104 |                   $(PATHOBJ)\Getargs.obj        \ | 
 | 105 |                   $(PATHOBJ)\GetCompiler.obj    \ | 
 | 106 |                   $(PATHOBJ)\GetCopyright.obj   \ | 
 | 107 |                   $(PATHOBJ)\GetMTime.obj       \ | 
 | 108 |                   $(PATHOBJ)\GetOpt.obj         \ | 
 | 109 |                   $(PATHOBJ)\GetPlatform.obj    \ | 
 | 110 |                   $(PATHOBJ)\GetVersion.obj     \ | 
 | 111 |                   $(PATHOBJ)\GramInit.obj       \ | 
 | 112 |                   $(PATHOBJ)\Import.obj         \ | 
 | 113 |                   $(PATHOBJ)\ImportDL.obj       \ | 
 | 114 |                   $(PATHOBJ)\Marshal.obj        \ | 
 | 115 |                   $(PATHOBJ)\ModSupport.obj     \ | 
 | 116 |                   $(PATHOBJ)\MyStrtoul.obj      \ | 
 | 117 |                   $(PATHOBJ)\PyState.obj        \ | 
 | 118 |                   $(PATHOBJ)\PythonRun.obj      \ | 
 | 119 |                   $(PATHOBJ)\StructMember.obj   \ | 
 | 120 |                   $(PATHOBJ)\SysModule.obj      \ | 
 | 121 |                   $(PATHOBJ)\Thread.obj         \ | 
 | 122 |                   $(PATHOBJ)\TraceBack.obj      \ | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 123 |                   $(PATHOBJ)\FrozenMain.obj     \ | 
 | 124 |                   $(PATHOBJ)\exceptions.obj     \ | 
 | 125 |                   $(PATHOBJ)\symtable.obj       \ | 
 | 126 |                   $(PATHOBJ)\codecs.obj         \ | 
 | 127 |                   $(PATHOBJ)\future.obj         \ | 
 | 128 |                   $(PATHOBJ)\dynload_os2.obj    \ | 
 | 129 |                   $(PATHOBJ)\mysnprintf.obj     \ | 
 | 130 |                   $(PATHOBJ)\iterobject.obj | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 131 |  | 
 | 132 | # Python's Internal Parser | 
 | 133 | PARSER		=                              \ | 
 | 134 |                   $(PATHOBJ)\Acceler.obj       \ | 
 | 135 |                   $(PATHOBJ)\Grammar1.obj      \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 136 |                   $(PATHOBJ)\ListNode.obj      \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 137 |                   $(PATHOBJ)\Node.obj          \ | 
 | 138 |                   $(PATHOBJ)\Parser.obj        \ | 
 | 139 |                   $(PATHOBJ)\ParseTok.obj      \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 140 |                   $(PATHOBJ)\BitSet.obj        \ | 
 | 141 |                   $(PATHOBJ)\MetaGrammar.obj   \ | 
 | 142 |                   $(PATHOBJ)\Tokenizer.obj     \ | 
 | 143 |                   $(PATHOBJ)\MyReadline.obj | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 144 |  | 
 | 145 | # Python Object Types | 
 | 146 | OBJECTS		=                              \ | 
 | 147 |                   $(PATHOBJ)\Abstract.obj      \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 148 |                   $(PATHOBJ)\BoolObject.obj    \ | 
 | 149 |                   $(PATHOBJ)\BufferObject.obj  \ | 
 | 150 |                   $(PATHOBJ)\CellObject.obj    \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 151 |                   $(PATHOBJ)\ClassObject.obj   \ | 
 | 152 |                   $(PATHOBJ)\CObject.obj       \ | 
 | 153 |                   $(PATHOBJ)\ComplexObject.obj \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 154 |                   $(PATHOBJ)\DescrObject.obj   \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 155 |                   $(PATHOBJ)\DictObject.obj    \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 156 |                   $(PATHOBJ)\EnumObject.obj    \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 157 |                   $(PATHOBJ)\FileObject.obj    \ | 
 | 158 |                   $(PATHOBJ)\FloatObject.obj   \ | 
 | 159 |                   $(PATHOBJ)\FrameObject.obj   \ | 
 | 160 |                   $(PATHOBJ)\FuncObject.obj    \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 161 |                   $(PATHOBJ)\IterObject.obj    \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 162 |                   $(PATHOBJ)\ListObject.obj    \ | 
 | 163 |                   $(PATHOBJ)\LongObject.obj    \ | 
 | 164 |                   $(PATHOBJ)\MethodObject.obj  \ | 
 | 165 |                   $(PATHOBJ)\ModuleObject.obj  \ | 
 | 166 |                   $(PATHOBJ)\Object.obj        \ | 
| Andrew MacIntyre | da4d6cb | 2004-03-29 11:53:38 +0000 | [diff] [blame] | 167 |                   $(PATHOBJ)\ObMalloc.obj      \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 168 |                   $(PATHOBJ)\RangeObject.obj   \ | 
 | 169 |                   $(PATHOBJ)\SliceObject.obj   \ | 
 | 170 |                   $(PATHOBJ)\StringObject.obj  \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 171 |                   $(PATHOBJ)\StructSeq.obj     \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 172 |                   $(PATHOBJ)\TupleObject.obj   \ | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 173 |                   $(PATHOBJ)\TypeObject.obj    \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 174 |                   $(PATHOBJ)\UnicodeObject.obj \ | 
 | 175 |                   $(PATHOBJ)\UnicodeCType.obj  \ | 
 | 176 |                   $(PATHOBJ)\WeakrefObject.obj | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 177 |  | 
 | 178 | # Extension Modules (Built-In or as Separate DLLs) | 
 | 179 | MODULES		=                              \ | 
 | 180 |                   $(PATHOBJ)\ArrayModule.obj   \ | 
 | 181 |                   $(PATHOBJ)\BinAscii.obj      \ | 
 | 182 |                   $(PATHOBJ)\CMathModule.obj   \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 183 |                   $(PATHOBJ)\ErrnoModule.obj   \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 184 |                   $(PATHOBJ)\GCModule.obj      \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 185 |                   $(PATHOBJ)\GetBuildInfo.obj  \ | 
 | 186 |                   $(PATHOBJ)\GetPathP.obj      \ | 
 | 187 |                   $(PATHOBJ)\Main.obj          \ | 
 | 188 |                   $(PATHOBJ)\MathModule.obj    \ | 
 | 189 |                   $(PATHOBJ)\MD5c.obj          \ | 
 | 190 |                   $(PATHOBJ)\MD5Module.obj     \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 191 |                   $(PATHOBJ)\Operator.obj      \ | 
| Guido van Rossum | a34c313 | 1997-12-05 22:07:14 +0000 | [diff] [blame] | 192 |                   $(PATHOBJ)\PCREModule.obj    \ | 
 | 193 |                   $(PATHOBJ)\PyPCRE.obj        \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 194 |                   $(PATHOBJ)\PosixModule.obj   \ | 
 | 195 |                   $(PATHOBJ)\RegexModule.obj   \ | 
 | 196 |                   $(PATHOBJ)\RegExpr.obj       \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 197 |                   $(PATHOBJ)\SelectModule.obj  \ | 
 | 198 |                   $(PATHOBJ)\SignalModule.obj  \ | 
 | 199 |                   $(PATHOBJ)\SocketModule.obj  \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 200 |                   $(PATHOBJ)\StropModule.obj   \ | 
 | 201 |                   $(PATHOBJ)\StructModule.obj  \ | 
 | 202 |                   $(PATHOBJ)\TimeModule.obj    \ | 
| Amaury Forgeot d'Arc | b0c2916 | 2008-11-22 22:18:04 +0000 | [diff] [blame] | 203 |                   $(PATHOBJ)\ThreadModule.obj | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 204 |  | 
 | 205 | # Standalone Parser Generator Program (Shares Some of Python's Modules) | 
 | 206 | PGEN            =                              \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 207 |                   $(PATHOBJ)\PGen.obj          \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 208 |                   $(PATHOBJ)\PGenMain.obj      \ | 
 | 209 |                   $(PATHOBJ)\MySNPrintf.obj    \ | 
 | 210 |                   $(PATHOBJ)\Tokenizer_Pgen.obj \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 211 |                   $(PATHOBJ)\PrintGrammar.obj  \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 212 |                   $(PATHOBJ)\Grammar.obj       \ | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 213 |                   $(PATHOBJ)\FirstSets.obj | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 214 |  | 
 | 215 | ################## | 
 | 216 | # Macros and Flags | 
 | 217 | ################## | 
 | 218 | _BASE		= /Q /W2 /I$(PROJINCLUDE) | 
 | 219 | 		# /Q   = Omit IBM Copyright | 
 | 220 | 		# /W2  = Show Warnings/Errors Only | 
 | 221 |  | 
| Guido van Rossum | a34c313 | 1997-12-05 22:07:14 +0000 | [diff] [blame] | 222 | _GEN		= /G4 /Gm /Gd- | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 223 | 		# /G4  = Generate Code for 486 (Use 386 for Debugger) | 
 | 224 | 		# /Gm  = Use Multithread Runtime | 
 | 225 | 		# /Gd  = Dynamically Load Runtime | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 226 | 		# /Ms  = Use _System Calling Convention (vs _Optlink) | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 227 | 		#        (to allow non-VAC++ code to call into Python23.dll) | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 228 |  | 
 | 229 | _OPT		= /O /Gl | 
 | 230 | 		# /O   = Enable Speed-Optimizations | 
 | 231 | 		# /Ol  = Pass Code Thru Intermediate Linker | 
 | 232 | 		# /Gu  = Advise Linker All Ext Data is ID'd | 
 | 233 | 		# /Gl  = Have Linker Remove Unused Fns | 
 | 234 |  | 
| Guido van Rossum | a34c313 | 1997-12-05 22:07:14 +0000 | [diff] [blame] | 235 | _DBG		= /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET | 
 | 236 |                 # /Wpro= Generate Compiler Warnings re Missing Prototypes | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 237 | 		# /Ti  = Embed Debugger/Analyzer Recs | 
 | 238 | 		# /Tm  = Enable Debug Memory Fns | 
 | 239 | 		# /Tx  = Request Full Dump Upon Exception | 
 | 240 | 		# /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings | 
 | 241 |                 # /DUSE_SOCKET = Enables Building In of Socket API | 
 | 242 |  | 
 | 243 | _OUT		=  | 
 | 244 | 		# /Fb  = Embed Browser Recs | 
 | 245 | 		# /Gh  = Generate Code for Profiler Hooks | 
 | 246 | 		# /Fl  = Output C/C++ Listing Files | 
 | 247 |                 # /Lf  = Provide Full (Detailed) Listing Files | 
 | 248 | 		# /Fm. = Output Linker Map File | 
 | 249 | 		# /Ft. = Output C++ Template Resolution Files | 
 | 250 |  | 
 | 251 | _MAP		= /FmNoise\$(@R).map | 
 | 252 |  | 
 | 253 | _DLL		= /Ge- | 
 | 254 | _EXE		= /Ge | 
 | 255 | 		# /Ge = Create an EXE, not DLL | 
 | 256 |  | 
 | 257 | CFLAGS		= $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss | 
 | 258 |  | 
 | 259 | ################### | 
 | 260 | # Primary Target(s) | 
 | 261 | ################### | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 262 | All:  obj noise PyCore.lib Python23.lib PGen.exe \ | 
 | 263 |       Python.exe PythonPM.exe Python23.dll # _tkinter.dll | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 264 |  | 
 | 265 | Modules: $(MODULES) | 
 | 266 | Objects: $(OBJECTS) | 
 | 267 | Parser:  $(PARSER) | 
 | 268 | Python:  $(PYTHON) | 
 | 269 |  | 
 | 270 | # Directory to Keep .OBJ Files Out of the Way | 
 | 271 | obj: | 
 | 272 | 	@-mkdir obj >>NUL | 
 | 273 |  | 
 | 274 | # Directory to Keep .MAP and Such Text Files Out of the Way | 
 | 275 | noise: | 
 | 276 | 	@-mkdir noise >>NUL | 
 | 277 |  | 
 | 278 | ############## | 
 | 279 | # | 
 | 280 | ############## | 
 | 281 |  | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 282 | # Python Extension DLL: Tcl/Tk Interface | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 283 | #_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 284 | #	@ Echo Linking $@ As DLL | 
 | 285 | #	@ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 286 |  | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 287 | #$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c | 
 | 288 | #	@ Echo Compiling $** | 
 | 289 | #	@ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS) | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 290 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 291 | # Object Library of All Essential Python Routines | 
 | 292 | PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj | 
 | 293 | 	@ Echo Adding Updated Object Files to Link Library $@ | 
 | 294 | 	@ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS) | 
 | 295 |  | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 296 | Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 297 | 	@ Echo Linking $@ As DLL | 
 | 298 | 	@ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
| Tim Peters | 603c683 | 2001-11-05 02:45:59 +0000 | [diff] [blame] | 299 | #	@ Echo Compressing $@ with LxLite | 
 | 300 | #	@ lxlite $@ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 301 |  | 
 | 302 | # IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB | 
 | 303 | $(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c | 
 | 304 | 	@ Echo Compiling $** | 
 | 305 | 	@ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS) | 
 | 306 |  | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 307 | # Import Library for Using the Python23.dll | 
 | 308 | Python23.lib: Python.def | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 309 | 	@ Echo Making $@ | 
 | 310 | 	@ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS) | 
 | 311 | 	@ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS) | 
 | 312 |  | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 313 | # Small Command-Line Program to Start Interpreter in Python23.dll | 
 | 314 | Python.exe: $(PATHOBJ)\Python.obj Python23.lib | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 315 | 	@ Echo Linking $@ As EXE | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 316 | 	@ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
 | 317 |  | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 318 | # Small PM-GUI Program to Start Interpreter in Python23.dll | 
 | 319 | PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 320 | 	@ Echo Linking $@ As EXE | 
 | 321 | 	@ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 322 |  | 
 | 323 | PGen.exe: $(PGEN) PyCore.lib | 
 | 324 | 	@ Echo Linking $@ As EXE | 
 | 325 | 	@ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS) | 
 | 326 |  | 
 | 327 | ####################### | 
 | 328 | # Miscellaneous Targets | 
 | 329 | ####################### | 
 | 330 |  | 
 | 331 | # Remove Intermediate Targets but Leave Executable Binaries | 
 | 332 | clean: | 
 | 333 | 	-- Del /Q $(PATHOBJ)\*.obj		>NUL 2>&1 | 
 | 334 | 	-- Del /Q /Y Noise			>NUL 2>&1 | 
 | 335 | 	-- Del /Q $(ERRS)			>NUL 2>&1 | 
 | 336 |  | 
 | 337 | # Remove All Targets, Including Final Binaries | 
 | 338 | distclean: clean | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 339 |         -- Del /Q PyCore.lib Python23.lib       >NUL 2>&1 | 
 | 340 |         -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1 | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 341 |  | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 342 | release: Python.exe Python23.dll Python23.lib | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 343 | 	-- @Echo Y | copy /U Python.exe   D:\EXEs | 
| Andrew MacIntyre | 1994c7f | 2002-08-18 06:31:01 +0000 | [diff] [blame] | 344 | 	-- @Echo Y | copy /U Python23.dll D:\DLLs | 
 | 345 | 	-- @Echo Y | copy /U Python23.lib E:\Tau\Lib | 
| Guido van Rossum | e8afe51 | 1998-09-28 22:02:40 +0000 | [diff] [blame] | 346 | 	-- @Echo Y | copy /U _tkinter.dll D:\Python | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 347 |  | 
 | 348 | test: | 
 | 349 |         python ..\..\lib\test\regrtest.py | 
 | 350 |  | 
 | 351 | # Update Dependencies on Targets (Uses OpusMAKE Commercial Product) | 
 | 352 | depend: | 
 | 353 | 	D:\OpusMake\os2mkmf -c -s | 
 | 354 |  | 
 | 355 | ### OPUS MKMF:  Do not remove this line!  Generated dependencies follow. | 
 | 356 |  | 
 | 357 | _tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 358 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 359 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 360 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 361 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 362 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 363 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 364 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 365 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 366 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 367 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 368 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 369 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 370 | arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 371 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 372 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 373 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 374 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 375 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 376 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 377 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 378 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 379 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 380 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 381 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 382 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 383 |  | 
 | 384 | audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 385 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 386 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 387 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 388 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 389 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 390 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \ | 
 | 391 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 392 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 393 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 394 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 395 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 396 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 397 |  | 
 | 398 | binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 399 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 400 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 401 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 402 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 403 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 404 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 405 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 406 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 407 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 408 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 409 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 410 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 411 | cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 412 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 413 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 414 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 415 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 416 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 417 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 418 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 419 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 420 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 421 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 422 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 423 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 424 |  | 
 | 425 | cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 426 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Georg Brandl | 0312494 | 2008-06-10 15:50:56 +0000 | [diff] [blame] | 427 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 428 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 429 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 430 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 431 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 432 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 433 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 434 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 435 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 436 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 437 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 438 |  | 
 | 439 | cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 440 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 441 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 442 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 443 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 444 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 445 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 446 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 447 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 448 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 449 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 450 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 451 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 452 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 453 | cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 454 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 455 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 456 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 457 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 458 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 459 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 460 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 461 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 462 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 463 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 464 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 465 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 466 |  | 
| Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 467 | _dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 468 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 469 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 470 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 471 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 472 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 473 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 474 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 475 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 476 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 477 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 478 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 479 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 480 | errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 481 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 482 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 483 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 484 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 485 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 486 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 487 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 488 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 489 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 490 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 491 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 492 |  | 
 | 493 | errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 494 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 495 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 496 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 497 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 498 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 499 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 500 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 501 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 502 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 503 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 504 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 505 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 506 |  | 
 | 507 | fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \ | 
 | 508 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 509 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 510 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 511 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 512 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 513 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 514 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 515 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 516 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 517 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 518 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 519 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 520 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 521 | fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 522 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 523 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 524 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 525 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 526 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 527 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 528 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 529 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 530 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 531 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 532 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 533 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 534 |  | 
 | 535 | fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 536 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 537 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 538 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 539 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 540 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 541 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 542 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 543 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 544 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 545 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 546 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 547 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 548 |  | 
| Georg Brandl | 0a7ac7d | 2008-05-26 10:29:35 +0000 | [diff] [blame] | 549 | _gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 550 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 551 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 552 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 553 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 554 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 555 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 556 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 557 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 558 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 559 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 560 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 561 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 562 | getbuildinfo.obj: pyconfig.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 563 |  | 
 | 564 | getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 565 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 566 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 567 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 568 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 569 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 570 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 571 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \ | 
 | 572 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 573 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 574 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 575 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 576 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 577 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 578 | grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 579 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 580 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 581 | 	 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \ | 
 | 582 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 583 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 584 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 585 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 586 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 587 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 588 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 589 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 590 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 591 |  | 
 | 592 | imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 593 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 594 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 595 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 596 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 597 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 598 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 599 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 600 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 601 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 602 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 603 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 604 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 605 | main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 606 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 607 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 608 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 609 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 610 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 611 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 612 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 613 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 614 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 615 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 616 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 617 |  | 
 | 618 | mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 619 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 620 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 621 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 622 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 623 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 624 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \ | 
 | 625 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 626 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 627 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 628 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 629 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 630 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 631 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 632 | mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 633 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 634 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 635 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 636 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 637 | 	 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \ | 
 | 638 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 639 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 640 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 641 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 642 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 643 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 644 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 645 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 646 | nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \ | 
 | 647 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 648 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 649 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 650 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 651 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 652 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 653 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 654 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 655 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 656 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 657 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 658 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 659 |  | 
 | 660 | operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 661 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 662 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 663 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 664 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 665 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 666 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 667 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 668 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 669 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 670 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 671 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 672 |  | 
 | 673 | parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 674 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 675 | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 676 | 	 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ | 
 | 677 | 	 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 678 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 679 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 680 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 681 | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 682 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 683 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 684 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 685 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \ | 
 | 686 | 	 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 687 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 688 | posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 689 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 690 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 691 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 692 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 693 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 694 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 695 | 	 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 696 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 697 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 698 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 699 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 700 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 701 |  | 
 | 702 | posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 703 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 704 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 705 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 706 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 707 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 708 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 709 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \ | 
 | 710 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 711 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 712 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 713 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 714 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 715 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 716 | pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 717 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 718 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 719 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 720 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 721 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 722 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 723 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \ | 
 | 724 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 725 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 726 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 727 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 728 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 729 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 730 | readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 731 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 732 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 733 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 734 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 735 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 736 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 737 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 738 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 739 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 740 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 741 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 742 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 743 | resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \ | 
 | 744 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 745 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 746 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 747 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 748 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 749 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 750 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 751 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 752 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 753 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 754 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 755 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 756 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 757 | selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 758 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 759 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 760 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 761 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 762 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 763 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 764 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \ | 
 | 765 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 766 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 767 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 768 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 769 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 770 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 771 | signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 772 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 773 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 774 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 775 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 776 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 777 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 778 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 779 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 780 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 781 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 782 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 783 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 784 |  | 
 | 785 | socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \ | 
 | 786 | 	 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 787 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 788 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 789 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 790 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 791 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 792 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 793 | 	 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \ | 
 | 794 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 795 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 796 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 797 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 798 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 799 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 800 | structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 801 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 802 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 803 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 804 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 805 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 806 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 807 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 808 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 809 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 810 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 811 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 812 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 813 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 814 | syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 815 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 816 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 817 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 818 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 819 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 820 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 821 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 822 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 823 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 824 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 825 | 	 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \ | 
 | 826 | 	 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 827 |  | 
 | 828 | termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 829 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 830 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 831 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 832 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 833 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 834 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 835 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 836 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 837 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 838 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 839 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 840 |  | 
| Georg Brandl | 2067bfd | 2008-05-25 13:05:15 +0000 | [diff] [blame] | 841 | _threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 842 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 843 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 844 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 845 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 846 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 847 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 848 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 849 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 850 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 851 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 852 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \ | 
 | 853 | 	 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 854 |  | 
 | 855 | timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 856 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 857 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 858 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 859 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 860 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 861 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 862 | 	 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 863 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 864 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 865 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 866 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 867 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 868 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 869 | xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 870 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 871 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 872 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 873 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 874 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 875 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 876 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 877 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 878 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 879 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 880 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 881 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 882 | zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 883 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 884 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 885 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 886 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 887 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 888 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 889 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 890 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 891 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 892 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 893 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 894 |  | 
 | 895 | abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 896 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 897 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 898 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 899 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 900 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 901 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 902 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 903 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 904 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 905 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 906 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 907 |  | 
 | 908 | classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 909 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 910 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 911 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 912 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 913 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 914 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 915 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 916 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 917 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 918 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 919 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 920 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 921 |  | 
 | 922 | cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 923 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 924 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 925 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 926 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 927 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 928 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 929 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 930 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 931 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 932 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 933 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 934 |  | 
 | 935 | complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 936 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 937 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 938 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 939 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 940 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 941 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 942 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 943 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 944 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 945 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 946 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 947 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 948 |  | 
 | 949 | dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 950 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 951 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 952 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 953 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 954 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 955 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 956 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 957 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 958 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 959 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 960 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 961 |  | 
 | 962 | fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 963 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 964 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 965 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 966 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 967 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 968 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 969 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 970 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 971 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 972 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 973 | 	 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 974 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 975 |  | 
 | 976 | floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 977 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 978 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 979 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 980 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 981 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 982 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 983 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 984 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 985 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 986 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 987 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 988 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 989 |  | 
 | 990 | frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 991 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 992 | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 993 | 	 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 994 | 	 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 995 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 996 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 997 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 998 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 999 | 	 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1000 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1001 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1002 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 1003 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1004 |  | 
 | 1005 | funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1006 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1007 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1008 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1009 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1010 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1011 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1012 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1013 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1014 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1015 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1016 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 1017 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1018 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1019 | listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1020 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1021 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1022 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1023 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1024 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1025 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1026 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1027 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1028 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1029 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1030 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1031 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 1032 | longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1033 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1034 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1035 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1036 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1037 | 	 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \ | 
 | 1038 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1039 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \ | 
 | 1040 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1041 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1042 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1043 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1044 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1045 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1046 |  | 
 | 1047 | methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1048 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1049 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1050 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1051 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1052 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1053 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1054 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1055 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1056 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1057 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1058 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \ | 
 | 1059 | 	 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1060 |  | 
 | 1061 | moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1062 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1063 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1064 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1065 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1066 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1067 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1068 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1069 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1070 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1071 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1072 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1073 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1074 |  | 
 | 1075 | object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1076 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1077 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1078 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1079 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1080 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1081 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1082 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1083 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1084 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1085 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1086 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1087 |  | 
 | 1088 | rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1089 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1090 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1091 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1092 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1093 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1094 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1095 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1096 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1097 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1098 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1099 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1100 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1101 |  | 
 | 1102 | sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1103 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1104 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1105 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1106 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1107 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1108 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1109 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1110 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1111 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1112 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1113 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1114 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1115 |  | 
 | 1116 | stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1117 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1118 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1119 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1120 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1121 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1122 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1123 | 	 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \ | 
 | 1124 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1125 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1126 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1127 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1128 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1129 |  | 
 | 1130 | tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1131 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1132 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1133 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1134 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1135 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1136 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1137 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1138 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1139 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1140 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1141 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1142 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1143 |  | 
 | 1144 | typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1145 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1146 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1147 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1148 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1149 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1150 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1151 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1152 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1153 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1154 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1155 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1156 |  | 
 | 1157 | xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1158 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1159 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1160 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1161 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1162 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1163 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1164 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1165 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1166 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1167 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1168 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1169 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1170 | acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1171 | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ | 
 | 1172 | 	 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1173 | 	 $(PY_INCLUDE)\token.h | 
 | 1174 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1175 | bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1176 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
 | 1177 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1178 | firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1179 | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1180 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
 | 1181 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 1182 | grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1183 | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1184 | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
 | 1185 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 1186 | grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1187 | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1188 | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
 | 1189 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1190 | intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1191 | 	 $(PY_INCLUDE)\myproto.h | 
 | 1192 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1193 | listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1194 | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1195 | 	 $(PY_INCLUDE)\token.h | 
 | 1196 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1197 | metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1198 | 	 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1199 | 	 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
 | 1200 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1201 | myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1202 | 	 $(PY_INCLUDE)\myproto.h | 
 | 1203 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1204 | node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1205 | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h | 
 | 1206 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 1207 | parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1208 | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1209 | 	 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1210 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
 | 1211 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1212 | parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1213 | 	 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1214 | 	 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \ | 
 | 1215 | 	 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \ | 
 | 1216 | 	 $(PY_PARSER)\tokenizer.h | 
 | 1217 |  | 
| Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 1218 | pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1219 | 	 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1220 | 	 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1221 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h | 
 | 1222 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1223 | pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1224 | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \ | 
 | 1225 | 	 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1226 | 	 $(PY_INCLUDE)\pydebug.h | 
 | 1227 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1228 | printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1229 | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1230 | 	 $(PY_INCLUDE)\pydebug.h | 
 | 1231 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1232 | tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1233 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1234 | 	 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h | 
 | 1235 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1236 | atof.obj: pyconfig.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1237 |  | 
 | 1238 | bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1239 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1240 | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1241 | 	 $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1242 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1243 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1244 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1245 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \ | 
 | 1246 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \ | 
 | 1247 | 	 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1248 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1249 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1250 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1251 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1252 |  | 
 | 1253 | ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1254 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1255 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1256 | 	 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1257 | 	 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1258 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1259 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1260 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1261 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1262 | 	 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1263 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1264 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1265 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1266 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1267 |  | 
 | 1268 | compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1269 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1270 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1271 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \ | 
 | 1272 | 	 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ | 
 | 1273 | 	 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1274 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1275 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1276 | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1277 | 	 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1278 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1279 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1280 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 1281 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \ | 
 | 1282 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1283 |  | 
 | 1284 | errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1285 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1286 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1287 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1288 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1289 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1290 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1291 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1292 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1293 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1294 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1295 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1296 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1297 | fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1298 |  | 
 | 1299 | frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1300 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1301 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1302 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1303 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1304 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1305 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1306 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1307 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1308 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1309 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1310 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1311 |  | 
 | 1312 | frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1313 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1314 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1315 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1316 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1317 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1318 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1319 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1320 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1321 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1322 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1323 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1324 |  | 
 | 1325 | getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1326 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1327 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1328 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1329 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1330 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1331 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1332 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1333 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1334 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1335 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1336 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1337 |  | 
 | 1338 | getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1339 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1340 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1341 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1342 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1343 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1344 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1345 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1346 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1347 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1348 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1349 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1350 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1351 |  | 
 | 1352 | getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1353 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1354 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1355 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1356 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1357 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1358 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1359 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1360 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1361 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1362 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1363 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1364 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1365 |  | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1366 | getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1367 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1368 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1369 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1370 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1371 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1372 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1373 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1374 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1375 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1376 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1377 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1378 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1379 |  | 
 | 1380 | getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1381 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1382 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1383 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1384 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1385 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1386 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1387 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \ | 
 | 1388 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1389 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1390 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1391 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1392 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1393 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1394 | graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1395 | 	 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \ | 
 | 1396 | 	 $(PY_INCLUDE)\pydebug.h | 
 | 1397 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1398 | hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1399 |  | 
 | 1400 | import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1401 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1402 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1403 | 	 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \ | 
 | 1404 | 	 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \ | 
 | 1405 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1406 | 	 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1407 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1408 | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1409 | 	 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1410 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1411 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1412 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \ | 
 | 1413 | 	 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1414 |  | 
 | 1415 | importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1416 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1417 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1418 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \ | 
 | 1419 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1420 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1421 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1422 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1423 | 	 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1424 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1425 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1426 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1427 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1428 |  | 
 | 1429 | marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1430 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1431 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1432 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1433 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1434 | 	 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \ | 
 | 1435 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1436 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1437 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1438 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1439 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1440 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1441 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1442 |  | 
 | 1443 | modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1444 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1445 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1446 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1447 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1448 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1449 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1450 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1451 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1452 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1453 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1454 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1455 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1456 | mystrtoul.obj: pyconfig.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1457 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1458 | pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1459 |  | 
 | 1460 | pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1461 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1462 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1463 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1464 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1465 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1466 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1467 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1468 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1469 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1470 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1471 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1472 |  | 
 | 1473 | pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \ | 
 | 1474 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1475 | 	 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1476 | 	 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \ | 
 | 1477 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \ | 
 | 1478 | 	 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \ | 
 | 1479 | 	 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \ | 
 | 1480 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1481 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1482 | 	 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1483 | 	 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \ | 
 | 1484 | 	 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \ | 
 | 1485 | 	 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1486 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1487 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1488 |  | 
 | 1489 | sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1490 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1491 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1492 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1493 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1494 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1495 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1496 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \ | 
 | 1497 | 	 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \ | 
 | 1498 | 	 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \ | 
 | 1499 | 	 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \ | 
 | 1500 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1501 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1502 | strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1503 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1504 | strtod.obj: pyconfig.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1505 |  | 
 | 1506 | structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \ | 
 | 1507 | 	 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1508 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1509 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \ | 
 | 1510 | 	 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \ | 
 | 1511 | 	 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \ | 
 | 1512 | 	 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \ | 
 | 1513 | 	 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \ | 
 | 1514 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1515 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1516 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1517 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 1518 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h | 
 | 1519 |  | 
 | 1520 | sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1521 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1522 | 	 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \ | 
 | 1523 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1524 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1525 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1526 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1527 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \ | 
 | 1528 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1529 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1530 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1531 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \ | 
 | 1532 | 	 $(PY_INCLUDE)\tupleobject.h | 
 | 1533 |  | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1534 | thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1535 |  | 
 | 1536 | traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \ | 
 | 1537 | 	 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \ | 
| Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1538 | 	 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \ | 
| Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1539 | 	 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \ | 
 | 1540 | 	 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \ | 
 | 1541 | 	 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \ | 
 | 1542 | 	 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \ | 
 | 1543 | 	 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \ | 
 | 1544 | 	 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \ | 
 | 1545 | 	 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \ | 
 | 1546 | 	 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \ | 
 | 1547 | 	 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \ | 
 | 1548 | 	 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \ | 
 | 1549 | 	 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h |