blob: 93cae7356a5174753f6fd8fb95e4d09fe1a3fcaf [file] [log] [blame]
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001######################################################################
2#
3# Top-Level Makefile for Building Python for OS/2
4#
5# This makefile was developed for use with IBM's VisualAge C/C++
6# for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
7# version 4.0 of the NMAKE tool that comes with that package.
8#
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +00009# The output of the build is a largish Python23.DLL containing the
Guido van Rossum50d4cc21997-11-22 21:59:45 +000010# essential modules of Python and a small Python.exe program to start
11# the interpreter. When embedding Python within another program, only
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +000012# Python23.DLL is needed.
Guido van Rossum50d4cc21997-11-22 21:59:45 +000013#
14# These two binaries can be statically linked with the VisualAge C/C++
15# runtime library (producing larger binaries), or dynamically linked
16# to make smaller ones that require the compiler to be installed on
17# any system Python is used on. Review the /Gd+ compiler option for
18# how to do this.
19#
20# NOTE: IBM's NMAKE 4.0 is rather dumb, requiring this makefile to
21# be much more complicated than necessary. I use OpusMAKE
22# myself for a much more powerful MAKE tool but not everyone
23# wishes to buy it. However, as a result I didn't hook in
24# the dependencies on the include files as NMAKE has no easy
25# way to do this without explicitly spelling it all out.
26#
27# History (Most Recent First)
28#
Guido van Rossume8afe511998-09-28 22:02:40 +000029# 26-Sep-98 jrr Retested and adjusted for building w/Python 1.5.2a1
Guido van Rossum50d4cc21997-11-22 21:59:45 +000030# 20-Nov-97 jrr Cleaned Up for Applying to Distribution
31# 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4
32# 03-Aug-96 jrr Original for Use with Python 1.4 Release
33#
34######################################################################
35
36###################
37# Places and Things
38###################
39PY_MODULES = ..\..\Modules
40PY_OBJECTS = ..\..\Objects
41PY_PARSER = ..\..\Parser
42PY_PYTHON = ..\..\Python
43PY_INCLUDE = ..\..\Include
44PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
45
46# File to Collect Wordy Compiler Output re Errors
47ERRS = make.out
48
49# Where to Find the IBM TCP/IP Socket Includes and Libraries
50OS2TCPIP = C:\MPTN
51
Guido van Rossume8afe511998-09-28 22:02:40 +000052# Where to Find the Tcl/Tk Base Directory for Libs/Includes
53TCLTK = D:\TclTk
54TCLBASE = D:\Tcl7.6\OS2
55TKBASE = D:\Tk4.2\OS2
56
Guido van Rossum50d4cc21997-11-22 21:59:45 +000057# Where to Put the .OBJ Files, To Keep Them Out of the Way
58PATHOBJ = obj
59
60# Search Path for Include Files
Guido van Rossume8afe511998-09-28 22:02:40 +000061PROJINCLUDE = .;$(TCLBASE);$(TKBASE);$(OS2TCPIP)\Include;$(PY_INCLUDES)
Guido van Rossum50d4cc21997-11-22 21:59:45 +000062
63# Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
64MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
65
66#.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
67#.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
Tim Peters603c6832001-11-05 02:45:59 +000068OTHERLIBS = so32dll.lib tcp32dll.lib # Tcl76.lib Tk42.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +000069
70#################
71# Inference Rules
72#################
73{$(PY_MODULES)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
74 @ Echo Compiling $<
75 @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
76
77{$(PY_OBJECTS)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
78 @ Echo Compiling $<
79 @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
80
81{$(PY_PARSER)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
82 @ Echo Compiling $<
83 @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
84
85{$(PY_PYTHON)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
86 @ Echo Compiling $<
87 @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
88
89.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
90 @ Echo Compiling $<
91 @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
92
93###################
94# Python Subsystems
95###################
96
97# PYTHON is the central core, containing the builtins and interpreter.
98PYTHON = \
99 $(PATHOBJ)\BltinModule.obj \
100 $(PATHOBJ)\CEval.obj \
101 $(PATHOBJ)\Compile.obj \
102 $(PATHOBJ)\Errors.obj \
103 $(PATHOBJ)\Frozen.obj \
104 $(PATHOBJ)\Getargs.obj \
105 $(PATHOBJ)\GetCompiler.obj \
106 $(PATHOBJ)\GetCopyright.obj \
107 $(PATHOBJ)\GetMTime.obj \
108 $(PATHOBJ)\GetOpt.obj \
109 $(PATHOBJ)\GetPlatform.obj \
110 $(PATHOBJ)\GetVersion.obj \
111 $(PATHOBJ)\GramInit.obj \
112 $(PATHOBJ)\Import.obj \
113 $(PATHOBJ)\ImportDL.obj \
114 $(PATHOBJ)\Marshal.obj \
115 $(PATHOBJ)\ModSupport.obj \
116 $(PATHOBJ)\MyStrtoul.obj \
117 $(PATHOBJ)\PyState.obj \
118 $(PATHOBJ)\PythonRun.obj \
119 $(PATHOBJ)\StructMember.obj \
120 $(PATHOBJ)\SysModule.obj \
121 $(PATHOBJ)\Thread.obj \
122 $(PATHOBJ)\TraceBack.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000123 $(PATHOBJ)\FrozenMain.obj \
124 $(PATHOBJ)\exceptions.obj \
125 $(PATHOBJ)\symtable.obj \
126 $(PATHOBJ)\codecs.obj \
127 $(PATHOBJ)\future.obj \
128 $(PATHOBJ)\dynload_os2.obj \
129 $(PATHOBJ)\mysnprintf.obj \
130 $(PATHOBJ)\iterobject.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000131
132# Python's Internal Parser
133PARSER = \
134 $(PATHOBJ)\Acceler.obj \
135 $(PATHOBJ)\Grammar1.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000136 $(PATHOBJ)\ListNode.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000137 $(PATHOBJ)\Node.obj \
138 $(PATHOBJ)\Parser.obj \
139 $(PATHOBJ)\ParseTok.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000140 $(PATHOBJ)\BitSet.obj \
141 $(PATHOBJ)\MetaGrammar.obj \
142 $(PATHOBJ)\Tokenizer.obj \
143 $(PATHOBJ)\MyReadline.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000144
145# Python Object Types
146OBJECTS = \
147 $(PATHOBJ)\Abstract.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000148 $(PATHOBJ)\BoolObject.obj \
149 $(PATHOBJ)\BufferObject.obj \
150 $(PATHOBJ)\CellObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000151 $(PATHOBJ)\ClassObject.obj \
152 $(PATHOBJ)\CObject.obj \
153 $(PATHOBJ)\ComplexObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000154 $(PATHOBJ)\DescrObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000155 $(PATHOBJ)\DictObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000156 $(PATHOBJ)\EnumObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000157 $(PATHOBJ)\FileObject.obj \
158 $(PATHOBJ)\FloatObject.obj \
159 $(PATHOBJ)\FrameObject.obj \
160 $(PATHOBJ)\FuncObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000161 $(PATHOBJ)\IterObject.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000162 $(PATHOBJ)\ListObject.obj \
163 $(PATHOBJ)\LongObject.obj \
164 $(PATHOBJ)\MethodObject.obj \
165 $(PATHOBJ)\ModuleObject.obj \
166 $(PATHOBJ)\Object.obj \
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +0000167 $(PATHOBJ)\ObMalloc.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000168 $(PATHOBJ)\RangeObject.obj \
169 $(PATHOBJ)\SliceObject.obj \
170 $(PATHOBJ)\StringObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000171 $(PATHOBJ)\StructSeq.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000172 $(PATHOBJ)\TupleObject.obj \
Tim Peters603c6832001-11-05 02:45:59 +0000173 $(PATHOBJ)\TypeObject.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000174 $(PATHOBJ)\UnicodeObject.obj \
175 $(PATHOBJ)\UnicodeCType.obj \
176 $(PATHOBJ)\WeakrefObject.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000177
178# Extension Modules (Built-In or as Separate DLLs)
179MODULES = \
180 $(PATHOBJ)\ArrayModule.obj \
181 $(PATHOBJ)\BinAscii.obj \
182 $(PATHOBJ)\CMathModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000183 $(PATHOBJ)\cStringIO.obj \
184 $(PATHOBJ)\ErrnoModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000185 $(PATHOBJ)\GCModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000186 $(PATHOBJ)\GetBuildInfo.obj \
187 $(PATHOBJ)\GetPathP.obj \
188 $(PATHOBJ)\Main.obj \
189 $(PATHOBJ)\MathModule.obj \
190 $(PATHOBJ)\MD5c.obj \
191 $(PATHOBJ)\MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000192 $(PATHOBJ)\Operator.obj \
Guido van Rossuma34c3131997-12-05 22:07:14 +0000193 $(PATHOBJ)\PCREModule.obj \
194 $(PATHOBJ)\PyPCRE.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000195 $(PATHOBJ)\PosixModule.obj \
196 $(PATHOBJ)\RegexModule.obj \
197 $(PATHOBJ)\RegExpr.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000198 $(PATHOBJ)\SelectModule.obj \
199 $(PATHOBJ)\SignalModule.obj \
200 $(PATHOBJ)\SocketModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000201 $(PATHOBJ)\StropModule.obj \
202 $(PATHOBJ)\StructModule.obj \
203 $(PATHOBJ)\TimeModule.obj \
204 $(PATHOBJ)\ThreadModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000205 $(PATHOBJ)\YUVConvert.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000206
207# Standalone Parser Generator Program (Shares Some of Python's Modules)
208PGEN = \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000209 $(PATHOBJ)\PGen.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000210 $(PATHOBJ)\PGenMain.obj \
211 $(PATHOBJ)\MySNPrintf.obj \
212 $(PATHOBJ)\Tokenizer_Pgen.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000213 $(PATHOBJ)\PrintGrammar.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000214 $(PATHOBJ)\Grammar.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000215 $(PATHOBJ)\FirstSets.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000216
217##################
218# Macros and Flags
219##################
220_BASE = /Q /W2 /I$(PROJINCLUDE)
221 # /Q = Omit IBM Copyright
222 # /W2 = Show Warnings/Errors Only
223
Guido van Rossuma34c3131997-12-05 22:07:14 +0000224_GEN = /G4 /Gm /Gd-
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000225 # /G4 = Generate Code for 486 (Use 386 for Debugger)
226 # /Gm = Use Multithread Runtime
227 # /Gd = Dynamically Load Runtime
Guido van Rossume8afe511998-09-28 22:02:40 +0000228 # /Ms = Use _System Calling Convention (vs _Optlink)
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000229 # (to allow non-VAC++ code to call into Python23.dll)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000230
231_OPT = /O /Gl
232 # /O = Enable Speed-Optimizations
233 # /Ol = Pass Code Thru Intermediate Linker
234 # /Gu = Advise Linker All Ext Data is ID'd
235 # /Gl = Have Linker Remove Unused Fns
236
Guido van Rossuma34c3131997-12-05 22:07:14 +0000237_DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
238 # /Wpro= Generate Compiler Warnings re Missing Prototypes
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000239 # /Ti = Embed Debugger/Analyzer Recs
240 # /Tm = Enable Debug Memory Fns
241 # /Tx = Request Full Dump Upon Exception
242 # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
243 # /DUSE_SOCKET = Enables Building In of Socket API
244
245_OUT =
246 # /Fb = Embed Browser Recs
247 # /Gh = Generate Code for Profiler Hooks
248 # /Fl = Output C/C++ Listing Files
249 # /Lf = Provide Full (Detailed) Listing Files
250 # /Fm. = Output Linker Map File
251 # /Ft. = Output C++ Template Resolution Files
252
253_MAP = /FmNoise\$(@R).map
254
255_DLL = /Ge-
256_EXE = /Ge
257 # /Ge = Create an EXE, not DLL
258
259CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
260
261###################
262# Primary Target(s)
263###################
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000264All: obj noise PyCore.lib Python23.lib PGen.exe \
265 Python.exe PythonPM.exe Python23.dll # _tkinter.dll
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000266
267Modules: $(MODULES)
268Objects: $(OBJECTS)
269Parser: $(PARSER)
270Python: $(PYTHON)
271
272# Directory to Keep .OBJ Files Out of the Way
273obj:
274 @-mkdir obj >>NUL
275
276# Directory to Keep .MAP and Such Text Files Out of the Way
277noise:
278 @-mkdir noise >>NUL
279
280##############
281#
282##############
283
Guido van Rossume8afe511998-09-28 22:02:40 +0000284# Python Extension DLL: Tcl/Tk Interface
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000285#_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
Tim Peters603c6832001-11-05 02:45:59 +0000286# @ Echo Linking $@ As DLL
287# @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000288
Tim Peters603c6832001-11-05 02:45:59 +0000289#$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
290# @ Echo Compiling $**
291# @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000292
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000293# Object Library of All Essential Python Routines
294PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
295 @ Echo Adding Updated Object Files to Link Library $@
296 @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
297
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000298Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000299 @ Echo Linking $@ As DLL
300 @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Tim Peters603c6832001-11-05 02:45:59 +0000301# @ Echo Compressing $@ with LxLite
302# @ lxlite $@
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000303
304# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
305$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
306 @ Echo Compiling $**
307 @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
308
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000309# Import Library for Using the Python23.dll
310Python23.lib: Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000311 @ Echo Making $@
312 @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
313 @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
314
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000315# Small Command-Line Program to Start Interpreter in Python23.dll
316Python.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000317 @ Echo Linking $@ As EXE
Guido van Rossume8afe511998-09-28 22:02:40 +0000318 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
319
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000320# Small PM-GUI Program to Start Interpreter in Python23.dll
321PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000322 @ Echo Linking $@ As EXE
323 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000324
325PGen.exe: $(PGEN) PyCore.lib
326 @ Echo Linking $@ As EXE
327 @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
328
329#######################
330# Miscellaneous Targets
331#######################
332
333# Remove Intermediate Targets but Leave Executable Binaries
334clean:
335 -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
336 -- Del /Q /Y Noise >NUL 2>&1
337 -- Del /Q $(ERRS) >NUL 2>&1
338
339# Remove All Targets, Including Final Binaries
340distclean: clean
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000341 -- Del /Q PyCore.lib Python23.lib >NUL 2>&1
342 -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000343
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000344release: Python.exe Python23.dll Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000345 -- @Echo Y | copy /U Python.exe D:\EXEs
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000346 -- @Echo Y | copy /U Python23.dll D:\DLLs
347 -- @Echo Y | copy /U Python23.lib E:\Tau\Lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000348 -- @Echo Y | copy /U _tkinter.dll D:\Python
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000349
350test:
351 python ..\..\lib\test\regrtest.py
352
353# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
354depend:
355 D:\OpusMake\os2mkmf -c -s
356
357### OPUS MKMF: Do not remove this line! Generated dependencies follow.
358
359_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000360 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000361 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
362 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
363 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
364 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
365 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
366 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
367 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
368 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
369 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
370 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
371
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000372arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
373 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000374 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000375 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
376 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
377 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
378 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
379 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
380 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
381 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
382 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
383 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
384 $(PY_INCLUDE)\tupleobject.h
385
386audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000387 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000388 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
389 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
390 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
391 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
392 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
393 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
394 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
395 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
396 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
397 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
398 $(PY_INCLUDE)\tupleobject.h
399
400binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000401 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000402 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
403 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
404 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
405 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
406 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
407 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
408 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
409 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
410 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
411 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
412
413bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
414 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000415 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000416 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
417 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
418 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
419 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
420 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
421 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
422 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
423 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
424 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
425 $(PY_INCLUDE)\tupleobject.h
426
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000427cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
428 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000429 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000430 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
431 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
432 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
433 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
434 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
435 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
436 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
437 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
438 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
439 $(PY_INCLUDE)\tupleobject.h
440
441cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000442 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000443 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
444 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
445 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
446 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
447 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
448 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
449 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
450 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
451 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
452 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
453 $(PY_INCLUDE)\tupleobject.h
454
455cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
456 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000457 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000458 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
459 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
460 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
461 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
462 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
463 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
464 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
465 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
466 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
467 $(PY_INCLUDE)\tupleobject.h
468
469cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000470 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000471 $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
472 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
473 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
474 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
475 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
476 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
477 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
478 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
479 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
480 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
481 $(PY_INCLUDE)\tupleobject.h
482
483cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
484 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000485 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000486 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
487 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
488 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
489 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
490 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
491 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
492 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
493 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
494 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
495 $(PY_INCLUDE)\tupleobject.h
496
497dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000498 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000499 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
500 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
501 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
502 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
503 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
504 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
505 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
506 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
507 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
508 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
509
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000510errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000511 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000512 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
513 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
514 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
515 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
516 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
517 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
518 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
519 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
520 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
521 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
522
523errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
524 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000525 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000526 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
527 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
528 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
529 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
530 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
531 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
532 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
533 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
534 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
535 $(PY_INCLUDE)\tupleobject.h
536
537fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
538 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000539 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000540 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
541 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
542 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
543 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
544 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
545 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
546 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
547 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
548 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
549 $(PY_INCLUDE)\tupleobject.h
550
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000551fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
552 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000553 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000554 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
555 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
556 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
557 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
558 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
559 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
560 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
561 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
562 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
563 $(PY_INCLUDE)\tupleobject.h
564
565fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
566 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000567 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000568 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
569 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
570 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
571 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
572 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
573 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
574 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
575 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
576 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
577 $(PY_INCLUDE)\tupleobject.h
578
579gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000580 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000581 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
582 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
583 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
584 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
585 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
586 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
587 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
588 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
589 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
590 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
591
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000592getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000593
594getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000595 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000596 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
597 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
598 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
599 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
600 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
601 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
602 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
603 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
604 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
605 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
606 $(PY_INCLUDE)\tupleobject.h
607
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000608grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000609 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000610 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
611 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
612 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
613 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
614 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
615 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
616 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
617 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
618 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
619 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
620 $(PY_INCLUDE)\tupleobject.h
621
622imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000623 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000624 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
625 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
626 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
627 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
628 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
629 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
630 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
631 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
632 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
633 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
634
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000635main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000636 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000637 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
638 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
639 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
640 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
641 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
642 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
643 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
644 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
645 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
646 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
647
648mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000649 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000650 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
651 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
652 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
653 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
654 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
655 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
656 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
657 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
658 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
659 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
660 $(PY_INCLUDE)\tupleobject.h
661
Tim Peters1ca12962001-12-04 03:18:48 +0000662mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000663 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000664 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000665 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
666 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
667 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
668 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
669 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
670 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
671 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
672 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
673 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
674 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
675
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000676nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
677 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000678 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000679 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
680 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
681 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
682 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
683 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
684 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
685 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
686 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
687 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
688 $(PY_INCLUDE)\tupleobject.h
689
690operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000691 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000692 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
693 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
694 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
695 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
696 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
697 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
698 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
699 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
700 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
701 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
702
703parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
704 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000705 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000706 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
707 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
708 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
709 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
710 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
711 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
712 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
713 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
714 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
715 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
716 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
717
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000718posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000719 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000720 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
721 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
722 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
723 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
724 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
725 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
726 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
727 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
728 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
729 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
730 $(PY_INCLUDE)\tupleobject.h
731
732posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
733 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000734 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000735 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
736 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
737 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
738 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
739 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
740 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
741 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
742 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
743 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
744 $(PY_INCLUDE)\tupleobject.h
745
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000746pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000747 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000748 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
749 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
750 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
751 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
752 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
753 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
754 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
755 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
756 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
757 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
758 $(PY_INCLUDE)\tupleobject.h
759
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000760readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000761 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000762 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
763 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
764 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
765 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
766 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
767 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
768 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
769 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
770 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
771 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
772
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000773resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
774 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000775 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000776 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
777 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
778 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
779 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
780 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
781 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
782 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
783 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
784 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
785 $(PY_INCLUDE)\tupleobject.h
786
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000787selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
788 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000789 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000790 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
791 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
792 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
793 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
794 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
795 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
796 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
797 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
798 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
799 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
800
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000801signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
802 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000803 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000804 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
805 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
806 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
807 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
808 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
809 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
810 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
811 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
812 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
813 $(PY_INCLUDE)\tupleobject.h
814
815socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
816 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000817 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000818 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
819 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
820 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
821 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
822 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
823 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
824 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
825 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
826 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
827 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
828 $(PY_INCLUDE)\tupleobject.h
829
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000830structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
831 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000832 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000833 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
834 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
835 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
836 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
837 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
838 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
839 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
840 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
841 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
842 $(PY_INCLUDE)\tupleobject.h
843
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000844syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
845 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000846 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000847 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
848 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
849 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
850 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
851 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
852 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
853 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
854 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
855 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
856 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
857
858termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000859 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000860 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
861 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
862 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
863 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
864 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
865 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
866 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
867 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
868 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
869 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
870
871threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
872 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000873 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000874 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
875 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
876 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
877 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
878 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
879 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
880 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
881 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
882 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
883 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
884
885timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000886 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000887 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
888 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
889 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
890 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
891 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
892 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
893 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
894 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
895 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
896 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
897 $(PY_INCLUDE)\tupleobject.h
898
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000899xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000900 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000901 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
902 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
903 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
904 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
905 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
906 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
907 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
908 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
909 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
910 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
911
912yuvconvert.obj: $(PY_MODULES)\yuv.h
913
914zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000915 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000916 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
917 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
918 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
919 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
920 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
921 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
922 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
923 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
924 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
925 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
926
927abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000928 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000929 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
930 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
931 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
932 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
933 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
934 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
935 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
936 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
937 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
938 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
939
940classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
941 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000942 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000943 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
944 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
945 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
946 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
947 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
948 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
949 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
950 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
951 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
952 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
953
954cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000955 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000956 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
957 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
958 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
959 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
960 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
961 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
962 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
963 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
964 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
965 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
966
967complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
968 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000969 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000970 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
971 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
972 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
973 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
974 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
975 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
976 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
977 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
978 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
979 $(PY_INCLUDE)\tupleobject.h
980
981dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000982 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000983 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
984 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
985 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
986 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
987 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
988 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
989 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
990 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
991 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
992 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
993
994fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000995 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000996 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
997 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
998 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
999 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1000 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1001 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1002 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1003 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1004 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1005 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1006 $(PY_INCLUDE)\tupleobject.h
1007
1008floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1009 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001010 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001011 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1012 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1013 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1014 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1015 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1016 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1017 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1018 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1019 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1020 $(PY_INCLUDE)\tupleobject.h
1021
1022frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1023 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001024 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001025 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1026 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1027 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1028 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1029 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1030 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1031 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1032 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1033 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1034 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1035 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1036
1037funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1038 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001039 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001040 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1041 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1042 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1043 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1044 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1045 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1046 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1047 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1048 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1049 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1050
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001051listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001052 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001053 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1054 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1055 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1056 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1057 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1058 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1059 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1060 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1061 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1062 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1063
Tim Peters1ca12962001-12-04 03:18:48 +00001064longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001065 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001066 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001067 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1068 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1069 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
1070 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1071 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1072 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1073 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1074 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1075 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1076 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1077 $(PY_INCLUDE)\tupleobject.h
1078
1079methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1080 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001081 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001082 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1083 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1084 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1085 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1086 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1087 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1088 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1089 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1090 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1091 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1092
1093moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1094 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001095 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001096 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1097 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1098 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1099 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1100 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1101 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1102 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1103 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1104 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1105 $(PY_INCLUDE)\tupleobject.h
1106
1107object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001108 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001109 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1110 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1111 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1112 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1113 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1114 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1115 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1116 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1117 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1118 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1119
1120rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1121 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001122 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001123 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1124 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1125 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1126 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1127 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1128 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1129 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1130 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1131 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1132 $(PY_INCLUDE)\tupleobject.h
1133
1134sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1135 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001136 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001137 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1138 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1139 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1140 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1141 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1142 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1143 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1144 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1145 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1146 $(PY_INCLUDE)\tupleobject.h
1147
1148stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1149 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001150 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001151 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1152 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1153 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1154 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1155 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1156 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1157 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1158 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1159 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1160 $(PY_INCLUDE)\tupleobject.h
1161
1162tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1163 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001164 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001165 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1166 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1167 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1168 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1169 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1170 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1171 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1172 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1173 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1174 $(PY_INCLUDE)\tupleobject.h
1175
1176typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001177 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001178 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1179 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1180 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1181 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1182 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1183 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1184 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1185 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1186 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1187 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1188
1189xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001190 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001191 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1192 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1193 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1194 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1195 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1196 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1197 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1198 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1199 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1200 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1201
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001202acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001203 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1204 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1205 $(PY_INCLUDE)\token.h
1206
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001207bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001208 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1209
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001210firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001211 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1212 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1213
Tim Peters1ca12962001-12-04 03:18:48 +00001214grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001215 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1216 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1217
Tim Peters1ca12962001-12-04 03:18:48 +00001218grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001219 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1220 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1221
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001222intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001223 $(PY_INCLUDE)\myproto.h
1224
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001225listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001226 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1227 $(PY_INCLUDE)\token.h
1228
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001229metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001230 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1231 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1232
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001233myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001234 $(PY_INCLUDE)\myproto.h
1235
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001236node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001237 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1238
Tim Peters1ca12962001-12-04 03:18:48 +00001239parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001240 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1241 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
1242 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1243
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001244parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001245 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1246 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
1247 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
1248 $(PY_PARSER)\tokenizer.h
1249
Tim Peters1ca12962001-12-04 03:18:48 +00001250pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001251 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1252 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1253 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1254
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001255pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001256 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1257 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1258 $(PY_INCLUDE)\pydebug.h
1259
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001260printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001261 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1262 $(PY_INCLUDE)\pydebug.h
1263
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001264tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001265 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1266 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
1267
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001268atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001269
1270bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1271 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001272 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001273 $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1274 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1275 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1276 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1277 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1278 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
1279 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1280 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1281 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1282 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1283 $(PY_INCLUDE)\tupleobject.h
1284
1285ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1286 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001287 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001288 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1289 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1290 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1291 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1292 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1293 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1294 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1295 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1296 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1297 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1298 $(PY_INCLUDE)\tupleobject.h
1299
1300compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1301 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001302 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001303 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
1304 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1305 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1306 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1307 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1308 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1309 $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1310 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1311 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1312 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1313 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
1314 $(PY_INCLUDE)\tupleobject.h
1315
1316errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001317 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001318 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1319 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1320 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1321 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1322 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1323 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1324 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1325 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1326 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1327 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1328
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001329fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001330
1331frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001332 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001333 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1334 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1335 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1336 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1337 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1338 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1339 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1340 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1341 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1342 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1343
1344frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001345 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001346 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1347 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1348 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1349 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1350 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1351 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1352 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1353 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1354 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1355 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1356
1357getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001358 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001359 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1360 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1361 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1362 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1363 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1364 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1365 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1366 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1367 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1368 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1369
1370getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1371 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001372 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001373 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1374 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1375 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1376 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1377 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1378 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1379 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1380 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1381 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1382 $(PY_INCLUDE)\tupleobject.h
1383
1384getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1385 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001386 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001387 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1388 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1389 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1390 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1391 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1392 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1393 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1394 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1395 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1396 $(PY_INCLUDE)\tupleobject.h
1397
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001398getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001399
1400getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1401 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001402 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001403 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1404 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1405 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1406 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1407 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1408 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1409 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1410 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1411 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1412 $(PY_INCLUDE)\tupleobject.h
1413
1414getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001415 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001416 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1417 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1418 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1419 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1420 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1421 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
1422 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1423 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1424 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1425 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1426 $(PY_INCLUDE)\tupleobject.h
1427
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001428graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001429 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1430 $(PY_INCLUDE)\pydebug.h
1431
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001432hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001433
1434import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1435 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001436 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001437 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1438 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
1439 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1440 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1441 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1442 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1443 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1444 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1445 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1446 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1447 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1448
1449importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001450 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001451 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1452 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
1453 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1454 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1455 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1456 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1457 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1458 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1459 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1460 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1461 $(PY_INCLUDE)\tupleobject.h
1462
1463marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1464 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001465 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001466 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1467 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1468 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1469 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1470 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1471 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1472 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1473 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1474 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1475 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1476
1477modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001478 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001479 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1480 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1481 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1482 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1483 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1484 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1485 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1486 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1487 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1488 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1489
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001490mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001491
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001492pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001493
1494pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001495 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001496 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1497 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1498 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1499 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1500 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1501 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1502 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1503 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1504 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1505 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1506
1507pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
1508 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001509 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001510 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
1511 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
1512 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1513 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1514 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1515 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1516 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1517 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1518 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1519 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1520 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1521 $(PY_INCLUDE)\tupleobject.h
1522
1523sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001524 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001525 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1526 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1527 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1528 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1529 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1530 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1531 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1532 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1533 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1534 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1535
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001536strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001537
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001538strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001539
1540structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1541 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001542 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001543 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1544 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1545 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1546 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1547 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1548 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1549 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1550 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1551 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1552 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1553
1554sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001555 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001556 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1557 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1558 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1559 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1560 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1561 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1562 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1563 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1564 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1565 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1566 $(PY_INCLUDE)\tupleobject.h
1567
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001568thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001569
1570traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1571 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001572 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001573 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
1574 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1575 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1576 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1577 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1578 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1579 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1580 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1581 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1582 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1583 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h