blob: 029b9011b5c4cf7d03f22aeef03b08edab1f3754 [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#
9# The output of the build is a largish Python15.DLL containing the
10# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
12# Python15.DLL is needed.
13#
14# These two binaries can be statically linked with the VisualAge C/C++
15# runtime library (producing larger binaries), or dynamically linked
16# to make smaller ones that require the compiler to be installed on
17# any system Python is used on. Review the /Gd+ compiler option for
18# how to do this.
19#
20# NOTE: IBM's NMAKE 4.0 is rather dumb, requiring this makefile to
21# be much more complicated than necessary. I use OpusMAKE
22# myself for a much more powerful MAKE tool but not everyone
23# wishes to buy it. However, as a result I didn't hook in
24# the dependencies on the include files as NMAKE has no easy
25# way to do this without explicitly spelling it all out.
26#
27# History (Most Recent First)
28#
Guido van 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 \
136 $(PATHOBJ)\MyReadline.obj \
137 $(PATHOBJ)\Node.obj \
138 $(PATHOBJ)\Parser.obj \
139 $(PATHOBJ)\ParseTok.obj \
140 $(PATHOBJ)\Tokenizer.obj
141
142# Python Object Types
143OBJECTS = \
144 $(PATHOBJ)\Abstract.obj \
145 $(PATHOBJ)\ClassObject.obj \
146 $(PATHOBJ)\CObject.obj \
147 $(PATHOBJ)\ComplexObject.obj \
148 $(PATHOBJ)\DictObject.obj \
149 $(PATHOBJ)\FileObject.obj \
150 $(PATHOBJ)\FloatObject.obj \
151 $(PATHOBJ)\FrameObject.obj \
152 $(PATHOBJ)\FuncObject.obj \
153 $(PATHOBJ)\IntObject.obj \
154 $(PATHOBJ)\ListObject.obj \
155 $(PATHOBJ)\LongObject.obj \
156 $(PATHOBJ)\MethodObject.obj \
157 $(PATHOBJ)\ModuleObject.obj \
158 $(PATHOBJ)\Object.obj \
159 $(PATHOBJ)\RangeObject.obj \
160 $(PATHOBJ)\SliceObject.obj \
161 $(PATHOBJ)\StringObject.obj \
162 $(PATHOBJ)\TupleObject.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000163 $(PATHOBJ)\TypeObject.obj \
164 $(PATHOBJ)\unicodeobject.obj \
165 $(PATHOBJ)\unicodectype.obj \
166 $(PATHOBJ)\cellobject.obj \
167 $(PATHOBJ)\descrobject.obj \
168 $(PATHOBJ)\weakrefobject.obj \
169 $(PATHOBJ)\structseq.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000170
171# Extension Modules (Built-In or as Separate DLLs)
172MODULES = \
173 $(PATHOBJ)\ArrayModule.obj \
174 $(PATHOBJ)\BinAscii.obj \
175 $(PATHOBJ)\CMathModule.obj \
176 $(PATHOBJ)\cPickle.obj \
177 $(PATHOBJ)\cStringIO.obj \
178 $(PATHOBJ)\ErrnoModule.obj \
179 $(PATHOBJ)\GetBuildInfo.obj \
180 $(PATHOBJ)\GetPathP.obj \
181 $(PATHOBJ)\Main.obj \
182 $(PATHOBJ)\MathModule.obj \
183 $(PATHOBJ)\MD5c.obj \
184 $(PATHOBJ)\MD5Module.obj \
185 $(PATHOBJ)\NewModule.obj \
186 $(PATHOBJ)\Operator.obj \
Guido van Rossuma34c3131997-12-05 22:07:14 +0000187 $(PATHOBJ)\PCREModule.obj \
188 $(PATHOBJ)\PyPCRE.obj \
189 $(PATHOBJ)\RotorModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000190 $(PATHOBJ)\PosixModule.obj \
191 $(PATHOBJ)\RegexModule.obj \
192 $(PATHOBJ)\RegExpr.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000193 $(PATHOBJ)\SelectModule.obj \
194 $(PATHOBJ)\SignalModule.obj \
195 $(PATHOBJ)\SocketModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000196 $(PATHOBJ)\StropModule.obj \
197 $(PATHOBJ)\StructModule.obj \
198 $(PATHOBJ)\TimeModule.obj \
199 $(PATHOBJ)\ThreadModule.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000200 $(PATHOBJ)\YUVConvert.obj \
201 $(PATHOBJ)\bufferobject.obj \
202 $(PATHOBJ)\gcmodule.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000203
204# Standalone Parser Generator Program (Shares Some of Python's Modules)
205PGEN = \
206 $(PATHOBJ)\PGenMain.obj \
207 $(PATHOBJ)\PGen.obj \
208 $(PATHOBJ)\PrintGrammar.obj \
209 $(PATHOBJ)\ListNode.obj \
210 $(PATHOBJ)\Grammar.obj \
211 $(PATHOBJ)\BitSet.obj \
212 $(PATHOBJ)\FirstSets.obj \
213 $(PATHOBJ)\MetaGrammar.obj
214
215##################
216# Macros and Flags
217##################
218_BASE = /Q /W2 /I$(PROJINCLUDE)
219 # /Q = Omit IBM Copyright
220 # /W2 = Show Warnings/Errors Only
221
Guido van Rossuma34c3131997-12-05 22:07:14 +0000222_GEN = /G4 /Gm /Gd-
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000223 # /G4 = Generate Code for 486 (Use 386 for Debugger)
224 # /Gm = Use Multithread Runtime
225 # /Gd = Dynamically Load Runtime
Guido van Rossume8afe511998-09-28 22:02:40 +0000226 # /Ms = Use _System Calling Convention (vs _Optlink)
Tim Peters603c6832001-11-05 02:45:59 +0000227 # (to allow non-VAC++ code to call into Python22.dll)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000228
229_OPT = /O /Gl
230 # /O = Enable Speed-Optimizations
231 # /Ol = Pass Code Thru Intermediate Linker
232 # /Gu = Advise Linker All Ext Data is ID'd
233 # /Gl = Have Linker Remove Unused Fns
234
Guido van Rossuma34c3131997-12-05 22:07:14 +0000235_DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
236 # /Wpro= Generate Compiler Warnings re Missing Prototypes
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000237 # /Ti = Embed Debugger/Analyzer Recs
238 # /Tm = Enable Debug Memory Fns
239 # /Tx = Request Full Dump Upon Exception
240 # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
241 # /DUSE_SOCKET = Enables Building In of Socket API
242
243_OUT =
244 # /Fb = Embed Browser Recs
245 # /Gh = Generate Code for Profiler Hooks
246 # /Fl = Output C/C++ Listing Files
247 # /Lf = Provide Full (Detailed) Listing Files
248 # /Fm. = Output Linker Map File
249 # /Ft. = Output C++ Template Resolution Files
250
251_MAP = /FmNoise\$(@R).map
252
253_DLL = /Ge-
254_EXE = /Ge
255 # /Ge = Create an EXE, not DLL
256
257CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
258
259###################
260# Primary Target(s)
261###################
Tim Peters603c6832001-11-05 02:45:59 +0000262All: obj noise PyCore.lib Python22.lib PGen.exe \
263 Python.exe PythonPM.exe Python22.dll # _tkinter.dll
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000264
265Modules: $(MODULES)
266Objects: $(OBJECTS)
267Parser: $(PARSER)
268Python: $(PYTHON)
269
270# Directory to Keep .OBJ Files Out of the Way
271obj:
272 @-mkdir obj >>NUL
273
274# Directory to Keep .MAP and Such Text Files Out of the Way
275noise:
276 @-mkdir noise >>NUL
277
278##############
279#
280##############
281
Guido van Rossume8afe511998-09-28 22:02:40 +0000282# Python Extension DLL: Tcl/Tk Interface
Tim Peters603c6832001-11-05 02:45:59 +0000283#_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python22.lib _tkinter.def
284# @ Echo Linking $@ As DLL
285# @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000286
Tim Peters603c6832001-11-05 02:45:59 +0000287#$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
288# @ Echo Compiling $**
289# @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000290
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000291# Object Library of All Essential Python Routines
292PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
293 @ Echo Adding Updated Object Files to Link Library $@
294 @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
295
Tim Peters603c6832001-11-05 02:45:59 +0000296Python22.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000297 @ Echo Linking $@ As DLL
298 @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Tim Peters603c6832001-11-05 02:45:59 +0000299# @ Echo Compressing $@ with LxLite
300# @ lxlite $@
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000301
302# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
303$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
304 @ Echo Compiling $**
305 @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
306
Tim Peters603c6832001-11-05 02:45:59 +0000307# Import Library for Using the Python22.dll
308Python22.lib: Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000309 @ Echo Making $@
310 @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
311 @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
312
Tim Peters603c6832001-11-05 02:45:59 +0000313# Small Command-Line Program to Start Interpreter in Python22.dll
314Python.exe: $(PATHOBJ)\Python.obj Python22.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000315 @ Echo Linking $@ As EXE
Guido van Rossume8afe511998-09-28 22:02:40 +0000316 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
317
Tim Peters603c6832001-11-05 02:45:59 +0000318# Small PM-GUI Program to Start Interpreter in Python22.dll
319PythonPM.exe: $(PATHOBJ)\Python.obj Python22.lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000320 @ Echo Linking $@ As EXE
321 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000322
323PGen.exe: $(PGEN) PyCore.lib
324 @ Echo Linking $@ As EXE
325 @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
326
327#######################
328# Miscellaneous Targets
329#######################
330
331# Remove Intermediate Targets but Leave Executable Binaries
332clean:
333 -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
334 -- Del /Q /Y Noise >NUL 2>&1
335 -- Del /Q $(ERRS) >NUL 2>&1
336
337# Remove All Targets, Including Final Binaries
338distclean: clean
Tim Peters603c6832001-11-05 02:45:59 +0000339 -- Del /Q PyCore.lib Python22.lib >NUL 2>&1
340 -- Del /Q Python22.dll Python.exe PGen.exe >NUL 2>&1
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000341
Tim Peters603c6832001-11-05 02:45:59 +0000342release: Python.exe Python22.dll Python22.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000343 -- @Echo Y | copy /U Python.exe D:\EXEs
Tim Peters603c6832001-11-05 02:45:59 +0000344 -- @Echo Y | copy /U Python22.dll D:\DLLs
345 -- @Echo Y | copy /U Python22.lib E:\Tau\Lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000346 -- @Echo Y | copy /U _tkinter.dll D:\Python
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000347
348test:
349 python ..\..\lib\test\regrtest.py
350
351# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
352depend:
353 D:\OpusMake\os2mkmf -c -s
354
355### OPUS MKMF: Do not remove this line! Generated dependencies follow.
356
357_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000358 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000359 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
360 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
361 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
362 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
363 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
364 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
365 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
366 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
367 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
368 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
369
370almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000371 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000372 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
373 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
374 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
375 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
376 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
377 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
378 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
379 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
380 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
381 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
382
383arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
384 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000385 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000386 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
387 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
388 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
389 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
390 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
391 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
392 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
393 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
394 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
395 $(PY_INCLUDE)\tupleobject.h
396
397audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000398 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000399 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
400 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
401 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
402 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
403 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
404 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
405 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
406 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
407 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
408 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
409 $(PY_INCLUDE)\tupleobject.h
410
411binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000412 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000413 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
414 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
415 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
416 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
417 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
418 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
419 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
420 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
421 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
422 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
423
424bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
425 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000426 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
428 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
429 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
430 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
431 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
432 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
433 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
434 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
435 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
436 $(PY_INCLUDE)\tupleobject.h
437
438cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000439 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000440 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
441 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
442 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
443 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
444 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
445 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
446 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
447 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
448 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
449 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
450
451cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
452 $(PY_MODULES)\cgensupport.h $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000453 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000454 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
455 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
456 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
457 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
458 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
459 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
460 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
461 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
462 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
463 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
464
465clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000466 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000467 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
468 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
469 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
470 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
471 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
472 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
473 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
474 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
475 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
476 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
477
478cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
479 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000480 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000481 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
482 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
483 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
484 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
485 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
486 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
487 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
488 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
489 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
490 $(PY_INCLUDE)\tupleobject.h
491
492cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000493 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000494 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
495 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
496 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
497 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
498 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
499 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
500 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
501 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
502 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
503 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
504 $(PY_INCLUDE)\tupleobject.h
505
506cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
507 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000508 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000509 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
510 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
511 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
512 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
513 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
514 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
515 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
516 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
517 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
518 $(PY_INCLUDE)\tupleobject.h
519
520cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000521 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000522 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
523 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
524 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
525 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
526 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
527 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
528 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
529 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
530 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
531 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
532 $(PY_INCLUDE)\tupleobject.h
533
534cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
535 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000536 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000537 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
538 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
539 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
540 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
541 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
542 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
543 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
544 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
545 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
546 $(PY_INCLUDE)\tupleobject.h
547
548dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000549 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000550 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
551 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
552 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
553 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
554 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
555 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
556 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
557 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
558 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
559 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
560
561dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000562 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000563 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
564 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
565 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
566 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
567 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
568 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
569 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
570 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
571 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
572 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
573
574errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000575 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000576 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
577 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
578 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
579 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
580 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
581 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
582 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
583 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
584 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
585 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
586
587errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
588 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000589 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000590 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
591 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
592 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
593 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
594 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
595 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
596 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
597 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
598 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
599 $(PY_INCLUDE)\tupleobject.h
600
601fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
602 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000603 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000604 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
605 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
606 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
607 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
608 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
609 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
610 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
611 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
612 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
613 $(PY_INCLUDE)\tupleobject.h
614
615flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000616 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000617 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
618 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
619 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
620 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
621 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
622 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
623 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
624 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
625 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
626 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
627 $(PY_INCLUDE)\tupleobject.h
628
629fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000630 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000631 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
632 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
633 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
634 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
635 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
636 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
637 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
638 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
639 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
640 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
641
642fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
643 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000644 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000645 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
646 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
647 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
648 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
649 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
650 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
651 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
652 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
653 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
654 $(PY_INCLUDE)\tupleobject.h
655
656fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
657 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000658 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000659 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
660 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
661 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
662 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
663 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
664 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
665 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
666 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
667 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
668 $(PY_INCLUDE)\tupleobject.h
669
670gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000671 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000672 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
673 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
674 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
675 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
676 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
677 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
678 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
679 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
680 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
681 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
682
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000683getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000684
685getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000686 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000687 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
688 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
689 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
690 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
691 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
692 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
693 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
694 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
695 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
696 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
697 $(PY_INCLUDE)\tupleobject.h
698
699glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_MODULES)\cgensupport.h \
700 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000701 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000702 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
703 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
704 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
705 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
706 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
707 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
708 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
709 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
710 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
711 $(PY_INCLUDE)\tupleobject.h
712
713grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000714 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000715 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
716 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
717 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
718 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
719 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
720 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
721 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
722 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
723 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
724 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
725 $(PY_INCLUDE)\tupleobject.h
726
727imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000728 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000729 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
730 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
731 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
732 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
733 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
734 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
735 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
736 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
737 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
738 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
739
740imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000741 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000742 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
743 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
744 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
745 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
746 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
747 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
748 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
749 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
750 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
751 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
752
753main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000754 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000755 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
756 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
757 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
758 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
759 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
760 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
761 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
762 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
763 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
764 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
765
766mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000767 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000768 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
769 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
770 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
771 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
772 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
773 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
774 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
775 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
776 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
777 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
778 $(PY_INCLUDE)\tupleobject.h
779
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000780md5c.obj: pyconfig.h $(PY_MODULES)\md5.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000781
782md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000783 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000784 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
785 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
786 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
787 $(PY_MODULES)\md5.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
788 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
789 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
790 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
791 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
792 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
793 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
794
Tim Peters1ca12962001-12-04 03:18:48 +0000795mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000796 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000797 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000798 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
799 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
800 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
801 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
802 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
803 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
804 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
805 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
806 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
807 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
808
809newmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
810 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000811 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000812 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
813 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
814 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
815 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
816 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
817 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
818 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
819 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
820 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
821 $(PY_INCLUDE)\tupleobject.h
822
823nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
824 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000825 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000826 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
827 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
828 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
829 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
830 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
831 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
832 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
833 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
834 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
835 $(PY_INCLUDE)\tupleobject.h
836
837operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000838 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000839 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
840 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
841 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
842 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
843 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
844 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
845 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
846 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
847 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
848 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
849
850parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
851 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000852 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000853 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
854 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
855 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
856 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
857 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
858 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
859 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
860 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
861 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
862 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
863 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
864
865pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000866 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000867 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
868 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
869 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
870 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
871 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
872 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_MODULES)\pcre-internal.h \
873 $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
874 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
875 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
876 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
877 $(PY_INCLUDE)\tupleobject.h
878
879posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000880 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000881 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
882 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
883 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
884 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
885 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
886 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
887 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
888 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
889 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
890 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
891 $(PY_INCLUDE)\tupleobject.h
892
893posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
894 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000895 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000896 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
897 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
898 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
899 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
900 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
901 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
902 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
903 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
904 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
905 $(PY_INCLUDE)\tupleobject.h
906
907puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000908 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000909 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
910 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
911 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
912 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
913 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
914 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
915 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
916 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
917 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
918 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
919
920pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000921 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000922 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
923 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
924 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
925 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
926 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
927 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
928 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
929 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
930 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
931 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
932 $(PY_INCLUDE)\tupleobject.h
933
934pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000935 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000936 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
937 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h \
938 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
939 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
940 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
941 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
942 $(PY_MODULES)\pcre-internal.h $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h \
943 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
944 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
945 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
946 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
947
948readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000949 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000950 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
951 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
952 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
953 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
954 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
955 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
956 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
957 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
958 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
959 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
960
961regexmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
962 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000963 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000964 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
965 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
966 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
967 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
968 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
969 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
970 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
971 $(PY_INCLUDE)\rangeobject.h $(PY_MODULES)\regexpr.h $(PY_INCLUDE)\sliceobject.h \
972 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
973 $(PY_INCLUDE)\tupleobject.h
974
Tim Peters1ca12962001-12-04 03:18:48 +0000975regexpr.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000976 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000977 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000978 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
979 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
980 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
981 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
982 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
983 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
984 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
985 $(PY_INCLUDE)\rangeobject.h $(PY_MODULES)\regexpr.h $(PY_INCLUDE)\sliceobject.h \
986 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
987 $(PY_INCLUDE)\tupleobject.h
988
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000989resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
990 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000991 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000992 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
993 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
994 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
995 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
996 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
997 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
998 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
999 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1000 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1001 $(PY_INCLUDE)\tupleobject.h
1002
1003rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1004 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001005 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001006 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1007 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1008 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1009 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1010 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1011 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1012 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1013 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1014 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1015 $(PY_INCLUDE)\tupleobject.h
1016
1017rotormodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1018 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001019 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001020 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1021 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1022 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1023 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1024 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1025 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1026 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1027 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1028 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1029 $(PY_INCLUDE)\tupleobject.h
1030
1031selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1032 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001033 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001034 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1035 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1036 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1037 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1038 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
1039 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1040 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1041 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1042 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1043 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1044
1045sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001046 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001047 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1048 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1049 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1050 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1051 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1052 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1053 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1054 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1055 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1056 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1057
1058signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1059 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001060 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001061 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1062 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1063 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1064 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1065 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1066 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1067 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1068 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1069 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1070 $(PY_INCLUDE)\tupleobject.h
1071
1072socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
1073 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001074 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001075 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1076 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1077 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1078 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1079 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1080 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
1081 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1082 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1083 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1084 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1085 $(PY_INCLUDE)\tupleobject.h
1086
1087soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001088 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001089 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1090 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1091 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1092 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1093 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1094 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1095 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1096 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1097 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1098 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1099
1100stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1101 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001102 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001103 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1104 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1105 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1106 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1107 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1108 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1109 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1110 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1111 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1112 $(PY_INCLUDE)\tupleobject.h
1113
1114stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1115 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001116 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001117 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1118 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1119 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1120 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1121 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1122 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1123 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1124 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1125 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1126 $(PY_INCLUDE)\tupleobject.h
1127
1128structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1129 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001130 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001131 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1132 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1133 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1134 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1135 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1136 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1137 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1138 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1139 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1140 $(PY_INCLUDE)\tupleobject.h
1141
1142sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
1143 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001144 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001145 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1146 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1147 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1148 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1149 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1150 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1151 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1152 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1153 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1154 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1155
1156svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
1157 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001158 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001159 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1160 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1161 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1162 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1163 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1164 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1165 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1166 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1167 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1168 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h \
1169 $(PY_MODULES)\yuv.h
1170
1171syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1172 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001173 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001174 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1175 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1176 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1177 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1178 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1179 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1180 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1181 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1182 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
1183 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1184
1185termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001186 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001187 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1188 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1189 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1190 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1191 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1192 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1193 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1194 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1195 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1196 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1197
1198threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1199 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001200 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001201 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1202 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1203 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1204 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1205 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1206 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1207 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1208 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1209 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
1210 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1211
1212timemodule.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)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1220 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1221 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1222 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1223 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1224 $(PY_INCLUDE)\tupleobject.h
1225
1226timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1227 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001228 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001229 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1230 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1231 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1232 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1233 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1234 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1235 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1236 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1237 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_MODULES)\timing.h \
1238 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1239
1240xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001241 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001242 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1243 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1244 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1245 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1246 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1247 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1248 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1249 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1250 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1251 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1252
1253yuvconvert.obj: $(PY_MODULES)\yuv.h
1254
1255zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001256 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001257 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1258 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1259 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1260 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1261 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1262 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1263 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1264 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1265 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1266 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1267
1268abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001269 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001270 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1271 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1272 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1273 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1274 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1275 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1276 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1277 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1278 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1279 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1280
1281classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1282 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001283 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001284 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1285 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1286 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1287 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1288 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1289 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1290 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1291 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1292 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1293 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1294
1295cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001296 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001297 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1298 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1299 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1300 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1301 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1302 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1303 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1304 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1305 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1306 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1307
1308complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1309 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001310 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001311 $(PY_INCLUDE)\floatobject.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)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1316 $(PY_INCLUDE)\objimpl.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)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1320 $(PY_INCLUDE)\tupleobject.h
1321
1322dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001323 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001324 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1325 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1326 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1327 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1328 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1329 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1330 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1331 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1332 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1333 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1334
1335fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001336 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001337 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1338 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1339 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1340 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1341 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1342 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1343 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1344 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1345 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1346 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1347 $(PY_INCLUDE)\tupleobject.h
1348
1349floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1350 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001351 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001352 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1353 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1354 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1355 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1356 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1357 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1358 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1359 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1360 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1361 $(PY_INCLUDE)\tupleobject.h
1362
1363frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1364 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001365 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001366 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1367 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1368 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1369 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1370 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1371 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1372 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1373 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1374 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1375 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1376 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1377
1378funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1379 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001380 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001381 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1382 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1383 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1384 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1385 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1386 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1387 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1388 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1389 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1390 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1391
1392intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001393 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001394 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1395 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1396 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1397 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1398 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1399 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1400 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1401 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1402 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1403 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1404
1405listobject.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
Tim Peters1ca12962001-12-04 03:18:48 +00001418longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001419 $(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)\longintrepr.h $(PY_INCLUDE)\longobject.h \
1424 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1425 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1426 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1427 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1428 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1429 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1430 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1431 $(PY_INCLUDE)\tupleobject.h
1432
1433methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1434 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001435 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001436 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1437 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1438 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1439 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1440 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1441 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1442 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1443 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1444 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1445 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1446
1447moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1448 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001449 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001450 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1451 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1452 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1453 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1454 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1455 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1456 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1457 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1458 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1459 $(PY_INCLUDE)\tupleobject.h
1460
1461object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001462 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001463 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1464 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1465 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1466 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1467 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1468 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1469 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1470 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1471 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1472 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1473
1474rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1475 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001476 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001477 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1478 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1479 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1480 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1481 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1482 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1483 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1484 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1485 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1486 $(PY_INCLUDE)\tupleobject.h
1487
1488sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1489 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001490 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001491 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1492 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1493 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1494 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1495 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1496 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1497 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1498 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1499 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1500 $(PY_INCLUDE)\tupleobject.h
1501
1502stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1503 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001504 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001505 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1506 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1507 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1508 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1509 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1510 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1511 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1512 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1513 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1514 $(PY_INCLUDE)\tupleobject.h
1515
1516tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1517 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001518 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001519 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1520 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1521 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1522 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1523 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1524 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1525 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1526 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1527 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1528 $(PY_INCLUDE)\tupleobject.h
1529
1530typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001531 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001532 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1533 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1534 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1535 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1536 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1537 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1538 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1539 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1540 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1541 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1542
1543xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001544 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001545 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1546 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1547 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1548 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1549 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1550 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1551 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1552 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1553 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1554 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1555
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001556acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001557 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1558 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1559 $(PY_INCLUDE)\token.h
1560
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001561bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001562 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1563
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001564firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001565 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1566 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1567
Tim Peters1ca12962001-12-04 03:18:48 +00001568grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001569 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1570 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1571
Tim Peters1ca12962001-12-04 03:18:48 +00001572grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001573 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1574 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1575
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001576intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001577 $(PY_INCLUDE)\myproto.h
1578
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001579listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001580 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1581 $(PY_INCLUDE)\token.h
1582
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001583metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001584 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1585 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1586
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001587myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001588 $(PY_INCLUDE)\myproto.h
1589
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001590node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001591 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1592
Tim Peters1ca12962001-12-04 03:18:48 +00001593parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001594 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1595 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
1596 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1597
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001598parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001599 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1600 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
1601 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
1602 $(PY_PARSER)\tokenizer.h
1603
Tim Peters1ca12962001-12-04 03:18:48 +00001604pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001605 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1606 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1607 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1608
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001609pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001610 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1611 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1612 $(PY_INCLUDE)\pydebug.h
1613
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001614printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001615 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1616 $(PY_INCLUDE)\pydebug.h
1617
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001618tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001619 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1620 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
1621
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001622atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001623
1624bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1625 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001626 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001627 $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1628 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1629 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1630 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1631 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1632 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
1633 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1634 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1635 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1636 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1637 $(PY_INCLUDE)\tupleobject.h
1638
1639ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1640 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001641 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001642 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1643 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1644 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1645 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1646 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1647 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1648 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1649 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1650 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1651 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1652 $(PY_INCLUDE)\tupleobject.h
1653
1654compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1655 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001656 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001657 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
1658 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1659 $(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)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1663 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1664 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1665 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1666 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1667 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
1668 $(PY_INCLUDE)\tupleobject.h
1669
1670errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001671 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001672 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1673 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1674 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1675 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1676 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1677 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1678 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1679 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1680 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1681 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1682
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001683fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001684
1685frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001686 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001687 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1688 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1689 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1690 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1691 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1692 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1693 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1694 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1695 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1696 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1697
1698frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001699 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001700 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1701 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1702 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1703 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1704 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1705 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1706 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1707 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1708 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1709 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1710
1711getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001712 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001713 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1714 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1715 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1716 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1717 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1718 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1719 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1720 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1721 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1722 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1723
1724getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1725 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001726 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001727 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1728 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1729 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1730 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1731 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1732 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1733 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1734 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1735 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1736 $(PY_INCLUDE)\tupleobject.h
1737
1738getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1739 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001740 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001741 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1742 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1743 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1744 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1745 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1746 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1747 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1748 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1749 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1750 $(PY_INCLUDE)\tupleobject.h
1751
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001752getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001753
1754getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1755 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001756 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001757 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1758 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1759 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1760 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1761 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1762 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1763 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1764 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1765 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1766 $(PY_INCLUDE)\tupleobject.h
1767
1768getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001769 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001770 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1771 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1772 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1773 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1774 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1775 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
1776 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1777 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1778 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1779 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1780 $(PY_INCLUDE)\tupleobject.h
1781
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001782graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001783 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1784 $(PY_INCLUDE)\pydebug.h
1785
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001786hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001787
1788import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1789 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001790 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001791 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1792 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
1793 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1794 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1795 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1796 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1797 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1798 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1799 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1800 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1801 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1802
1803importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001804 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001805 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1806 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
1807 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1808 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1809 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1810 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1811 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1812 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1813 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1814 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1815 $(PY_INCLUDE)\tupleobject.h
1816
1817marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1818 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001819 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001820 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1821 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1822 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1823 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1824 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1825 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1826 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1827 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1828 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1829 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1830
1831modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001832 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001833 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1834 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1835 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1836 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1837 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1838 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1839 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1840 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1841 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1842 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1843
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001844mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001845
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001846pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001847
1848pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001849 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001850 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1851 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1852 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1853 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1854 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1855 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1856 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1857 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1858 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1859 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1860
1861pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
1862 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001863 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001864 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
1865 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
1866 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1867 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1868 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1869 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1870 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1871 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1872 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1873 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1874 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1875 $(PY_INCLUDE)\tupleobject.h
1876
1877sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001878 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001879 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1880 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1881 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1882 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1883 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1884 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1885 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1886 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1887 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1888 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1889
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001890strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001891
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001892strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001893
1894structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1895 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001896 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001897 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1898 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1899 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1900 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1901 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1902 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1903 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1904 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1905 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1906 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1907
1908sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001909 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001910 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1911 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1912 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1913 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1914 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1915 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1916 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1917 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1918 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1919 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1920 $(PY_INCLUDE)\tupleobject.h
1921
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001922thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001923
1924traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1925 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001926 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001927 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
1928 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1929 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1930 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1931 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1932 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1933 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1934 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1935 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1936 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1937 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1938