blob: 1608960cb76a406b23e3731613ae9c64865a9550 [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 \
161 $(PATHOBJ)\IntObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000162 $(PATHOBJ)\IterObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000163 $(PATHOBJ)\ListObject.obj \
164 $(PATHOBJ)\LongObject.obj \
165 $(PATHOBJ)\MethodObject.obj \
166 $(PATHOBJ)\ModuleObject.obj \
167 $(PATHOBJ)\Object.obj \
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +0000168 $(PATHOBJ)\ObMalloc.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000169 $(PATHOBJ)\RangeObject.obj \
170 $(PATHOBJ)\SliceObject.obj \
171 $(PATHOBJ)\StringObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000172 $(PATHOBJ)\StructSeq.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000173 $(PATHOBJ)\TupleObject.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000174 $(PATHOBJ)\TypeObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000175 $(PATHOBJ)\UnicodeObject.obj \
176 $(PATHOBJ)\UnicodeCType.obj \
177 $(PATHOBJ)\WeakrefObject.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000178
179# Extension Modules (Built-In or as Separate DLLs)
180MODULES = \
181 $(PATHOBJ)\ArrayModule.obj \
182 $(PATHOBJ)\BinAscii.obj \
183 $(PATHOBJ)\CMathModule.obj \
184 $(PATHOBJ)\cPickle.obj \
185 $(PATHOBJ)\cStringIO.obj \
186 $(PATHOBJ)\ErrnoModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000187 $(PATHOBJ)\GCModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000188 $(PATHOBJ)\GetBuildInfo.obj \
189 $(PATHOBJ)\GetPathP.obj \
190 $(PATHOBJ)\Main.obj \
191 $(PATHOBJ)\MathModule.obj \
192 $(PATHOBJ)\MD5c.obj \
193 $(PATHOBJ)\MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000194 $(PATHOBJ)\Operator.obj \
Guido van Rossuma34c3131997-12-05 22:07:14 +0000195 $(PATHOBJ)\PCREModule.obj \
196 $(PATHOBJ)\PyPCRE.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000197 $(PATHOBJ)\PosixModule.obj \
198 $(PATHOBJ)\RegexModule.obj \
199 $(PATHOBJ)\RegExpr.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000200 $(PATHOBJ)\SelectModule.obj \
201 $(PATHOBJ)\SignalModule.obj \
202 $(PATHOBJ)\SocketModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000203 $(PATHOBJ)\StropModule.obj \
204 $(PATHOBJ)\StructModule.obj \
205 $(PATHOBJ)\TimeModule.obj \
Amaury Forgeot d'Arc98adb5c2008-11-22 19:39:38 +0000206 $(PATHOBJ)\ThreadModule.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000207
208# Standalone Parser Generator Program (Shares Some of Python's Modules)
209PGEN = \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000210 $(PATHOBJ)\PGen.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000211 $(PATHOBJ)\PGenMain.obj \
212 $(PATHOBJ)\MySNPrintf.obj \
213 $(PATHOBJ)\Tokenizer_Pgen.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000214 $(PATHOBJ)\PrintGrammar.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000215 $(PATHOBJ)\Grammar.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000216 $(PATHOBJ)\FirstSets.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000217
218##################
219# Macros and Flags
220##################
221_BASE = /Q /W2 /I$(PROJINCLUDE)
222 # /Q = Omit IBM Copyright
223 # /W2 = Show Warnings/Errors Only
224
Guido van Rossuma34c3131997-12-05 22:07:14 +0000225_GEN = /G4 /Gm /Gd-
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000226 # /G4 = Generate Code for 486 (Use 386 for Debugger)
227 # /Gm = Use Multithread Runtime
228 # /Gd = Dynamically Load Runtime
Guido van Rossume8afe511998-09-28 22:02:40 +0000229 # /Ms = Use _System Calling Convention (vs _Optlink)
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000230 # (to allow non-VAC++ code to call into Python23.dll)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000231
232_OPT = /O /Gl
233 # /O = Enable Speed-Optimizations
234 # /Ol = Pass Code Thru Intermediate Linker
235 # /Gu = Advise Linker All Ext Data is ID'd
236 # /Gl = Have Linker Remove Unused Fns
237
Guido van Rossuma34c3131997-12-05 22:07:14 +0000238_DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
239 # /Wpro= Generate Compiler Warnings re Missing Prototypes
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000240 # /Ti = Embed Debugger/Analyzer Recs
241 # /Tm = Enable Debug Memory Fns
242 # /Tx = Request Full Dump Upon Exception
243 # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
244 # /DUSE_SOCKET = Enables Building In of Socket API
245
246_OUT =
247 # /Fb = Embed Browser Recs
248 # /Gh = Generate Code for Profiler Hooks
249 # /Fl = Output C/C++ Listing Files
250 # /Lf = Provide Full (Detailed) Listing Files
251 # /Fm. = Output Linker Map File
252 # /Ft. = Output C++ Template Resolution Files
253
254_MAP = /FmNoise\$(@R).map
255
256_DLL = /Ge-
257_EXE = /Ge
258 # /Ge = Create an EXE, not DLL
259
260CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
261
262###################
263# Primary Target(s)
264###################
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000265All: obj noise PyCore.lib Python23.lib PGen.exe \
266 Python.exe PythonPM.exe Python23.dll # _tkinter.dll
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000267
268Modules: $(MODULES)
269Objects: $(OBJECTS)
270Parser: $(PARSER)
271Python: $(PYTHON)
272
273# Directory to Keep .OBJ Files Out of the Way
274obj:
275 @-mkdir obj >>NUL
276
277# Directory to Keep .MAP and Such Text Files Out of the Way
278noise:
279 @-mkdir noise >>NUL
280
281##############
282#
283##############
284
Guido van Rossume8afe511998-09-28 22:02:40 +0000285# Python Extension DLL: Tcl/Tk Interface
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000286#_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
Tim Peters603c6832001-11-05 02:45:59 +0000287# @ Echo Linking $@ As DLL
288# @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000289
Tim Peters603c6832001-11-05 02:45:59 +0000290#$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
291# @ Echo Compiling $**
292# @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000293
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000294# Object Library of All Essential Python Routines
295PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
296 @ Echo Adding Updated Object Files to Link Library $@
297 @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
298
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000299Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000300 @ Echo Linking $@ As DLL
301 @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Tim Peters603c6832001-11-05 02:45:59 +0000302# @ Echo Compressing $@ with LxLite
303# @ lxlite $@
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000304
305# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
306$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
307 @ Echo Compiling $**
308 @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
309
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000310# Import Library for Using the Python23.dll
311Python23.lib: Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000312 @ Echo Making $@
313 @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
314 @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
315
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000316# Small Command-Line Program to Start Interpreter in Python23.dll
317Python.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000318 @ Echo Linking $@ As EXE
Guido van Rossume8afe511998-09-28 22:02:40 +0000319 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
320
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000321# Small PM-GUI Program to Start Interpreter in Python23.dll
322PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000323 @ Echo Linking $@ As EXE
324 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000325
326PGen.exe: $(PGEN) PyCore.lib
327 @ Echo Linking $@ As EXE
328 @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
329
330#######################
331# Miscellaneous Targets
332#######################
333
334# Remove Intermediate Targets but Leave Executable Binaries
335clean:
336 -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
337 -- Del /Q /Y Noise >NUL 2>&1
338 -- Del /Q $(ERRS) >NUL 2>&1
339
340# Remove All Targets, Including Final Binaries
341distclean: clean
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000342 -- Del /Q PyCore.lib Python23.lib >NUL 2>&1
343 -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000344
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000345release: Python.exe Python23.dll Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000346 -- @Echo Y | copy /U Python.exe D:\EXEs
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000347 -- @Echo Y | copy /U Python23.dll D:\DLLs
348 -- @Echo Y | copy /U Python23.lib E:\Tau\Lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000349 -- @Echo Y | copy /U _tkinter.dll D:\Python
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000350
351test:
352 python ..\..\lib\test\regrtest.py
353
354# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
355depend:
356 D:\OpusMake\os2mkmf -c -s
357
358### OPUS MKMF: Do not remove this line! Generated dependencies follow.
359
360_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000361 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000362 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
363 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
364 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
365 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
366 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
367 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
368 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
369 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
370 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
371 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
372
373almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000374 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000375 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
376 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
377 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
378 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
379 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
380 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
381 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
382 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
383 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
384 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
385
386arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
387 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000388 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000389 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
390 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
391 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
392 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.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
400audioop.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)\mymath.h \
407 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
408 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
409 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
410 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
411 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
412 $(PY_INCLUDE)\tupleobject.h
413
414binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000415 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000416 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
417 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
418 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
419 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
420 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
421 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
422 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
423 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
424 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
425 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
426
427bsddbmodule.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)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
435 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
436 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
437 $(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
441cdmodule.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)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
444 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
445 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
446 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
447 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
448 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
449 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
450 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
451 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
452 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
453
454cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
455 $(PY_MODULES)\cgensupport.h $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000456 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000457 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
458 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
459 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
460 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
461 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
462 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
463 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
464 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
465 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
466 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
467
468clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000469 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000470 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
471 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
472 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
473 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
474 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
475 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
476 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
477 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
478 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
479 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
480
481cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
482 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000483 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000484 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
485 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
486 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
487 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
488 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
489 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
490 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
491 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
492 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
493 $(PY_INCLUDE)\tupleobject.h
494
495cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000496 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000497 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
498 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
499 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
500 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
501 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
502 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
503 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
504 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
505 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
506 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
507 $(PY_INCLUDE)\tupleobject.h
508
509cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
510 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000511 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000512 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
513 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
514 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
515 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
516 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
517 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
518 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
519 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
520 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
521 $(PY_INCLUDE)\tupleobject.h
522
523cstringio.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)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
526 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
527 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
528 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
529 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
530 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
531 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
532 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
533 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
534 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
535 $(PY_INCLUDE)\tupleobject.h
536
537cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
538 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000539 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000540 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
541 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
542 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
543 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
544 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
545 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
546 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
547 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
548 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
549 $(PY_INCLUDE)\tupleobject.h
550
551dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000552 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000553 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
554 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
555 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
556 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
557 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
558 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
559 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
560 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
561 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
562 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
563
564dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000565 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000566 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
567 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
568 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
569 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
570 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
571 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
572 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
573 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
574 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
575 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
576
577errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000578 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000579 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
580 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
581 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
582 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
583 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
584 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
585 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
586 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
587 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
588 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
589
590errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
591 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000592 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000593 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
594 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
595 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
596 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
597 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
598 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
599 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
600 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
601 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
602 $(PY_INCLUDE)\tupleobject.h
603
604fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
605 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000606 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000607 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
608 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
609 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
610 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
611 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
612 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
613 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
614 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
615 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
616 $(PY_INCLUDE)\tupleobject.h
617
618flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000619 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000620 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
621 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
622 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
623 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
624 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
625 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
626 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
627 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
628 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
629 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
630 $(PY_INCLUDE)\tupleobject.h
631
632fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000633 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000634 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
635 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
636 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
637 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
638 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
639 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
640 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
641 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
642 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
643 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
644
645fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
646 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000647 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000648 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
649 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
650 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
651 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
652 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
653 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
654 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
655 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
656 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
657 $(PY_INCLUDE)\tupleobject.h
658
659fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
660 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000661 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000662 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
663 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
664 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
665 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
666 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
667 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
668 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
669 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
670 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
671 $(PY_INCLUDE)\tupleobject.h
672
673gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000674 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000675 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
676 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
677 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
678 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
679 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
680 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
681 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
682 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
683 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
684 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
685
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000686getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000687
688getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000689 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000690 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
691 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
692 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
693 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
694 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
695 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
696 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
697 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
698 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
699 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
700 $(PY_INCLUDE)\tupleobject.h
701
702glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_MODULES)\cgensupport.h \
703 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000704 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000705 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
706 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
707 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
708 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
709 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
710 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
711 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
712 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
713 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
714 $(PY_INCLUDE)\tupleobject.h
715
716grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000717 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000718 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
719 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
720 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
721 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
722 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
723 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
724 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
725 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
726 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
727 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
728 $(PY_INCLUDE)\tupleobject.h
729
730imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000731 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000732 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
733 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
734 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
735 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
736 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
737 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
738 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
739 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
740 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
741 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
742
743imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000744 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000745 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
746 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
747 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
748 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
749 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
750 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
751 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
752 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
753 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
754 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
755
756main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000757 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000758 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
759 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
760 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
761 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
762 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
763 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
764 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
765 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
766 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
767 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
768
769mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000770 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000771 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
772 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
773 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
774 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
775 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
776 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
777 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
778 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
779 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
780 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
781 $(PY_INCLUDE)\tupleobject.h
782
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000783md5c.obj: pyconfig.h $(PY_MODULES)\md5.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000784
785md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000786 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000787 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
788 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
789 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
790 $(PY_MODULES)\md5.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
791 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
792 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
793 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
794 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
795 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
796 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
797
Tim Peters1ca12962001-12-04 03:18:48 +0000798mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000799 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000800 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000801 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
802 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
803 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
804 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
805 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
806 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
807 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
808 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
809 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
810 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
811
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000812nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
813 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000814 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000815 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
816 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
817 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
818 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
819 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
820 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
821 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
822 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
823 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
824 $(PY_INCLUDE)\tupleobject.h
825
826operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000827 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000828 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
829 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
830 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
831 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
832 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
833 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
834 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
835 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
836 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
837 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
838
839parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
840 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000841 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000842 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
843 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
844 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
845 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
846 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
847 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
848 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
849 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
850 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
851 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
852 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
853
854pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000855 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000856 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
857 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
858 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
859 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
860 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
861 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_MODULES)\pcre-internal.h \
862 $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
863 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
864 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
865 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
866 $(PY_INCLUDE)\tupleobject.h
867
868posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000869 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000870 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
871 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
872 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
873 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
874 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
875 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
876 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
877 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
878 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
879 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
880 $(PY_INCLUDE)\tupleobject.h
881
882posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
883 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000884 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000885 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
886 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
887 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
888 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
889 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
890 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
891 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
892 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
893 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
894 $(PY_INCLUDE)\tupleobject.h
895
896puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000897 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000898 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
899 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
900 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
901 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
902 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
903 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
904 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
905 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
906 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
907 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
908
909pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000910 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000911 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
912 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
913 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
914 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
915 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
916 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
917 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
918 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
919 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
920 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
921 $(PY_INCLUDE)\tupleobject.h
922
923pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000924 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000925 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
926 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h \
927 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
928 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
929 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
930 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
931 $(PY_MODULES)\pcre-internal.h $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h \
932 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
933 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
934 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
935 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
936
937readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000938 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000939 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
940 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
941 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
942 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
943 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
944 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
945 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
946 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
947 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
948 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
949
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000950resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
951 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000952 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000953 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
954 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
955 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
956 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
957 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
958 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
959 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
960 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
961 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
962 $(PY_INCLUDE)\tupleobject.h
963
964rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
965 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000966 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000967 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
968 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
969 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
970 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
971 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
972 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
973 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
974 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
975 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
976 $(PY_INCLUDE)\tupleobject.h
977
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000978selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
979 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000980 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000981 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
982 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
983 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
984 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
985 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
986 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
987 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
988 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
989 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
990 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
991
992sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000993 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000994 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
995 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
996 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
997 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
998 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
999 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1000 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1001 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1002 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1003 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1004
1005signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1006 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001007 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001008 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1009 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1010 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1011 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1012 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1013 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1014 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1015 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1016 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1017 $(PY_INCLUDE)\tupleobject.h
1018
1019socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
1020 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001021 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001022 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1023 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1024 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1025 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1026 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1027 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
1028 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1029 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1030 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1031 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1032 $(PY_INCLUDE)\tupleobject.h
1033
1034soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001035 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001036 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1037 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1038 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1039 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1040 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1041 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1042 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1043 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1044 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1045 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1046
1047stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1048 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001049 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001050 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1051 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1052 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1053 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1054 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1055 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1056 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1057 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1058 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1059 $(PY_INCLUDE)\tupleobject.h
1060
1061stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1062 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001063 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001064 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1065 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1066 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1067 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1068 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1069 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1070 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1071 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1072 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1073 $(PY_INCLUDE)\tupleobject.h
1074
1075structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1076 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001077 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001078 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1079 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1080 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1081 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1082 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1083 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1084 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1085 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1086 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1087 $(PY_INCLUDE)\tupleobject.h
1088
1089sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
1090 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001091 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001092 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1093 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1094 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1095 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1096 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1097 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1098 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1099 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1100 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1101 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1102
1103svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
1104 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001105 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001106 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1107 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1108 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1109 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1110 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1111 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1112 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1113 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1114 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
Amaury Forgeot d'Arc98adb5c2008-11-22 19:39:38 +00001115 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001116
1117syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1118 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001119 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001120 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1121 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1122 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1123 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1124 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1125 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1126 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1127 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1128 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
1129 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1130
1131termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001132 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001133 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1134 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1135 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1136 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1137 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1138 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1139 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1140 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1141 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1142 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1143
1144threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1145 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001146 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001147 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1148 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1149 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1150 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1151 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1152 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1153 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1154 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1155 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
1156 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1157
1158timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001159 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001160 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1161 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1162 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1163 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1164 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1165 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1166 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1167 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1168 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1169 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1170 $(PY_INCLUDE)\tupleobject.h
1171
1172timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1173 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001174 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001175 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1176 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1177 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1178 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1179 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1180 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1181 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1182 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1183 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_MODULES)\timing.h \
1184 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1185
1186xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001187 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001188 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1189 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1190 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1191 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1192 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1193 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1194 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1195 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1196 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1197 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1198
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001199zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001200 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001201 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1202 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1203 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1204 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1205 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1206 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1207 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1208 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1209 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1210 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1211
1212abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001213 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001214 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1215 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1216 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1217 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1218 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1219 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1220 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1221 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1222 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1223 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1224
1225classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1226 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001227 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001228 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1229 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1230 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1231 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1232 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1233 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1234 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1235 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1236 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1237 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1238
1239cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001240 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001241 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1242 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1243 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1244 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1245 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1246 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1247 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1248 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1249 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1250 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1251
1252complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1253 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001254 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001255 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1256 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1257 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1258 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1259 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1260 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1261 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1262 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1263 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1264 $(PY_INCLUDE)\tupleobject.h
1265
1266dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001267 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001268 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1269 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1270 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1271 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1272 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1273 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1274 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1275 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1276 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1277 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1278
1279fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001280 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001281 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1282 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1283 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1284 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1285 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1286 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1287 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1288 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1289 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1290 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1291 $(PY_INCLUDE)\tupleobject.h
1292
1293floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1294 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001295 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001296 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1297 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1298 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1299 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1300 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1301 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1302 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1303 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1304 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1305 $(PY_INCLUDE)\tupleobject.h
1306
1307frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1308 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001309 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001310 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1311 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1312 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1313 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1314 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1315 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1316 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1317 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1318 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1319 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1320 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1321
1322funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1323 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001324 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001325 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1326 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1327 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1328 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1329 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1330 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1331 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1332 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1333 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1334 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1335
1336intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001337 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001338 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1339 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1340 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1341 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1342 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1343 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1344 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1345 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1346 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1347 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1348
1349listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001350 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001351 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1352 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1353 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1354 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1355 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1356 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1357 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1358 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1359 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1360 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1361
Tim Peters1ca12962001-12-04 03:18:48 +00001362longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001363 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001364 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001365 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1366 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1367 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
1368 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1369 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1370 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1371 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1372 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1373 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1374 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1375 $(PY_INCLUDE)\tupleobject.h
1376
1377methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1378 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001379 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001380 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1381 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1382 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1383 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1384 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1385 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1386 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1387 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1388 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1389 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1390
1391moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1392 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001393 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001394 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1395 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1396 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1397 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1398 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1399 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1400 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1401 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1402 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1403 $(PY_INCLUDE)\tupleobject.h
1404
1405object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001406 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001407 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1408 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1409 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1410 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1411 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1412 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1413 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1414 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1415 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1416 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1417
1418rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1419 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001420 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001421 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1422 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1423 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1424 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1425 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1426 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1427 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1428 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1429 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1430 $(PY_INCLUDE)\tupleobject.h
1431
1432sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1433 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001434 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001435 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1436 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1437 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1438 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1439 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1440 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1441 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1442 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1443 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1444 $(PY_INCLUDE)\tupleobject.h
1445
1446stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1447 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001448 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001449 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1450 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1451 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1452 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1453 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1454 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1455 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1456 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1457 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1458 $(PY_INCLUDE)\tupleobject.h
1459
1460tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1461 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001462 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001463 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1464 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1465 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1466 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1467 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1468 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1469 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1470 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1471 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1472 $(PY_INCLUDE)\tupleobject.h
1473
1474typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001475 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001476 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1477 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1478 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1479 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1480 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1481 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1482 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1483 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1484 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1485 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1486
1487xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001488 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001489 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1490 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1491 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1492 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1493 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1494 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1495 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1496 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1497 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1498 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1499
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001500acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001501 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1502 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1503 $(PY_INCLUDE)\token.h
1504
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001505bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001506 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1507
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001508firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001509 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1510 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1511
Tim Peters1ca12962001-12-04 03:18:48 +00001512grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001513 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1514 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1515
Tim Peters1ca12962001-12-04 03:18:48 +00001516grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001517 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1518 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1519
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001520intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001521 $(PY_INCLUDE)\myproto.h
1522
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001523listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001524 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1525 $(PY_INCLUDE)\token.h
1526
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001527metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001528 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1529 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1530
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001531myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001532 $(PY_INCLUDE)\myproto.h
1533
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001534node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001535 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1536
Tim Peters1ca12962001-12-04 03:18:48 +00001537parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001538 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1539 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
1540 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1541
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001542parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001543 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1544 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
1545 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
1546 $(PY_PARSER)\tokenizer.h
1547
Tim Peters1ca12962001-12-04 03:18:48 +00001548pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001549 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1550 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1551 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1552
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001553pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001554 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1555 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1556 $(PY_INCLUDE)\pydebug.h
1557
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001558printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001559 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1560 $(PY_INCLUDE)\pydebug.h
1561
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001562tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001563 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1564 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
1565
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001566atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001567
1568bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1569 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001570 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001571 $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1572 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1573 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1574 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1575 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1576 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
1577 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1578 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1579 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1580 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1581 $(PY_INCLUDE)\tupleobject.h
1582
1583ceval.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)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001586 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1587 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1588 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1589 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1590 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1591 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1592 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1593 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1594 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1595 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1596 $(PY_INCLUDE)\tupleobject.h
1597
1598compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1599 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001600 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001601 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
1602 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1603 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1604 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1605 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1606 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1607 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1608 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1609 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1610 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1611 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
1612 $(PY_INCLUDE)\tupleobject.h
1613
1614errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001615 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001616 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1617 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1618 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1619 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1620 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1621 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1622 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1623 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1624 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1625 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1626
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001627fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001628
1629frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001630 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001631 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1632 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1633 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1634 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1635 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1636 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1637 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1638 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1639 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1640 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1641
1642frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001643 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001644 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1645 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1646 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1647 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1648 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1649 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1650 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1651 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1652 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1653 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1654
1655getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001656 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001657 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1658 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1659 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1660 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1661 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1662 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1663 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1664 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1665 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1666 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1667
1668getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1669 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001670 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001671 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1672 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1673 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1674 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1675 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1676 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1677 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1678 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1679 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1680 $(PY_INCLUDE)\tupleobject.h
1681
1682getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1683 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001684 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001685 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1686 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1687 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1688 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1689 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1690 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1691 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1692 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1693 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1694 $(PY_INCLUDE)\tupleobject.h
1695
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001696getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1697 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001698 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001699 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1700 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1701 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1702 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1703 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1704 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1705 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1706 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1707 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1708 $(PY_INCLUDE)\tupleobject.h
1709
1710getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001711 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001712 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1713 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1714 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1715 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1716 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1717 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
1718 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1719 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1720 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1721 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1722 $(PY_INCLUDE)\tupleobject.h
1723
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001724graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001725 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1726 $(PY_INCLUDE)\pydebug.h
1727
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001728hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001729
1730import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1731 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001732 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001733 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1734 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
1735 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1736 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1737 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1738 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1739 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1740 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1741 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1742 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1743 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1744
1745importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001746 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001747 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1748 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
1749 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1750 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1751 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1752 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1753 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1754 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1755 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1756 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1757 $(PY_INCLUDE)\tupleobject.h
1758
1759marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1760 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001761 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001762 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1763 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1764 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1765 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1766 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1767 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1768 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1769 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1770 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1771 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1772
1773modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001774 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001775 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1776 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1777 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1778 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1779 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1780 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1781 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1782 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1783 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1784 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1785
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001786mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001787
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001788pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001789
1790pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001791 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001792 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1793 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1794 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1795 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1796 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1797 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1798 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1799 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1800 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1801 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1802
1803pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
1804 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001805 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001806 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
1807 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
1808 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1809 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1810 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1811 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1812 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1813 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1814 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1815 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1816 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1817 $(PY_INCLUDE)\tupleobject.h
1818
1819sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001820 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001821 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1822 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1823 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1824 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1825 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1826 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1827 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1828 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1829 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1830 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1831
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001832strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001833
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001834strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001835
1836structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1837 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001838 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001839 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1840 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1841 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1842 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1843 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1844 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1845 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1846 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1847 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1848 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1849
1850sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001851 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001852 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1853 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1854 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1855 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1856 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1857 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1858 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1859 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1860 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1861 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1862 $(PY_INCLUDE)\tupleobject.h
1863
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001864thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001865
1866traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1867 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001868 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001869 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
1870 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1871 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1872 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1873 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1874 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1875 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1876 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1877 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1878 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1879 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1880