blob: 7e795669c078ab47425fc7d0bf65e9801a11e362 [file] [log] [blame]
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001######################################################################
2#
3# Top-Level Makefile for Building Python for OS/2
4#
5# This makefile was developed for use with IBM's VisualAge C/C++
6# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
7# version 4.0 of the NMAKE tool that comes with that package.
8#
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +00009# The output of the build is a largish Python23.DLL containing the
Guido van Rossum50d4cc21997-11-22 21:59:45 +000010# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +000012# Python23.DLL is needed.
Guido van Rossum50d4cc21997-11-22 21:59:45 +000013#
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 Rossume8afe511998-09-28 22:02:40 +000029# 26-Sep-98 jrr Retested and adjusted for building w/Python 1.5.2a1
Guido van Rossum50d4cc21997-11-22 21:59:45 +000030# 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###################
39PY_MODULES = ..\..\Modules
40PY_OBJECTS = ..\..\Objects
41PY_PARSER = ..\..\Parser
42PY_PYTHON = ..\..\Python
43PY_INCLUDE = ..\..\Include
44PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
45
46# File to Collect Wordy Compiler Output re Errors
47ERRS = make.out
48
49# Where to Find the IBM TCP/IP Socket Includes and Libraries
50OS2TCPIP = C:\MPTN
51
Guido van Rossume8afe511998-09-28 22:02:40 +000052# Where to Find the Tcl/Tk Base Directory for Libs/Includes
53TCLTK = D:\TclTk
54TCLBASE = D:\Tcl7.6\OS2
55TKBASE = D:\Tk4.2\OS2
56
Guido van Rossum50d4cc21997-11-22 21:59:45 +000057# Where to Put the .OBJ Files, To Keep Them Out of the Way
58PATHOBJ = obj
59
60# Search Path for Include Files
Guido van Rossume8afe511998-09-28 22:02:40 +000061PROJINCLUDE = .;$(TCLBASE);$(TKBASE);$(OS2TCPIP)\Include;$(PY_INCLUDES)
Guido van Rossum50d4cc21997-11-22 21:59:45 +000062
63# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
64MKMF_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 Peters603c6832001-11-05 02:45:59 +000068OTHERLIBS = so32dll.lib tcp32dll.lib # Tcl76.lib Tk42.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +000069
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.
98PYTHON = \
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 Peters603c6832001-11-05 02:45:59 +0000123 $(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 Rossum50d4cc21997-11-22 21:59:45 +0000131
132# Python's Internal Parser
133PARSER = \
134 $(PATHOBJ)\Acceler.obj \
135 $(PATHOBJ)\Grammar1.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000136 $(PATHOBJ)\ListNode.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000137 $(PATHOBJ)\Node.obj \
138 $(PATHOBJ)\Parser.obj \
139 $(PATHOBJ)\ParseTok.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000140 $(PATHOBJ)\BitSet.obj \
141 $(PATHOBJ)\MetaGrammar.obj \
142 $(PATHOBJ)\Tokenizer.obj \
143 $(PATHOBJ)\MyReadline.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000144
145# Python Object Types
146OBJECTS = \
147 $(PATHOBJ)\Abstract.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000148 $(PATHOBJ)\BoolObject.obj \
149 $(PATHOBJ)\BufferObject.obj \
150 $(PATHOBJ)\CellObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000151 $(PATHOBJ)\ClassObject.obj \
152 $(PATHOBJ)\CObject.obj \
153 $(PATHOBJ)\ComplexObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000154 $(PATHOBJ)\DescrObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000155 $(PATHOBJ)\DictObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000156 $(PATHOBJ)\EnumObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000157 $(PATHOBJ)\FileObject.obj \
158 $(PATHOBJ)\FloatObject.obj \
159 $(PATHOBJ)\FrameObject.obj \
160 $(PATHOBJ)\FuncObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000161 $(PATHOBJ)\IterObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000162 $(PATHOBJ)\ListObject.obj \
163 $(PATHOBJ)\LongObject.obj \
164 $(PATHOBJ)\MethodObject.obj \
165 $(PATHOBJ)\ModuleObject.obj \
166 $(PATHOBJ)\Object.obj \
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +0000167 $(PATHOBJ)\ObMalloc.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000168 $(PATHOBJ)\RangeObject.obj \
169 $(PATHOBJ)\SliceObject.obj \
170 $(PATHOBJ)\StringObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000171 $(PATHOBJ)\StructSeq.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000172 $(PATHOBJ)\TupleObject.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000173 $(PATHOBJ)\TypeObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000174 $(PATHOBJ)\UnicodeObject.obj \
175 $(PATHOBJ)\UnicodeCType.obj \
176 $(PATHOBJ)\WeakrefObject.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000177
178# Extension Modules (Built-In or as Separate DLLs)
179MODULES = \
180 $(PATHOBJ)\ArrayModule.obj \
181 $(PATHOBJ)\BinAscii.obj \
182 $(PATHOBJ)\CMathModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000183 $(PATHOBJ)\cStringIO.obj \
184 $(PATHOBJ)\ErrnoModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000185 $(PATHOBJ)\GCModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000186 $(PATHOBJ)\GetBuildInfo.obj \
187 $(PATHOBJ)\GetPathP.obj \
188 $(PATHOBJ)\Main.obj \
189 $(PATHOBJ)\MathModule.obj \
190 $(PATHOBJ)\MD5c.obj \
191 $(PATHOBJ)\MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000192 $(PATHOBJ)\Operator.obj \
Guido van Rossuma34c3131997-12-05 22:07:14 +0000193 $(PATHOBJ)\PCREModule.obj \
194 $(PATHOBJ)\PyPCRE.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000195 $(PATHOBJ)\PosixModule.obj \
196 $(PATHOBJ)\RegexModule.obj \
197 $(PATHOBJ)\RegExpr.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000198 $(PATHOBJ)\SelectModule.obj \
199 $(PATHOBJ)\SignalModule.obj \
200 $(PATHOBJ)\SocketModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000201 $(PATHOBJ)\StropModule.obj \
202 $(PATHOBJ)\StructModule.obj \
203 $(PATHOBJ)\TimeModule.obj \
204 $(PATHOBJ)\ThreadModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000205 $(PATHOBJ)\YUVConvert.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000206
207# Standalone Parser Generator Program (Shares Some of Python's Modules)
208PGEN = \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000209 $(PATHOBJ)\PGen.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000210 $(PATHOBJ)\PGenMain.obj \
211 $(PATHOBJ)\MySNPrintf.obj \
212 $(PATHOBJ)\Tokenizer_Pgen.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000213 $(PATHOBJ)\PrintGrammar.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000214 $(PATHOBJ)\Grammar.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000215 $(PATHOBJ)\FirstSets.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000216
217##################
218# Macros and Flags
219##################
220_BASE = /Q /W2 /I$(PROJINCLUDE)
221 # /Q = Omit IBM Copyright
222 # /W2 = Show Warnings/Errors Only
223
Guido van Rossuma34c3131997-12-05 22:07:14 +0000224_GEN = /G4 /Gm /Gd-
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000225 # /G4 = Generate Code for 486 (Use 386 for Debugger)
226 # /Gm = Use Multithread Runtime
227 # /Gd = Dynamically Load Runtime
Guido van Rossume8afe511998-09-28 22:02:40 +0000228 # /Ms = Use _System Calling Convention (vs _Optlink)
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000229 # (to allow non-VAC++ code to call into Python23.dll)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000230
231_OPT = /O /Gl
232 # /O = Enable Speed-Optimizations
233 # /Ol = Pass Code Thru Intermediate Linker
234 # /Gu = Advise Linker All Ext Data is ID'd
235 # /Gl = Have Linker Remove Unused Fns
236
Guido van Rossuma34c3131997-12-05 22:07:14 +0000237_DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
238 # /Wpro= Generate Compiler Warnings re Missing Prototypes
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000239 # /Ti = Embed Debugger/Analyzer Recs
240 # /Tm = Enable Debug Memory Fns
241 # /Tx = Request Full Dump Upon Exception
242 # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
243 # /DUSE_SOCKET = Enables Building In of Socket API
244
245_OUT =
246 # /Fb = Embed Browser Recs
247 # /Gh = Generate Code for Profiler Hooks
248 # /Fl = Output C/C++ Listing Files
249 # /Lf = Provide Full (Detailed) Listing Files
250 # /Fm. = Output Linker Map File
251 # /Ft. = Output C++ Template Resolution Files
252
253_MAP = /FmNoise\$(@R).map
254
255_DLL = /Ge-
256_EXE = /Ge
257 # /Ge = Create an EXE, not DLL
258
259CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
260
261###################
262# Primary Target(s)
263###################
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000264All: obj noise PyCore.lib Python23.lib PGen.exe \
265 Python.exe PythonPM.exe Python23.dll # _tkinter.dll
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000266
267Modules: $(MODULES)
268Objects: $(OBJECTS)
269Parser: $(PARSER)
270Python: $(PYTHON)
271
272# Directory to Keep .OBJ Files Out of the Way
273obj:
274 @-mkdir obj >>NUL
275
276# Directory to Keep .MAP and Such Text Files Out of the Way
277noise:
278 @-mkdir noise >>NUL
279
280##############
281#
282##############
283
Guido van Rossume8afe511998-09-28 22:02:40 +0000284# Python Extension DLL: Tcl/Tk Interface
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000285#_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
Tim Peters603c6832001-11-05 02:45:59 +0000286# @ Echo Linking $@ As DLL
287# @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000288
Tim Peters603c6832001-11-05 02:45:59 +0000289#$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
290# @ Echo Compiling $**
291# @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000292
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000293# Object Library of All Essential Python Routines
294PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
295 @ Echo Adding Updated Object Files to Link Library $@
296 @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
297
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000298Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000299 @ Echo Linking $@ As DLL
300 @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Tim Peters603c6832001-11-05 02:45:59 +0000301# @ Echo Compressing $@ with LxLite
302# @ lxlite $@
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000303
304# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
305$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
306 @ Echo Compiling $**
307 @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
308
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000309# Import Library for Using the Python23.dll
310Python23.lib: Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000311 @ Echo Making $@
312 @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
313 @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
314
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000315# Small Command-Line Program to Start Interpreter in Python23.dll
316Python.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000317 @ Echo Linking $@ As EXE
Guido van Rossume8afe511998-09-28 22:02:40 +0000318 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
319
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000320# Small PM-GUI Program to Start Interpreter in Python23.dll
321PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000322 @ Echo Linking $@ As EXE
323 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000324
325PGen.exe: $(PGEN) PyCore.lib
326 @ Echo Linking $@ As EXE
327 @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
328
329#######################
330# Miscellaneous Targets
331#######################
332
333# Remove Intermediate Targets but Leave Executable Binaries
334clean:
335 -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
336 -- Del /Q /Y Noise >NUL 2>&1
337 -- Del /Q $(ERRS) >NUL 2>&1
338
339# Remove All Targets, Including Final Binaries
340distclean: clean
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000341 -- Del /Q PyCore.lib Python23.lib >NUL 2>&1
342 -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000343
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000344release: Python.exe Python23.dll Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000345 -- @Echo Y | copy /U Python.exe D:\EXEs
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000346 -- @Echo Y | copy /U Python23.dll D:\DLLs
347 -- @Echo Y | copy /U Python23.lib E:\Tau\Lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000348 -- @Echo Y | copy /U _tkinter.dll D:\Python
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000349
350test:
351 python ..\..\lib\test\regrtest.py
352
353# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
354depend:
355 D:\OpusMake\os2mkmf -c -s
356
357### OPUS MKMF: Do not remove this line! Generated dependencies follow.
358
359_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000360 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000361 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
362 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
363 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
364 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
365 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
366 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
367 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
368 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
369 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
370 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
371
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000372arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
373 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000374 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000375 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
376 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
377 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
378 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
379 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
380 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
381 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
382 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
383 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
384 $(PY_INCLUDE)\tupleobject.h
385
386audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000387 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000388 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
389 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
390 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
391 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
392 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
393 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
394 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
395 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
396 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
397 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
398 $(PY_INCLUDE)\tupleobject.h
399
400binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000401 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000402 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
403 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
404 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
405 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
406 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
407 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
408 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
409 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
410 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
411 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
412
413bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
414 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000415 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000416 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
417 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
418 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
419 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
420 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
421 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
422 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
423 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
424 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
425 $(PY_INCLUDE)\tupleobject.h
426
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
428 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000429 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000430 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
431 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
432 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
433 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
434 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
435 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
436 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
437 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
438 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
439 $(PY_INCLUDE)\tupleobject.h
440
441cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000442 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000443 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
444 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
445 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
446 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
447 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
448 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
449 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
450 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
451 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
452 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
453 $(PY_INCLUDE)\tupleobject.h
454
455cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
456 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000457 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000458 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
459 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
460 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
461 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
462 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
463 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
464 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
465 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
466 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
467 $(PY_INCLUDE)\tupleobject.h
468
469cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000470 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000471 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
472 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
473 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
474 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
475 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
476 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
477 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
478 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
479 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
480 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
481 $(PY_INCLUDE)\tupleobject.h
482
483cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
484 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000485 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000486 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
487 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
488 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
489 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
490 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
491 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
492 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
493 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
494 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
495 $(PY_INCLUDE)\tupleobject.h
496
497dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000498 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000499 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
500 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
501 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
502 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
503 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
504 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
505 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
506 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
507 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
508 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
509
510dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000511 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000512 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
513 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
514 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
515 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
516 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
517 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
518 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
519 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
520 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
521 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
522
523errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000524 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000525 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
526 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
527 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
528 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
529 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
530 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
531 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
532 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
533 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
534 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
535
536errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
537 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000538 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000539 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
540 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
541 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
542 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
543 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
544 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
545 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
546 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
547 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
548 $(PY_INCLUDE)\tupleobject.h
549
550fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
551 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000552 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000553 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
554 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
555 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
556 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
557 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
558 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
559 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
560 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
561 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
562 $(PY_INCLUDE)\tupleobject.h
563
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000564fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
565 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000566 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000567 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
568 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
569 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
570 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
571 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.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
578fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
579 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000580 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000581 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.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
592gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000593 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000594 $(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
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000605getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000606
607getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000608 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000609 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
610 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
611 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
612 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
613 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
614 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
615 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
616 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
617 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
618 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
619 $(PY_INCLUDE)\tupleobject.h
620
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000621grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000622 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000623 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
624 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
625 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
626 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
627 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
628 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
629 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
630 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
631 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
632 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
633 $(PY_INCLUDE)\tupleobject.h
634
635imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000636 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000637 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
638 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
639 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
640 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
641 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
642 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
643 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
644 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
645 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
646 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
647
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000648main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000649 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000650 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
651 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
652 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
653 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
654 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
655 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
656 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
657 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
658 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
659 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
660
661mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000662 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000663 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
664 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
665 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
666 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
667 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
668 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
669 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
670 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
671 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
672 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
673 $(PY_INCLUDE)\tupleobject.h
674
Tim Peters1ca12962001-12-04 03:18:48 +0000675mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000676 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000677 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000678 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
679 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
680 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
681 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
682 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
683 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
684 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
685 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
686 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
687 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
688
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000689nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
690 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000691 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000692 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
693 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
694 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
695 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
696 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
697 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
698 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
699 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
700 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
701 $(PY_INCLUDE)\tupleobject.h
702
703operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000704 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000705 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
706 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
707 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
708 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
709 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
710 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
711 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
712 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
713 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
714 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
715
716parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
717 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000718 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000719 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
720 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
721 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
722 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
723 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
724 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
725 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
726 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
727 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
728 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
729 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
730
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000731posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000732 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000733 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
734 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
735 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
736 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
737 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
738 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
739 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
740 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
741 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
742 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
743 $(PY_INCLUDE)\tupleobject.h
744
745posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
746 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000747 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000748 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
749 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
750 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
751 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
752 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
753 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
754 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
755 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
756 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
757 $(PY_INCLUDE)\tupleobject.h
758
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000759pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000760 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000761 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
762 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
763 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
764 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
765 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
766 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
767 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
768 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
769 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
770 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
771 $(PY_INCLUDE)\tupleobject.h
772
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000773readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000774 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000775 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
776 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
777 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
778 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
779 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
780 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
781 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
782 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
783 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
784 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
785
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000786resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
787 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000788 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000789 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
790 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
791 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
792 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
793 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
794 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
795 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
796 $(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 Rossum50d4cc21997-11-22 21:59:45 +0000800selectmodule.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öwis4f1cd8b2001-07-26 13:41:06 +0000802 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000803 $(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)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
808 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
809 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
810 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
811 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
812 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
813
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000814signalmodule.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öwis4f1cd8b2001-07-26 13:41:06 +0000816 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000817 $(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 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
826 $(PY_INCLUDE)\tupleobject.h
827
828socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
829 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000830 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000831 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
832 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
833 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
834 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
835 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
836 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
837 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
838 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
839 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
840 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
841 $(PY_INCLUDE)\tupleobject.h
842
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000843structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
844 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000845 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000846 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
847 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
848 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
849 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
850 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
851 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
852 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
853 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
854 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
855 $(PY_INCLUDE)\tupleobject.h
856
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000857syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
858 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000859 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000860 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
861 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
862 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
863 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
864 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
865 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
866 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
867 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
868 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
869 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
870
871termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000872 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000873 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
874 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
875 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
876 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
877 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
878 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
879 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
880 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
881 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
882 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
883
884threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
885 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000886 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000887 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
888 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
889 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
890 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
891 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
892 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
893 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
894 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
895 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
896 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
897
898timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000899 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000900 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
901 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
902 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
903 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
904 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
905 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
906 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
907 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
908 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
909 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
910 $(PY_INCLUDE)\tupleobject.h
911
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000912xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000913 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000914 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
915 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
916 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
917 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
918 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
919 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
920 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
921 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
922 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
923 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
924
925yuvconvert.obj: $(PY_MODULES)\yuv.h
926
927zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000928 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000929 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
930 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
931 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
932 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
933 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
934 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
935 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
936 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
937 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
938 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
939
940abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000941 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000942 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
943 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
944 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
945 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
946 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
947 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
948 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
949 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
950 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
951 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
952
953classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
954 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000955 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000956 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
957 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
958 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
959 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
960 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
961 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
962 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
963 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
964 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
965 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
966
967cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000968 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000969 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
970 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
971 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
972 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
973 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
974 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
975 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
976 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
977 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
978 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
979
980complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
981 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000982 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000983 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
984 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
985 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
986 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
987 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
988 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
989 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
990 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
991 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
992 $(PY_INCLUDE)\tupleobject.h
993
994dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000995 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000996 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
997 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
998 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
999 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1000 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1001 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1002 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1003 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1004 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1005 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1006
1007fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001008 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001009 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1010 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1011 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1012 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1013 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1014 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1015 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1016 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1017 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1018 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1019 $(PY_INCLUDE)\tupleobject.h
1020
1021floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1022 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001023 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001024 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1025 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1026 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1027 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1028 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1029 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1030 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1031 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1032 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1033 $(PY_INCLUDE)\tupleobject.h
1034
1035frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1036 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001037 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001038 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1039 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1040 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1041 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1042 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1043 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1044 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1045 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1046 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1047 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1048 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1049
1050funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1051 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001052 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001053 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1054 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1055 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1056 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1057 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1058 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1059 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1060 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1061 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1062 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1063
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001064listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001065 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001066 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1067 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1068 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1069 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1070 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1071 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1072 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1073 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1074 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1075 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1076
Tim Peters1ca12962001-12-04 03:18:48 +00001077longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001078 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001079 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001080 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1081 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1082 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
1083 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1084 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1085 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1086 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1087 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1088 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1089 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1090 $(PY_INCLUDE)\tupleobject.h
1091
1092methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1093 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001094 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001095 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1096 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1097 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1098 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1099 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1100 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1101 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1102 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1103 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1104 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1105
1106moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1107 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001108 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001109 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1110 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1111 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1112 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1113 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1114 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1115 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1116 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1117 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1118 $(PY_INCLUDE)\tupleobject.h
1119
1120object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001121 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001122 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1123 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1124 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1125 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1126 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1127 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1128 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1129 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1130 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1131 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1132
1133rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1134 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001135 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001136 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1137 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1138 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1139 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1140 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1141 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1142 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1143 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1144 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1145 $(PY_INCLUDE)\tupleobject.h
1146
1147sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1148 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001149 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001150 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1151 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1152 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1153 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1154 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1155 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1156 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1157 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1158 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1159 $(PY_INCLUDE)\tupleobject.h
1160
1161stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1162 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001163 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001164 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1165 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1166 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1167 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1168 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1169 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1170 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1171 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1172 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1173 $(PY_INCLUDE)\tupleobject.h
1174
1175tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1176 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001177 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001178 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1179 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1180 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1181 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1182 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1183 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1184 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1185 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1186 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1187 $(PY_INCLUDE)\tupleobject.h
1188
1189typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001190 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001191 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1192 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1193 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1194 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1195 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1196 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1197 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1198 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1199 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1200 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1201
1202xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001203 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001204 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1205 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1206 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1207 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1208 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1209 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1210 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1211 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1212 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1213 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1214
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001215acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001216 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1217 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1218 $(PY_INCLUDE)\token.h
1219
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001220bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001221 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1222
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001223firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001224 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1225 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1226
Tim Peters1ca12962001-12-04 03:18:48 +00001227grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001228 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1229 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1230
Tim Peters1ca12962001-12-04 03:18:48 +00001231grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001232 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1233 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1234
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001235intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001236 $(PY_INCLUDE)\myproto.h
1237
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001238listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001239 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1240 $(PY_INCLUDE)\token.h
1241
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001242metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001243 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1244 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1245
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001246myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001247 $(PY_INCLUDE)\myproto.h
1248
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001249node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001250 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1251
Tim Peters1ca12962001-12-04 03:18:48 +00001252parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001253 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1254 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
1255 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1256
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001257parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001258 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1259 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
1260 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
1261 $(PY_PARSER)\tokenizer.h
1262
Tim Peters1ca12962001-12-04 03:18:48 +00001263pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001264 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1265 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1266 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1267
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001268pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001269 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1270 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1271 $(PY_INCLUDE)\pydebug.h
1272
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001273printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001274 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1275 $(PY_INCLUDE)\pydebug.h
1276
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001277tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001278 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1279 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
1280
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001281atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001282
1283bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1284 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001285 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001286 $(PY_INCLUDE)\eval.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)\mymath.h \
1291 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
1292 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1293 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1294 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1295 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1296 $(PY_INCLUDE)\tupleobject.h
1297
1298ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1299 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001300 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001301 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1302 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1303 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1304 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1305 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1306 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1307 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1308 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1309 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1310 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1311 $(PY_INCLUDE)\tupleobject.h
1312
1313compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1314 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001315 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001316 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
1317 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1318 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1319 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1320 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1321 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1322 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1323 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1324 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1325 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1326 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
1327 $(PY_INCLUDE)\tupleobject.h
1328
1329errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001330 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001331 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1332 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1333 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1334 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1335 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1336 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1337 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1338 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1339 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1340 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1341
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001342fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001343
1344frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001345 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001346 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1347 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1348 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1349 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1350 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1351 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1352 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1353 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1354 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1355 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1356
1357frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001358 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001359 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1360 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1361 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1362 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1363 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1364 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1365 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1366 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1367 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1368 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1369
1370getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001371 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001372 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1373 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1374 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1375 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1376 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1377 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1378 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1379 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1380 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1381 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1382
1383getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1384 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001385 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001386 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1387 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1388 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1389 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1390 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1391 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1392 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1393 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1394 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1395 $(PY_INCLUDE)\tupleobject.h
1396
1397getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1398 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001399 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001400 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1401 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1402 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1403 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1404 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1405 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1406 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1407 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1408 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1409 $(PY_INCLUDE)\tupleobject.h
1410
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001411getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001412
1413getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1414 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001415 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001416 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1417 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1418 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1419 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1420 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1421 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1422 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1423 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1424 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1425 $(PY_INCLUDE)\tupleobject.h
1426
1427getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001428 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001429 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1430 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1431 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1432 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1433 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1434 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
1435 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1436 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1437 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1438 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1439 $(PY_INCLUDE)\tupleobject.h
1440
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001441graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001442 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1443 $(PY_INCLUDE)\pydebug.h
1444
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001445hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001446
1447import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1448 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001449 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001450 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1451 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
1452 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1453 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1454 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1455 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1456 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1457 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1458 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1459 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1460 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1461
1462importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001463 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001464 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1465 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
1466 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1467 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1468 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1469 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1470 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1471 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1472 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1473 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1474 $(PY_INCLUDE)\tupleobject.h
1475
1476marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1477 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001478 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001479 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1480 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1481 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1482 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1483 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1484 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1485 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1486 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1487 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1488 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1489
1490modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001491 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001492 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1493 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1494 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1495 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1496 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1497 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1498 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1499 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1500 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1501 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1502
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001503mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001504
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001505pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001506
1507pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001508 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001509 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1510 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1511 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1512 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1513 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1514 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1515 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1516 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1517 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1518 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1519
1520pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
1521 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001522 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001523 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
1524 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
1525 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1526 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1527 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1528 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1529 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1530 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1531 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1532 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1533 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1534 $(PY_INCLUDE)\tupleobject.h
1535
1536sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001537 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001538 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1539 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1540 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1541 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1542 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1543 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1544 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1545 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1546 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1547 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1548
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001549strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001550
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001551strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001552
1553structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1554 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001555 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001556 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1557 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1558 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1559 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1560 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1561 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1562 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1563 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1564 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1565 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1566
1567sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001568 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001569 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1570 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1571 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1572 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1573 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1574 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1575 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1576 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1577 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1578 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1579 $(PY_INCLUDE)\tupleobject.h
1580
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001581thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001582
1583traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1584 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001585 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001586 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
1587 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1588 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1589 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1590 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1591 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1592 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1593 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1594 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1595 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1596 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h