blob: d47ff1f75a9f6d8bab46a083da68baba1d00d62e [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)\ErrnoModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000184 $(PATHOBJ)\GCModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000185 $(PATHOBJ)\GetBuildInfo.obj \
186 $(PATHOBJ)\GetPathP.obj \
187 $(PATHOBJ)\Main.obj \
188 $(PATHOBJ)\MathModule.obj \
189 $(PATHOBJ)\MD5c.obj \
190 $(PATHOBJ)\MD5Module.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000191 $(PATHOBJ)\Operator.obj \
Guido van Rossuma34c3131997-12-05 22:07:14 +0000192 $(PATHOBJ)\PCREModule.obj \
193 $(PATHOBJ)\PyPCRE.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000194 $(PATHOBJ)\PosixModule.obj \
195 $(PATHOBJ)\RegexModule.obj \
196 $(PATHOBJ)\RegExpr.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000197 $(PATHOBJ)\SelectModule.obj \
198 $(PATHOBJ)\SignalModule.obj \
199 $(PATHOBJ)\SocketModule.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000200 $(PATHOBJ)\StropModule.obj \
201 $(PATHOBJ)\StructModule.obj \
202 $(PATHOBJ)\TimeModule.obj \
203 $(PATHOBJ)\ThreadModule.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000204 $(PATHOBJ)\YUVConvert.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000205
206# Standalone Parser Generator Program (Shares Some of Python's Modules)
207PGEN = \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000208 $(PATHOBJ)\PGen.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000209 $(PATHOBJ)\PGenMain.obj \
210 $(PATHOBJ)\MySNPrintf.obj \
211 $(PATHOBJ)\Tokenizer_Pgen.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000212 $(PATHOBJ)\PrintGrammar.obj \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000213 $(PATHOBJ)\Grammar.obj \
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000214 $(PATHOBJ)\FirstSets.obj
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000215
216##################
217# Macros and Flags
218##################
219_BASE = /Q /W2 /I$(PROJINCLUDE)
220 # /Q = Omit IBM Copyright
221 # /W2 = Show Warnings/Errors Only
222
Guido van Rossuma34c3131997-12-05 22:07:14 +0000223_GEN = /G4 /Gm /Gd-
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000224 # /G4 = Generate Code for 486 (Use 386 for Debugger)
225 # /Gm = Use Multithread Runtime
226 # /Gd = Dynamically Load Runtime
Guido van Rossume8afe511998-09-28 22:02:40 +0000227 # /Ms = Use _System Calling Convention (vs _Optlink)
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000228 # (to allow non-VAC++ code to call into Python23.dll)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000229
230_OPT = /O /Gl
231 # /O = Enable Speed-Optimizations
232 # /Ol = Pass Code Thru Intermediate Linker
233 # /Gu = Advise Linker All Ext Data is ID'd
234 # /Gl = Have Linker Remove Unused Fns
235
Guido van Rossuma34c3131997-12-05 22:07:14 +0000236_DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
237 # /Wpro= Generate Compiler Warnings re Missing Prototypes
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000238 # /Ti = Embed Debugger/Analyzer Recs
239 # /Tm = Enable Debug Memory Fns
240 # /Tx = Request Full Dump Upon Exception
241 # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
242 # /DUSE_SOCKET = Enables Building In of Socket API
243
244_OUT =
245 # /Fb = Embed Browser Recs
246 # /Gh = Generate Code for Profiler Hooks
247 # /Fl = Output C/C++ Listing Files
248 # /Lf = Provide Full (Detailed) Listing Files
249 # /Fm. = Output Linker Map File
250 # /Ft. = Output C++ Template Resolution Files
251
252_MAP = /FmNoise\$(@R).map
253
254_DLL = /Ge-
255_EXE = /Ge
256 # /Ge = Create an EXE, not DLL
257
258CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
259
260###################
261# Primary Target(s)
262###################
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000263All: obj noise PyCore.lib Python23.lib PGen.exe \
264 Python.exe PythonPM.exe Python23.dll # _tkinter.dll
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000265
266Modules: $(MODULES)
267Objects: $(OBJECTS)
268Parser: $(PARSER)
269Python: $(PYTHON)
270
271# Directory to Keep .OBJ Files Out of the Way
272obj:
273 @-mkdir obj >>NUL
274
275# Directory to Keep .MAP and Such Text Files Out of the Way
276noise:
277 @-mkdir noise >>NUL
278
279##############
280#
281##############
282
Guido van Rossume8afe511998-09-28 22:02:40 +0000283# Python Extension DLL: Tcl/Tk Interface
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000284#_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
Tim Peters603c6832001-11-05 02:45:59 +0000285# @ Echo Linking $@ As DLL
286# @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000287
Tim Peters603c6832001-11-05 02:45:59 +0000288#$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
289# @ Echo Compiling $**
290# @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
Guido van Rossume8afe511998-09-28 22:02:40 +0000291
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000292# Object Library of All Essential Python Routines
293PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
294 @ Echo Adding Updated Object Files to Link Library $@
295 @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
296
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000297Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000298 @ Echo Linking $@ As DLL
299 @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Tim Peters603c6832001-11-05 02:45:59 +0000300# @ Echo Compressing $@ with LxLite
301# @ lxlite $@
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000302
303# IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
304$(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
305 @ Echo Compiling $**
306 @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
307
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000308# Import Library for Using the Python23.dll
309Python23.lib: Python.def
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000310 @ Echo Making $@
311 @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
312 @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
313
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000314# Small Command-Line Program to Start Interpreter in Python23.dll
315Python.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000316 @ Echo Linking $@ As EXE
Guido van Rossume8afe511998-09-28 22:02:40 +0000317 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
318
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000319# Small PM-GUI Program to Start Interpreter in Python23.dll
320PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000321 @ Echo Linking $@ As EXE
322 @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000323
324PGen.exe: $(PGEN) PyCore.lib
325 @ Echo Linking $@ As EXE
326 @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
327
328#######################
329# Miscellaneous Targets
330#######################
331
332# Remove Intermediate Targets but Leave Executable Binaries
333clean:
334 -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
335 -- Del /Q /Y Noise >NUL 2>&1
336 -- Del /Q $(ERRS) >NUL 2>&1
337
338# Remove All Targets, Including Final Binaries
339distclean: clean
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000340 -- Del /Q PyCore.lib Python23.lib >NUL 2>&1
341 -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000342
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000343release: Python.exe Python23.dll Python23.lib
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000344 -- @Echo Y | copy /U Python.exe D:\EXEs
Andrew MacIntyre1994c7f2002-08-18 06:31:01 +0000345 -- @Echo Y | copy /U Python23.dll D:\DLLs
346 -- @Echo Y | copy /U Python23.lib E:\Tau\Lib
Guido van Rossume8afe511998-09-28 22:02:40 +0000347 -- @Echo Y | copy /U _tkinter.dll D:\Python
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000348
349test:
350 python ..\..\lib\test\regrtest.py
351
352# Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
353depend:
354 D:\OpusMake\os2mkmf -c -s
355
356### OPUS MKMF: Do not remove this line! Generated dependencies follow.
357
358_tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000359 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000360 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
361 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
362 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
363 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
364 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
365 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
366 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
367 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
368 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
369 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
370
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000371arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
372 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000373 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000374 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
375 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
376 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
377 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
378 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
379 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
380 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
381 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
382 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
383 $(PY_INCLUDE)\tupleobject.h
384
385audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000386 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000387 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
388 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
389 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
390 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
391 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
392 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
393 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
394 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
395 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
396 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
397 $(PY_INCLUDE)\tupleobject.h
398
399binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000400 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000401 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
402 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
403 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
404 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
405 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
406 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
407 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
408 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
409 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
410 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
411
412bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
413 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000414 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000415 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
416 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
417 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
418 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
419 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
420 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
421 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
422 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
423 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
424 $(PY_INCLUDE)\tupleobject.h
425
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000426cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
427 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000428 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000429 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
430 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
431 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
432 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
433 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
434 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
435 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
436 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
437 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
438 $(PY_INCLUDE)\tupleobject.h
439
440cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000441 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Georg Brandl03124942008-06-10 15:50:56 +0000442 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000443 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
444 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
445 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
446 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
447 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
448 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
449 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
450 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
451 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
452 $(PY_INCLUDE)\tupleobject.h
453
454cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
455 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000456 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000457 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
458 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
459 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
460 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
461 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
462 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
463 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
464 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
465 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
466 $(PY_INCLUDE)\tupleobject.h
467
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000468cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
469 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000470 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000471 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
472 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
473 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
474 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
475 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
476 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
477 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
478 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
479 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
480 $(PY_INCLUDE)\tupleobject.h
481
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000482_dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000483 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000484 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
485 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
486 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
487 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
488 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
489 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
490 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
491 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
492 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
493 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
494
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000495errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000496 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000497 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
498 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
499 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
500 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
501 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
502 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
503 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
504 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
505 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
506 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
507
508errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
509 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000510 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000511 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
512 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
513 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
514 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
515 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
516 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
517 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
518 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
519 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
520 $(PY_INCLUDE)\tupleobject.h
521
522fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\ceval.h \
523 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000524 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000525 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
526 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
527 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
528 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
529 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
530 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
531 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
532 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
533 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
534 $(PY_INCLUDE)\tupleobject.h
535
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000536fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
537 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000538 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000539 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
540 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
541 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
542 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
543 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
544 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
545 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
546 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
547 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
548 $(PY_INCLUDE)\tupleobject.h
549
550fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
551 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000552 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000553 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
554 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
555 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
556 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
557 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
558 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
559 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
560 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
561 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
562 $(PY_INCLUDE)\tupleobject.h
563
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000564_gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000565 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000566 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
567 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
568 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
569 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
570 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
571 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
572 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
573 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
574 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
575 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
576
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000577getbuildinfo.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000578
579getpath.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)\osdefs.h \
587 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
588 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
589 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
590 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
591 $(PY_INCLUDE)\tupleobject.h
592
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000593grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000594 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000595 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
596 $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
597 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
598 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
599 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
600 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
601 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
602 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
603 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
604 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
605 $(PY_INCLUDE)\tupleobject.h
606
607imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000608 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000609 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
610 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
611 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
612 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
613 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
614 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
615 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
616 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
617 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
618 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
619
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000620main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000621 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000622 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
623 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
624 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
625 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
626 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
627 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
628 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
629 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
630 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
631 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
632
633mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000634 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000635 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
636 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
637 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
638 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
639 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
640 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
641 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
642 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
643 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
644 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
645 $(PY_INCLUDE)\tupleobject.h
646
Tim Peters1ca12962001-12-04 03:18:48 +0000647mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000648 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000649 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000650 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
651 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
652 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
653 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
654 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
655 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
656 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
657 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
658 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
659 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
660
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000661nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
662 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000663 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000664 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
665 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
666 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
667 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
668 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
669 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
670 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
671 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
672 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
673 $(PY_INCLUDE)\tupleobject.h
674
675operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000676 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000677 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
678 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
679 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
680 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
681 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
682 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
683 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
684 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
685 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
686 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
687
688parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
689 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000690 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000691 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
692 $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
693 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
694 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
695 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
696 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
697 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
698 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
699 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
700 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
701 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
702
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000703posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000704 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000705 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
706 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
707 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
708 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
709 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
710 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
711 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
712 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
713 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
714 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
715 $(PY_INCLUDE)\tupleobject.h
716
717posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
718 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000719 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000720 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
721 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
722 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
723 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
724 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
725 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
726 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
727 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
728 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
729 $(PY_INCLUDE)\tupleobject.h
730
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000731pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000732 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000733 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
734 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
735 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
736 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
737 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
738 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
739 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
740 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
741 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
742 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
743 $(PY_INCLUDE)\tupleobject.h
744
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000745readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000746 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000747 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
748 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
749 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
750 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
751 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
752 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
753 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
754 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
755 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
756 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
757
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000758resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\ceval.h \
759 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000760 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000761 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
762 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
763 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
764 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
765 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
766 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
767 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
768 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
769 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
770 $(PY_INCLUDE)\tupleobject.h
771
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000772selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
773 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000774 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000775 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
776 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
777 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
778 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
779 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.h \
780 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
781 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
782 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
783 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
784 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
785
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000786signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
787 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000788 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000789 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
790 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
791 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
792 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
793 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
794 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
795 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
796 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
797 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
798 $(PY_INCLUDE)\tupleobject.h
799
800socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
801 $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000802 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000803 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
804 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
805 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
806 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
807 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
808 $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
809 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
810 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
811 $(PY_INCLUDE)\pythonrun.h $(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
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000815structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
816 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000817 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000818 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
819 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
820 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
821 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
822 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
823 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
824 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
825 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
826 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
827 $(PY_INCLUDE)\tupleobject.h
828
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000829syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
830 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000831 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000832 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
833 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
834 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
835 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
836 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
837 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
838 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
839 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
840 $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
841 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
842
843termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000844 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000845 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
846 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
847 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
848 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
849 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
850 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
851 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
852 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
853 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
854 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
855
Georg Brandl2067bfd2008-05-25 13:05:15 +0000856_threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000857 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000858 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000859 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
860 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
861 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
862 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
863 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
864 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
865 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
866 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
867 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
868 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
869
870timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000871 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000872 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
873 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
874 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
875 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
876 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
877 $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
878 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
879 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
880 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
881 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
882 $(PY_INCLUDE)\tupleobject.h
883
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000884xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000885 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000886 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
887 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
888 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
889 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
890 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
891 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
892 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
893 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
894 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
895 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
896
897yuvconvert.obj: $(PY_MODULES)\yuv.h
898
899zlibmodule.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
912abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000913 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000914 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
915 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
916 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
917 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
918 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
919 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
920 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
921 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
922 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
923 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
924
925classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
926 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000927 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000928 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
929 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
930 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
931 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
932 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
933 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
934 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
935 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
936 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
937 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
938
939cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000940 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000941 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
942 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
943 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
944 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
945 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
946 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
947 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
948 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
949 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
950 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
951
952complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
953 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000954 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000955 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
956 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
957 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
958 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
959 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
960 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
961 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
962 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
963 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
964 $(PY_INCLUDE)\tupleobject.h
965
966dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000967 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000968 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
969 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
970 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
971 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
972 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
973 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
974 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
975 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
976 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
977 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
978
979fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000980 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000981 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
982 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
983 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
984 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
985 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
986 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
987 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
988 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
989 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
990 $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
991 $(PY_INCLUDE)\tupleobject.h
992
993floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
994 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000995 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +0000996 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
997 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
998 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
999 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1000 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1001 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1002 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1003 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1004 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1005 $(PY_INCLUDE)\tupleobject.h
1006
1007frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1008 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001009 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001010 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1011 $(PY_INCLUDE)\frameobject.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)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1016 $(PY_INCLUDE)\opcode.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)\structmember.h \
1020 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1021
1022funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1023 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001024 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001025 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1026 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1027 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1028 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1029 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1030 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1031 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1032 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1033 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1034 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1035
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001036listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001037 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001038 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1039 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1040 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1041 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1042 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1043 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1044 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1045 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1046 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1047 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1048
Tim Peters1ca12962001-12-04 03:18:48 +00001049longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001050 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001051 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001052 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1053 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1054 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
1055 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1056 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1057 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1058 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1059 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1060 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1061 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1062 $(PY_INCLUDE)\tupleobject.h
1063
1064methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1065 $(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)\longobject.h $(PY_INCLUDE)\methodobject.h \
1070 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1071 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1072 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1073 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1074 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1075 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1076 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1077
1078moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1079 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001080 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001081 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1082 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1083 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1084 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1085 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1086 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1087 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1088 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1089 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1090 $(PY_INCLUDE)\tupleobject.h
1091
1092object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001093 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001094 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1095 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1096 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1097 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1098 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1099 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1100 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1101 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1102 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1103 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1104
1105rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1106 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001107 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001108 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1109 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1110 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1111 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1112 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1113 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1114 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1115 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1116 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1117 $(PY_INCLUDE)\tupleobject.h
1118
1119sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1120 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001121 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001122 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1123 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1124 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1125 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1126 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1127 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1128 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1129 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1130 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1131 $(PY_INCLUDE)\tupleobject.h
1132
1133stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1134 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001135 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001136 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1137 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1138 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1139 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1140 $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
1141 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1142 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1143 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1144 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1145 $(PY_INCLUDE)\tupleobject.h
1146
1147tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1148 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001149 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001150 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1151 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1152 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1153 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1154 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1155 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1156 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1157 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1158 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1159 $(PY_INCLUDE)\tupleobject.h
1160
1161typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001162 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001163 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1164 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1165 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1166 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1167 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1168 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1169 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1170 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1171 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1172 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1173
1174xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001175 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001176 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1177 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1178 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1179 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1180 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1181 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1182 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1183 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1184 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1185 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1186
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001187acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001188 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1189 $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1190 $(PY_INCLUDE)\token.h
1191
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001192bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001193 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1194
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001195firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001196 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1197 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1198
Tim Peters1ca12962001-12-04 03:18:48 +00001199grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001200 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1201 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1202
Tim Peters1ca12962001-12-04 03:18:48 +00001203grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001204 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1205 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1206
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001207intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001208 $(PY_INCLUDE)\myproto.h
1209
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001210listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001211 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1212 $(PY_INCLUDE)\token.h
1213
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001214metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001215 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1216 $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1217
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001218myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001219 $(PY_INCLUDE)\myproto.h
1220
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001221node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001222 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
1223
Tim Peters1ca12962001-12-04 03:18:48 +00001224parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001225 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1226 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
1227 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1228
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001229parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001230 $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1231 $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
1232 $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
1233 $(PY_PARSER)\tokenizer.h
1234
Tim Peters1ca12962001-12-04 03:18:48 +00001235pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001236 $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1237 $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1238 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
1239
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001240pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001241 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
1242 $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
1243 $(PY_INCLUDE)\pydebug.h
1244
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001245printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001246 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1247 $(PY_INCLUDE)\pydebug.h
1248
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001249tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001250 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
1251 $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
1252
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001253atof.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001254
1255bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1256 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001257 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001258 $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1259 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1260 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1261 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1262 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
1263 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
1264 $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1265 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1266 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1267 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1268 $(PY_INCLUDE)\tupleobject.h
1269
1270ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1271 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001272 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001273 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1274 $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1275 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1276 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1277 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1278 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1279 $(PY_INCLUDE)\opcode.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
1285compile.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)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001288 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
1289 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1290 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1291 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1292 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1293 $(PY_INCLUDE)\node.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)\structmember.h \
1298 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
1299 $(PY_INCLUDE)\tupleobject.h
1300
1301errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001302 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001303 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1304 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1305 $(PY_INCLUDE)\intrcheck.h $(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)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1309 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1310 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1311 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1312 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1313
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001314fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001315
1316frozen.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
1329frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001330 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001331 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1332 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1333 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1334 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1335 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1336 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1337 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1338 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1339 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1340 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1341
1342getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001343 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001344 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1345 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1346 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1347 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1348 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1349 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1350 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1351 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1352 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1353 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1354
1355getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1356 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001357 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001358 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1359 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1360 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1361 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1362 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1363 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1364 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1365 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1366 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1367 $(PY_INCLUDE)\tupleobject.h
1368
1369getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1370 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001371 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001372 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1373 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1374 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1375 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1376 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1377 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1378 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1379 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1380 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1381 $(PY_INCLUDE)\tupleobject.h
1382
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001383getmtime.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001384
1385getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1386 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001387 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001388 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1389 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1390 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1391 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1392 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1393 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1394 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1395 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1396 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1397 $(PY_INCLUDE)\tupleobject.h
1398
1399getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001400 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001401 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1402 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1403 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1404 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1405 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1406 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
1407 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1408 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1409 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1410 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1411 $(PY_INCLUDE)\tupleobject.h
1412
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001413graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001414 $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
1415 $(PY_INCLUDE)\pydebug.h
1416
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001417hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001418
1419import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1420 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001421 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001422 $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
1423 $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
1424 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1425 $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1426 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1427 $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1428 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1429 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1430 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1431 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
1432 $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1433
1434importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001435 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001436 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1437 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
1438 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1439 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1440 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1441 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1442 $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1443 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1444 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1445 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1446 $(PY_INCLUDE)\tupleobject.h
1447
1448marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1449 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001450 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001451 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1452 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1453 $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
1454 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1455 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1456 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1457 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1458 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1459 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1460 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1461
1462modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001463 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001464 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1465 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1466 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1467 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1468 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1469 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1470 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1471 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1472 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1473 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1474
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001475mystrtoul.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001476
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001477pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001478
1479pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001480 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001481 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1482 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1483 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1484 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1485 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1486 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1487 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1488 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1489 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1490 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1491
1492pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\ceval.h \
1493 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001494 $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001495 $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
1496 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
1497 $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
1498 $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.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)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1502 $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
1503 $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
1504 $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1505 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1506 $(PY_INCLUDE)\tupleobject.h
1507
1508sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001509 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001510 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1511 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1512 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1513 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1514 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1515 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
1516 $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
1517 $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
1518 $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
1519 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1520
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001521strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001522
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001523strtod.obj: pyconfig.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001524
1525structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
1526 $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001527 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001528 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
1529 $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
1530 $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
1531 $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
1532 $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
1533 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1534 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1535 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1536 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1537 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
1538
1539sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001540 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001541 $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
1542 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1543 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1544 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1545 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1546 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1547 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1548 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1549 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1550 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
1551 $(PY_INCLUDE)\tupleobject.h
1552
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001553thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001554
1555traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
1556 $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001557 pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
Guido van Rossum50d4cc21997-11-22 21:59:45 +00001558 $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
1559 $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
1560 $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
1561 $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
1562 $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
1563 $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
1564 $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
1565 $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
1566 $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
1567 $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
1568 $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h