PageRenderTime 62ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/PC/os2vacpp/makefile

http://unladen-swallow.googlecode.com/
Makefile | 1886 lines | 1592 code | 182 blank | 112 comment | 0 complexity | 23b34814bbf1fbfc6346a051924fc41d MD5 | raw file
Possible License(s): 0BSD, BSD-3-Clause
  1. ######################################################################
  2. #
  3. # Top-Level Makefile for Building Python for OS/2
  4. #
  5. # This makefile was developed for use with IBM's VisualAge C/C++
  6. # for OS/2 compiler, version 3.0, with Fixpack 8 applied. It uses
  7. # version 4.0 of the NMAKE tool that comes with that package.
  8. #
  9. # The output of the build is a largish Python23.DLL containing the
  10. # essential modules of Python and a small Python.exe program to start
  11. # the interpreter. When embedding Python within another program, only
  12. # Python23.DLL is needed.
  13. #
  14. # These two binaries can be statically linked with the VisualAge C/C++
  15. # runtime library (producing larger binaries), or dynamically linked
  16. # to make smaller ones that require the compiler to be installed on
  17. # any system Python is used on. Review the /Gd+ compiler option for
  18. # how to do this.
  19. #
  20. # NOTE: IBM's NMAKE 4.0 is rather dumb, requiring this makefile to
  21. # be much more complicated than necessary. I use OpusMAKE
  22. # myself for a much more powerful MAKE tool but not everyone
  23. # wishes to buy it. However, as a result I didn't hook in
  24. # the dependencies on the include files as NMAKE has no easy
  25. # way to do this without explicitly spelling it all out.
  26. #
  27. # History (Most Recent First)
  28. #
  29. # 26-Sep-98 jrr Retested and adjusted for building w/Python 1.5.2a1
  30. # 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. # Places and Things
  37. ###################
  38. PY_MODULES = ..\..\Modules
  39. PY_OBJECTS = ..\..\Objects
  40. PY_PARSER = ..\..\Parser
  41. PY_PYTHON = ..\..\Python
  42. PY_INCLUDE = ..\..\Include
  43. PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
  44. # File to Collect Wordy Compiler Output re Errors
  45. ERRS = make.out
  46. # Where to Find the IBM TCP/IP Socket Includes and Libraries
  47. OS2TCPIP = C:\MPTN
  48. # Where to Find the Tcl/Tk Base Directory for Libs/Includes
  49. TCLTK = D:\TclTk
  50. TCLBASE = D:\Tcl7.6\OS2
  51. TKBASE = D:\Tk4.2\OS2
  52. # Where to Put the .OBJ Files, To Keep Them Out of the Way
  53. PATHOBJ = obj
  54. # Search Path for Include Files
  55. PROJINCLUDE = .;$(TCLBASE);$(TKBASE);$(OS2TCPIP)\Include;$(PY_INCLUDES)
  56. # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial)
  57. MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c
  58. #.HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c)
  59. #.PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON)
  60. OTHERLIBS = so32dll.lib tcp32dll.lib # Tcl76.lib Tk42.lib
  61. #################
  62. # Inference Rules
  63. #################
  64. {$(PY_MODULES)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
  65. @ Echo Compiling $<
  66. @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
  67. {$(PY_OBJECTS)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
  68. @ Echo Compiling $<
  69. @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
  70. {$(PY_PARSER)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
  71. @ Echo Compiling $<
  72. @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
  73. {$(PY_PYTHON)\}.c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
  74. @ Echo Compiling $<
  75. @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
  76. .c{$(PATHOBJ)\}.obj: # Compile C Code into a .OBJ File
  77. @ Echo Compiling $<
  78. @ $(CC) -c $(CFLAGS) -Fo$@ $< >>$(ERRS)
  79. ###################
  80. # Python Subsystems
  81. ###################
  82. # PYTHON is the central core, containing the builtins and interpreter.
  83. PYTHON = \
  84. $(PATHOBJ)\BltinModule.obj \
  85. $(PATHOBJ)\CEval.obj \
  86. $(PATHOBJ)\Compile.obj \
  87. $(PATHOBJ)\Errors.obj \
  88. $(PATHOBJ)\Frozen.obj \
  89. $(PATHOBJ)\Getargs.obj \
  90. $(PATHOBJ)\GetCompiler.obj \
  91. $(PATHOBJ)\GetCopyright.obj \
  92. $(PATHOBJ)\GetMTime.obj \
  93. $(PATHOBJ)\GetOpt.obj \
  94. $(PATHOBJ)\GetPlatform.obj \
  95. $(PATHOBJ)\GetVersion.obj \
  96. $(PATHOBJ)\GramInit.obj \
  97. $(PATHOBJ)\Import.obj \
  98. $(PATHOBJ)\ImportDL.obj \
  99. $(PATHOBJ)\Marshal.obj \
  100. $(PATHOBJ)\ModSupport.obj \
  101. $(PATHOBJ)\MyStrtoul.obj \
  102. $(PATHOBJ)\PyState.obj \
  103. $(PATHOBJ)\PythonRun.obj \
  104. $(PATHOBJ)\StructMember.obj \
  105. $(PATHOBJ)\SysModule.obj \
  106. $(PATHOBJ)\Thread.obj \
  107. $(PATHOBJ)\TraceBack.obj \
  108. $(PATHOBJ)\FrozenMain.obj \
  109. $(PATHOBJ)\exceptions.obj \
  110. $(PATHOBJ)\symtable.obj \
  111. $(PATHOBJ)\codecs.obj \
  112. $(PATHOBJ)\future.obj \
  113. $(PATHOBJ)\dynload_os2.obj \
  114. $(PATHOBJ)\mysnprintf.obj \
  115. $(PATHOBJ)\iterobject.obj
  116. # Python's Internal Parser
  117. PARSER = \
  118. $(PATHOBJ)\Acceler.obj \
  119. $(PATHOBJ)\Grammar1.obj \
  120. $(PATHOBJ)\ListNode.obj \
  121. $(PATHOBJ)\Node.obj \
  122. $(PATHOBJ)\Parser.obj \
  123. $(PATHOBJ)\ParseTok.obj \
  124. $(PATHOBJ)\BitSet.obj \
  125. $(PATHOBJ)\MetaGrammar.obj \
  126. $(PATHOBJ)\Tokenizer.obj \
  127. $(PATHOBJ)\MyReadline.obj
  128. # Python Object Types
  129. OBJECTS = \
  130. $(PATHOBJ)\Abstract.obj \
  131. $(PATHOBJ)\BoolObject.obj \
  132. $(PATHOBJ)\BufferObject.obj \
  133. $(PATHOBJ)\CellObject.obj \
  134. $(PATHOBJ)\ClassObject.obj \
  135. $(PATHOBJ)\CObject.obj \
  136. $(PATHOBJ)\ComplexObject.obj \
  137. $(PATHOBJ)\DescrObject.obj \
  138. $(PATHOBJ)\DictObject.obj \
  139. $(PATHOBJ)\EnumObject.obj \
  140. $(PATHOBJ)\FileObject.obj \
  141. $(PATHOBJ)\FloatObject.obj \
  142. $(PATHOBJ)\FrameObject.obj \
  143. $(PATHOBJ)\FuncObject.obj \
  144. $(PATHOBJ)\IntObject.obj \
  145. $(PATHOBJ)\IterObject.obj \
  146. $(PATHOBJ)\ListObject.obj \
  147. $(PATHOBJ)\LongObject.obj \
  148. $(PATHOBJ)\MethodObject.obj \
  149. $(PATHOBJ)\ModuleObject.obj \
  150. $(PATHOBJ)\Object.obj \
  151. $(PATHOBJ)\ObMalloc.obj \
  152. $(PATHOBJ)\RangeObject.obj \
  153. $(PATHOBJ)\SliceObject.obj \
  154. $(PATHOBJ)\StringObject.obj \
  155. $(PATHOBJ)\StructSeq.obj \
  156. $(PATHOBJ)\TupleObject.obj \
  157. $(PATHOBJ)\TypeObject.obj \
  158. $(PATHOBJ)\UnicodeObject.obj \
  159. $(PATHOBJ)\UnicodeCType.obj \
  160. $(PATHOBJ)\WeakrefObject.obj
  161. # Extension Modules (Built-In or as Separate DLLs)
  162. MODULES = \
  163. $(PATHOBJ)\ArrayModule.obj \
  164. $(PATHOBJ)\BinAscii.obj \
  165. $(PATHOBJ)\CMathModule.obj \
  166. $(PATHOBJ)\cPickle.obj \
  167. $(PATHOBJ)\cStringIO.obj \
  168. $(PATHOBJ)\ErrnoModule.obj \
  169. $(PATHOBJ)\GCModule.obj \
  170. $(PATHOBJ)\GetBuildInfo.obj \
  171. $(PATHOBJ)\GetPathP.obj \
  172. $(PATHOBJ)\Main.obj \
  173. $(PATHOBJ)\MathModule.obj \
  174. $(PATHOBJ)\MD5c.obj \
  175. $(PATHOBJ)\MD5Module.obj \
  176. $(PATHOBJ)\Operator.obj \
  177. $(PATHOBJ)\PCREModule.obj \
  178. $(PATHOBJ)\PyPCRE.obj \
  179. $(PATHOBJ)\PosixModule.obj \
  180. $(PATHOBJ)\RegexModule.obj \
  181. $(PATHOBJ)\RegExpr.obj \
  182. $(PATHOBJ)\SelectModule.obj \
  183. $(PATHOBJ)\SignalModule.obj \
  184. $(PATHOBJ)\SocketModule.obj \
  185. $(PATHOBJ)\StropModule.obj \
  186. $(PATHOBJ)\StructModule.obj \
  187. $(PATHOBJ)\TimeModule.obj \
  188. $(PATHOBJ)\ThreadModule.obj \
  189. $(PATHOBJ)\YUVConvert.obj
  190. # Standalone Parser Generator Program (Shares Some of Python's Modules)
  191. PGEN = \
  192. $(PATHOBJ)\PGen.obj \
  193. $(PATHOBJ)\PGenMain.obj \
  194. $(PATHOBJ)\MySNPrintf.obj \
  195. $(PATHOBJ)\Tokenizer_Pgen.obj \
  196. $(PATHOBJ)\PrintGrammar.obj \
  197. $(PATHOBJ)\Grammar.obj \
  198. $(PATHOBJ)\FirstSets.obj
  199. ##################
  200. # Macros and Flags
  201. ##################
  202. _BASE = /Q /W2 /I$(PROJINCLUDE)
  203. # /Q = Omit IBM Copyright
  204. # /W2 = Show Warnings/Errors Only
  205. _GEN = /G4 /Gm /Gd-
  206. # /G4 = Generate Code for 486 (Use 386 for Debugger)
  207. # /Gm = Use Multithread Runtime
  208. # /Gd = Dynamically Load Runtime
  209. # /Ms = Use _System Calling Convention (vs _Optlink)
  210. # (to allow non-VAC++ code to call into Python23.dll)
  211. _OPT = /O /Gl
  212. # /O = Enable Speed-Optimizations
  213. # /Ol = Pass Code Thru Intermediate Linker
  214. # /Gu = Advise Linker All Ext Data is ID'd
  215. # /Gl = Have Linker Remove Unused Fns
  216. _DBG = /Wpro- /Ti- /DHAVE_CONFIG_H /DUSE_SOCKET
  217. # /Wpro= Generate Compiler Warnings re Missing Prototypes
  218. # /Ti = Embed Debugger/Analyzer Recs
  219. # /Tm = Enable Debug Memory Fns
  220. # /Tx = Request Full Dump Upon Exception
  221. # /DHAVE_CONFIG_H = Causes Use of CONFIG.H Settings
  222. # /DUSE_SOCKET = Enables Building In of Socket API
  223. _OUT =
  224. # /Fb = Embed Browser Recs
  225. # /Gh = Generate Code for Profiler Hooks
  226. # /Fl = Output C/C++ Listing Files
  227. # /Lf = Provide Full (Detailed) Listing Files
  228. # /Fm. = Output Linker Map File
  229. # /Ft. = Output C++ Template Resolution Files
  230. _MAP = /FmNoise\$(@R).map
  231. _DLL = /Ge-
  232. _EXE = /Ge
  233. # /Ge = Create an EXE, not DLL
  234. CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss
  235. ###################
  236. # Primary Target(s)
  237. ###################
  238. All: obj noise PyCore.lib Python23.lib PGen.exe \
  239. Python.exe PythonPM.exe Python23.dll # _tkinter.dll
  240. Modules: $(MODULES)
  241. Objects: $(OBJECTS)
  242. Parser: $(PARSER)
  243. Python: $(PYTHON)
  244. # Directory to Keep .OBJ Files Out of the Way
  245. obj:
  246. @-mkdir obj >>NUL
  247. # Directory to Keep .MAP and Such Text Files Out of the Way
  248. noise:
  249. @-mkdir noise >>NUL
  250. ##############
  251. #
  252. ##############
  253. # Python Extension DLL: Tcl/Tk Interface
  254. #_tkinter.dll: $(PATHOBJ)\_tkinter.obj Python23.lib _tkinter.def
  255. # @ Echo Linking $@ As DLL
  256. # @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
  257. #$(PATHOBJ)\_tkinter.obj: $(PY_MODULES)\_tkinter.c
  258. # @ Echo Compiling $**
  259. # @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
  260. # Object Library of All Essential Python Routines
  261. PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) $(PATHOBJ)\Config.obj
  262. @ Echo Adding Updated Object Files to Link Library $@
  263. @ ! ILIB $@ /NOLOGO /NOBACKUP -+$? ; >>$(ERRS)
  264. Python23.dll: $(PATHOBJ)\Compile.obj PyCore.lib Python.def
  265. @ Echo Linking $@ As DLL
  266. @ $(CC) $(CFLAGS) /B"/NOE" $(_DLL) /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
  267. # @ Echo Compressing $@ with LxLite
  268. # @ lxlite $@
  269. # IBM Linker Requires One Explicit .OBJ To Build a .DLL from a .LIB
  270. $(PATHOBJ)\Compile.obj: $(PY_PYTHON)\Compile.c
  271. @ Echo Compiling $**
  272. @ $(CC) -c $(CFLAGS) $(_DLL) -Fo$@ $** >>$(ERRS)
  273. # Import Library for Using the Python23.dll
  274. Python23.lib: Python.def
  275. @ Echo Making $@
  276. @ IMPLIB /NOLOGO /NOIGNORE $@ $** >>$(ERRS)
  277. @ ILIB /NOLOGO /CONVFORMAT /NOEXTDICTIONARY /NOBROWSE /NOBACKUP $@; >>$(ERRS)
  278. # Small Command-Line Program to Start Interpreter in Python23.dll
  279. Python.exe: $(PATHOBJ)\Python.obj Python23.lib
  280. @ Echo Linking $@ As EXE
  281. @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:VIO /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
  282. # Small PM-GUI Program to Start Interpreter in Python23.dll
  283. PythonPM.exe: $(PATHOBJ)\Python.obj Python23.lib
  284. @ Echo Linking $@ As EXE
  285. @ $(CC) $(CFLAGS) $(_EXE) /B"/PM:PM /STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
  286. PGen.exe: $(PGEN) PyCore.lib
  287. @ Echo Linking $@ As EXE
  288. @ $(CC) $(CFLAGS) $(_EXE) /B"/STACK:360000" /Fe$@ $(_MAP) $** $(OTHERLIBS) >>$(ERRS)
  289. #######################
  290. # Miscellaneous Targets
  291. #######################
  292. # Remove Intermediate Targets but Leave Executable Binaries
  293. clean:
  294. -- Del /Q $(PATHOBJ)\*.obj >NUL 2>&1
  295. -- Del /Q /Y Noise >NUL 2>&1
  296. -- Del /Q $(ERRS) >NUL 2>&1
  297. # Remove All Targets, Including Final Binaries
  298. distclean: clean
  299. -- Del /Q PyCore.lib Python23.lib >NUL 2>&1
  300. -- Del /Q Python23.dll Python.exe PGen.exe >NUL 2>&1
  301. release: Python.exe Python23.dll Python23.lib
  302. -- @Echo Y | copy /U Python.exe D:\EXEs
  303. -- @Echo Y | copy /U Python23.dll D:\DLLs
  304. -- @Echo Y | copy /U Python23.lib E:\Tau\Lib
  305. -- @Echo Y | copy /U _tkinter.dll D:\Python
  306. test:
  307. python ..\..\lib\test\regrtest.py
  308. # Update Dependencies on Targets (Uses OpusMAKE Commercial Product)
  309. depend:
  310. D:\OpusMake\os2mkmf -c -s
  311. ### OPUS MKMF: Do not remove this line! Generated dependencies follow.
  312. _tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  313. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  314. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  315. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  316. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  317. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  318. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  319. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  320. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  321. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  322. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  323. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  324. almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  325. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  326. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  327. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  328. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  329. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  330. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  331. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  332. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  333. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  334. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  335. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  336. arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  337. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  338. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  339. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  340. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  341. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  342. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  343. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  344. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  345. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  346. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  347. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  348. $(PY_INCLUDE)\tupleobject.h
  349. audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  350. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  351. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  352. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  353. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  354. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  355. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
  356. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  357. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  358. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  359. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  360. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  361. $(PY_INCLUDE)\tupleobject.h
  362. binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  363. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  364. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  365. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  366. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  367. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  368. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  369. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  370. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  371. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  372. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  373. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  374. bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  375. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  376. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  377. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  378. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  379. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  380. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  381. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  382. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  383. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  384. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  385. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  386. $(PY_INCLUDE)\tupleobject.h
  387. cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  388. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  389. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  390. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  391. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  392. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  393. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  394. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  395. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  396. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  397. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  398. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  399. cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  400. $(PY_MODULES)\cgensupport.h $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h \
  401. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  402. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
  403. $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
  404. $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  405. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  406. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  407. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  408. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  409. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  410. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  411. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  412. clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  413. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  414. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  415. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  416. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  417. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  418. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  419. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  420. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  421. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  422. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  423. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  424. cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  425. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  426. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  427. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  428. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  429. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  430. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  431. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  432. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  433. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  434. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  435. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  436. $(PY_INCLUDE)\tupleobject.h
  437. cpickle.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  438. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  439. $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  440. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  441. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  442. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  443. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  444. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  445. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  446. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  447. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  448. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  449. $(PY_INCLUDE)\tupleobject.h
  450. cryptmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  451. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  452. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  453. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  454. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  455. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  456. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  457. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  458. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  459. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  460. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  461. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  462. $(PY_INCLUDE)\tupleobject.h
  463. cstringio.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  464. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  465. $(PY_INCLUDE)\cstringio.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  466. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  467. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  468. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  469. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  470. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  471. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  472. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  473. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  474. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  475. $(PY_INCLUDE)\tupleobject.h
  476. cursesmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  477. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  478. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  479. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  480. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  481. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  482. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  483. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  484. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  485. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  486. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  487. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  488. $(PY_INCLUDE)\tupleobject.h
  489. dbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  490. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  491. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  492. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  493. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  494. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  495. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  496. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  497. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  498. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  499. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  500. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  501. dlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  502. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  503. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  504. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  505. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  506. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  507. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  508. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  509. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  510. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  511. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  512. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  513. errno.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  514. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  515. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  516. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  517. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  518. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  519. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  520. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  521. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  522. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  523. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  524. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  525. errnomodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  526. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  527. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  528. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  529. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  530. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  531. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  532. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  533. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  534. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  535. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  536. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  537. $(PY_INCLUDE)\tupleobject.h
  538. fcntlmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\eval.h \
  539. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  540. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  541. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  542. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  543. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  544. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  545. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  546. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  547. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  548. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  549. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  550. $(PY_INCLUDE)\tupleobject.h
  551. flmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  552. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  553. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  554. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  555. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  556. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  557. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  558. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  559. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  560. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  561. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  562. $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  563. $(PY_INCLUDE)\tupleobject.h
  564. fmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  565. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  566. $(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. fpectlmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  577. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  578. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  579. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  580. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  581. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  582. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  583. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  584. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  585. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  586. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  587. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  588. $(PY_INCLUDE)\tupleobject.h
  589. fpetestmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  590. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  591. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  592. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  593. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  594. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  595. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  596. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  597. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  598. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  599. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  600. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  601. $(PY_INCLUDE)\tupleobject.h
  602. gdbmmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  603. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  604. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  605. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  606. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  607. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  608. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  609. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  610. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  611. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  612. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  613. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  614. getbuildinfo.obj: pyconfig.h
  615. getpath.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  616. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  617. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  618. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  619. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  620. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  621. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  622. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
  623. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  624. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  625. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  626. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  627. $(PY_INCLUDE)\tupleobject.h
  628. glmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_MODULES)\cgensupport.h \
  629. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  630. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  631. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  632. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  633. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  634. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  635. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  636. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  637. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  638. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  639. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  640. $(PY_INCLUDE)\tupleobject.h
  641. grpmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  642. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  643. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  644. $(PY_INCLUDE)\funcobject.h $(OS2TCPIP)\Include\grp.h $(PY_INCLUDE)\import.h \
  645. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  646. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  647. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  648. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  649. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  650. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  651. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  652. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  653. $(PY_INCLUDE)\tupleobject.h
  654. imageop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  655. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  656. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  657. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  658. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  659. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  660. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  661. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  662. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  663. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  664. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  665. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  666. imgfile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  667. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  668. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  669. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  670. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  671. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  672. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  673. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  674. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  675. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  676. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  677. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  678. main.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  679. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  680. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  681. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  682. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  683. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  684. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  685. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  686. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  687. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  688. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  689. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  690. mathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  691. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  692. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  693. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  694. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  695. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  696. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
  697. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  698. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  699. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  700. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  701. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  702. $(PY_INCLUDE)\tupleobject.h
  703. md5c.obj: pyconfig.h $(PY_MODULES)\md5.h
  704. md5module.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  705. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  706. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  707. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  708. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  709. $(PY_MODULES)\md5.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  710. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  711. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  712. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  713. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  714. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  715. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  716. mpzmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  717. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  718. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  719. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  720. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  721. $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
  722. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  723. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  724. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  725. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  726. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  727. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  728. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  729. nismodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\eval.h \
  730. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  731. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  732. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  733. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  734. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  735. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  736. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  737. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  738. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  739. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  740. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  741. $(PY_INCLUDE)\tupleobject.h
  742. operator.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  743. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  744. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  745. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  746. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  747. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  748. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  749. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  750. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  751. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  752. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  753. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  754. parsermodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  755. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
  756. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  757. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
  758. $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  759. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  760. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  761. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  762. $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  763. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  764. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  765. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  766. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
  767. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  768. pcremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  769. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  770. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  771. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  772. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  773. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  774. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  775. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_MODULES)\pcre-internal.h \
  776. $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  777. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  778. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  779. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  780. $(PY_INCLUDE)\tupleobject.h
  781. posix.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  782. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  783. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  784. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  785. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  786. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  787. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  788. $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  789. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  790. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  791. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  792. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  793. $(PY_INCLUDE)\tupleobject.h
  794. posixmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  795. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  796. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  797. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  798. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  799. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  800. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  801. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h \
  802. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  803. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  804. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  805. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  806. $(PY_INCLUDE)\tupleobject.h
  807. puremodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  808. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  809. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  810. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  811. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  812. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  813. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  814. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  815. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  816. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  817. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  818. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  819. pwdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  820. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  821. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  822. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  823. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  824. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  825. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  826. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(OS2TCPIP)\Include\pwd.h \
  827. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  828. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  829. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  830. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  831. $(PY_INCLUDE)\tupleobject.h
  832. pypcre.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  833. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  834. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  835. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h $(PY_INCLUDE)\import.h \
  836. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  837. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  838. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  839. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  840. $(PY_MODULES)\pcre-internal.h $(PY_MODULES)\pcre.h $(PY_INCLUDE)\pydebug.h \
  841. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  842. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  843. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  844. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  845. readline.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  846. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  847. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  848. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  849. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  850. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  851. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  852. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  853. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  854. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  855. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  856. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  857. resource.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\eval.h \
  858. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  859. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  860. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  861. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  862. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  863. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  864. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  865. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  866. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  867. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  868. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  869. $(PY_INCLUDE)\tupleobject.h
  870. rgbimgmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  871. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  872. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  873. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  874. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  875. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  876. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  877. $(PY_INCLUDE)\myproto.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. selectmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  884. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  885. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  886. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  887. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  888. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  889. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  890. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\myselect.h $(PY_INCLUDE)\mytime.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. sgimodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  897. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  898. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  899. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  900. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  901. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  902. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  903. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  904. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  905. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  906. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  907. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  908. signalmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  909. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  910. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  911. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  912. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  913. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  914. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  915. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  916. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  917. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  918. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  919. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  920. $(PY_INCLUDE)\tupleobject.h
  921. socketmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\netinet\in.h \
  922. $(OS2TCPIP)\Include\sys\socket.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  923. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  924. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  925. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  926. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  927. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  928. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  929. $(PY_INCLUDE)\mytime.h $(OS2TCPIP)\Include\netdb.h $(PY_INCLUDE)\object.h \
  930. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  931. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  932. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  933. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  934. $(PY_INCLUDE)\tupleobject.h
  935. soundex.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  936. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  937. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  938. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  939. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  940. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  941. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  942. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  943. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  944. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  945. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  946. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  947. stdwinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  948. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  949. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  950. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  951. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  952. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  953. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  954. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  955. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  956. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  957. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  958. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  959. $(PY_INCLUDE)\tupleobject.h
  960. stropmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  961. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  962. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  963. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  964. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  965. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  966. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  967. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  968. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  969. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  970. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  971. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  972. $(PY_INCLUDE)\tupleobject.h
  973. structmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  974. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  975. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  976. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  977. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  978. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  979. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  980. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  981. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  982. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  983. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  984. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  985. $(PY_INCLUDE)\tupleobject.h
  986. sunaudiodev.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\ioctl.h $(PY_INCLUDE)\eval.h \
  987. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  988. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  989. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  990. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  991. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  992. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  993. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  994. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  995. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  996. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  997. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  998. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  999. svmodule.obj: $(PY_INCLUDE)\abstract.h $(OS2TCPIP)\Include\sys\time.h $(PY_INCLUDE)\eval.h \
  1000. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
  1001. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  1002. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
  1003. $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
  1004. $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1005. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1006. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1007. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1008. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1009. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1010. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1011. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h \
  1012. $(PY_MODULES)\yuv.h
  1013. syslogmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1014. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1015. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1016. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1017. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1018. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1019. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1020. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1021. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1022. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1023. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1024. $(PY_INCLUDE)\stringobject.h $(OS2TCPIP)\Include\syslog.h $(PY_INCLUDE)\sysmodule.h \
  1025. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1026. termios.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1027. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1028. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1029. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1030. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1031. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1032. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1033. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1034. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1035. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1036. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1037. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1038. threadmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1039. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1040. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1041. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1042. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1043. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1044. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1045. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1046. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1047. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1048. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1049. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\thread.h \
  1050. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1051. timemodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1052. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1053. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1054. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1055. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1056. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1057. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1058. $(PY_INCLUDE)\mytime.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1059. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1060. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1061. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1062. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1063. $(PY_INCLUDE)\tupleobject.h
  1064. timingmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1065. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1066. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1067. $(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_MODULES)\timing.h \
  1076. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1077. xxmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1078. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1079. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1080. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1081. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1082. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1083. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1084. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1085. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1086. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1087. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1088. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1089. yuvconvert.obj: $(PY_MODULES)\yuv.h
  1090. zlibmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1091. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1092. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1093. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1094. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1095. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1096. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1097. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1098. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1099. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1100. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1101. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1102. abstract.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1103. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1104. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1105. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1106. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1107. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1108. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1109. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1110. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1111. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1112. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1113. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1114. classobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1115. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1116. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1117. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1118. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1119. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1120. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1121. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1122. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1123. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1124. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1125. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1126. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1127. cobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1128. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1129. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1130. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1131. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1132. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1133. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1134. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1135. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1136. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1137. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1138. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1139. complexobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1140. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1141. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1142. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1143. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1144. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1145. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1146. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  1147. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1148. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1149. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1150. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1151. $(PY_INCLUDE)\tupleobject.h
  1152. dictobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1153. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1154. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1155. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1156. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1157. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1158. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1159. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1160. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1161. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1162. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1163. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1164. fileobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1165. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1166. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1167. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1168. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1169. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1170. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1171. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1172. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1173. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1174. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1175. $(PY_INCLUDE)\structmember.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1176. $(PY_INCLUDE)\tupleobject.h
  1177. floatobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1178. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1179. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1180. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1181. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1182. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1183. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1184. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  1185. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1186. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1187. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1188. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1189. $(PY_INCLUDE)\tupleobject.h
  1190. frameobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1191. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
  1192. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  1193. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1194. $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1195. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1196. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1197. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1198. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1199. $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1200. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1201. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1202. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1203. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1204. funcobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1205. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1206. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1207. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1208. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1209. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1210. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1211. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1212. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1213. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1214. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1215. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1216. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1217. intobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1218. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1219. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1220. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1221. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1222. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1223. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1224. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1225. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1226. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1227. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1228. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1229. listobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1230. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1231. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1232. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1233. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1234. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1235. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1236. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1237. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1238. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1239. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1240. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1241. longobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1242. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1243. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1244. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1245. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1246. $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h \
  1247. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1248. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
  1249. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1250. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1251. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1252. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1253. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1254. $(PY_INCLUDE)\tupleobject.h
  1255. methodobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1256. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1257. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1258. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1259. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1260. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1261. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1262. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1263. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1264. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1265. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1266. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
  1267. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1268. moduleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1269. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1270. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1271. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1272. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1273. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1274. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1275. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1276. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1277. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1278. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1279. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1280. $(PY_INCLUDE)\tupleobject.h
  1281. object.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1282. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1283. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1284. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1285. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1286. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1287. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1288. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1289. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1290. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1291. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1292. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1293. rangeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1294. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1295. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1296. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1297. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1298. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1299. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1300. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1301. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1302. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1303. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1304. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1305. $(PY_INCLUDE)\tupleobject.h
  1306. sliceobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1307. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1308. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1309. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1310. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1311. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1312. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1313. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1314. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1315. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1316. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1317. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1318. $(PY_INCLUDE)\tupleobject.h
  1319. stringobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1320. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1321. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1322. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1323. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1324. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1325. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1326. $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h \
  1327. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1328. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1329. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1330. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1331. $(PY_INCLUDE)\tupleobject.h
  1332. tupleobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1333. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1334. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1335. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1336. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1337. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1338. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1339. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1340. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1341. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1342. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1343. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1344. $(PY_INCLUDE)\tupleobject.h
  1345. typeobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1346. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1347. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1348. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1349. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1350. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1351. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1352. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1353. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1354. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1355. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1356. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1357. xxobject.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1358. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1359. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1360. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1361. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1362. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1363. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1364. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1365. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1366. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1367. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1368. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1369. acceler.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1370. $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
  1371. $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
  1372. $(PY_INCLUDE)\token.h
  1373. bitset.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\mymalloc.h \
  1374. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
  1375. firstsets.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1376. $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
  1377. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
  1378. grammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
  1379. $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1380. $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
  1381. grammar1.obj: $(PY_INCLUDE)\bitset.h pyconfig.h \
  1382. $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1383. $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
  1384. intrcheck.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
  1385. $(PY_INCLUDE)\myproto.h
  1386. listnode.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1387. $(PY_INCLUDE)\node.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
  1388. $(PY_INCLUDE)\token.h
  1389. metagrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1390. $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1391. $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
  1392. myreadline.obj: pyconfig.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\mymalloc.h \
  1393. $(PY_INCLUDE)\myproto.h
  1394. node.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
  1395. $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h
  1396. parser.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
  1397. $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1398. $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\pgenheaders.h \
  1399. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
  1400. parsetok.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\errcode.h \
  1401. $(PY_INCLUDE)\grammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1402. $(PY_INCLUDE)\node.h $(PY_PARSER)\parser.h $(PY_INCLUDE)\parsetok.h \
  1403. $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h \
  1404. $(PY_PARSER)\tokenizer.h
  1405. pgen.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1406. $(PY_INCLUDE)\metagrammar.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1407. $(PY_INCLUDE)\node.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
  1408. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\token.h
  1409. pgenmain.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1410. $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h \
  1411. $(PY_INCLUDE)\parsetok.h $(PY_PARSER)\pgen.h $(PY_INCLUDE)\pgenheaders.h \
  1412. $(PY_INCLUDE)\pydebug.h
  1413. printgrammar.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1414. $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
  1415. $(PY_INCLUDE)\pydebug.h
  1416. tokenizer.obj: pyconfig.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\mymalloc.h \
  1417. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h $(PY_INCLUDE)\pydebug.h \
  1418. $(PY_INCLUDE)\token.h $(PY_PARSER)\tokenizer.h
  1419. atof.obj: pyconfig.h
  1420. bltinmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1421. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
  1422. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  1423. $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1424. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1425. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1426. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1427. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\mymath.h \
  1428. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h \
  1429. $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1430. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1431. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1432. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1433. $(PY_INCLUDE)\tupleobject.h
  1434. ceval.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1435. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1436. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\eval.h \
  1437. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1438. $(PY_INCLUDE)\frameobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1439. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1440. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1441. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1442. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1443. $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1444. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1445. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1446. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1447. $(PY_INCLUDE)\tupleobject.h
  1448. compile.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1449. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1450. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1451. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\graminit.h \
  1452. $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
  1453. $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.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)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1457. $(PY_INCLUDE)\opcode.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1458. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1459. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1460. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1461. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h $(PY_INCLUDE)\traceback.h \
  1462. $(PY_INCLUDE)\tupleobject.h
  1463. errors.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1464. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1465. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1466. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1467. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1468. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1469. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1470. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1471. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1472. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1473. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1474. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1475. fmod.obj: pyconfig.h $(PY_INCLUDE)\mymath.h
  1476. frozen.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1477. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1478. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1479. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1480. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1481. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1482. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1483. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1484. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1485. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1486. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1487. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1488. frozenmain.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1489. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1490. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1491. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1492. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1493. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1494. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1495. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1496. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1497. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1498. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1499. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1500. getargs.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1501. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1502. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1503. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1504. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1505. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1506. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1507. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1508. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1509. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1510. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1511. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1512. getcompiler.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1513. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1514. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1515. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1516. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1517. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1518. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1519. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1520. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1521. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1522. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1523. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1524. $(PY_INCLUDE)\tupleobject.h
  1525. getcopyright.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1526. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1527. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1528. $(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)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1537. $(PY_INCLUDE)\tupleobject.h
  1538. getmtime.obj: pyconfig.h
  1539. getplatform.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1540. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1541. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1542. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1543. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1544. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1545. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1546. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.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. getversion.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1553. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1554. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1555. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1556. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1557. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1558. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1559. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\patchlevel.h \
  1560. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1561. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1562. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1563. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1564. $(PY_INCLUDE)\tupleobject.h
  1565. graminit.obj: $(PY_INCLUDE)\bitset.h pyconfig.h $(PY_INCLUDE)\grammar.h \
  1566. $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\pgenheaders.h \
  1567. $(PY_INCLUDE)\pydebug.h
  1568. hypot.obj: pyconfig.h $(PY_INCLUDE)\mymath.h $(PY_INCLUDE)\myproto.h
  1569. import.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1570. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1571. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h \
  1572. $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h \
  1573. $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h $(PY_INCLUDE)\intobject.h \
  1574. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1575. $(PY_INCLUDE)\marshal.h $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1576. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1577. $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1578. $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1579. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1580. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1581. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\token.h \
  1582. $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1583. importdl.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1584. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1585. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1586. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_PYTHON)\importdl.h \
  1587. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1588. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1589. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1590. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1591. $(PY_INCLUDE)\osdefs.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1592. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1593. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1594. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1595. $(PY_INCLUDE)\tupleobject.h
  1596. marshal.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1597. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1598. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1599. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1600. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1601. $(PY_INCLUDE)\longintrepr.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
  1602. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1603. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1604. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1605. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1606. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1607. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1608. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1609. modsupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1610. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1611. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1612. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1613. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1614. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1615. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1616. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1617. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1618. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1619. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1620. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1621. mystrtoul.obj: pyconfig.h
  1622. pyfpe.obj: pyconfig.h $(PY_INCLUDE)\pyfpe.h
  1623. pystate.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1624. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1625. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1626. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1627. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1628. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1629. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1630. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1631. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1632. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1633. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1634. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1635. pythonrun.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\bitset.h $(PY_INCLUDE)\eval.h \
  1636. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h \
  1637. $(PY_INCLUDE)\complexobject.h pyconfig.h $(PY_INCLUDE)\dictobject.h \
  1638. $(PY_INCLUDE)\errcode.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\fileobject.h \
  1639. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\grammar.h \
  1640. $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h \
  1641. $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\marshal.h \
  1642. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1643. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1644. $(PY_INCLUDE)\node.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1645. $(PY_INCLUDE)\parsetok.h $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h \
  1646. $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h \
  1647. $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1648. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1649. $(PY_INCLUDE)\tupleobject.h
  1650. sigcheck.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1651. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1652. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1653. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1654. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1655. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1656. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1657. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\pydebug.h \
  1658. $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h $(PY_INCLUDE)\pystate.h \
  1659. $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h $(PY_INCLUDE)\rangeobject.h \
  1660. $(PY_INCLUDE)\sliceobject.h $(PY_INCLUDE)\stringobject.h \
  1661. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1662. strdup.obj: pyconfig.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h
  1663. strtod.obj: pyconfig.h
  1664. structmember.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h \
  1665. $(PY_INCLUDE)\classobject.h $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h \
  1666. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1667. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h \
  1668. $(PY_INCLUDE)\intobject.h $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h \
  1669. $(PY_INCLUDE)\longobject.h $(PY_INCLUDE)\methodobject.h \
  1670. $(PY_INCLUDE)\modsupport.h $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h \
  1671. $(PY_INCLUDE)\myproto.h $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h \
  1672. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1673. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1674. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1675. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1676. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h
  1677. sysmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1678. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\complexobject.h pyconfig.h \
  1679. $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h $(PY_INCLUDE)\floatobject.h \
  1680. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1681. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1682. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1683. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1684. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
  1685. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1686. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1687. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1688. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h \
  1689. $(PY_INCLUDE)\tupleobject.h
  1690. thread.obj: pyconfig.h $(PY_INCLUDE)\thread.h
  1691. traceback.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\eval.h $(PY_INCLUDE)\classobject.h \
  1692. $(PY_INCLUDE)\cobject.h $(PY_INCLUDE)\compile.h $(PY_INCLUDE)\complexobject.h \
  1693. pyconfig.h $(PY_INCLUDE)\dictobject.h $(PY_INCLUDE)\fileobject.h \
  1694. $(PY_INCLUDE)\floatobject.h $(PY_INCLUDE)\frameobject.h \
  1695. $(PY_INCLUDE)\funcobject.h $(PY_INCLUDE)\import.h $(PY_INCLUDE)\intobject.h \
  1696. $(PY_INCLUDE)\intrcheck.h $(PY_INCLUDE)\listobject.h $(PY_INCLUDE)\longobject.h \
  1697. $(PY_INCLUDE)\methodobject.h $(PY_INCLUDE)\modsupport.h \
  1698. $(PY_INCLUDE)\moduleobject.h $(PY_INCLUDE)\mymalloc.h $(PY_INCLUDE)\myproto.h \
  1699. $(PY_INCLUDE)\object.h $(PY_INCLUDE)\objimpl.h $(PY_INCLUDE)\osdefs.h \
  1700. $(PY_INCLUDE)\pydebug.h $(PY_INCLUDE)\pyerrors.h $(PY_INCLUDE)\pyfpe.h \
  1701. $(PY_INCLUDE)\pystate.h $(PY_INCLUDE)\python.h $(PY_INCLUDE)\pythonrun.h \
  1702. $(PY_INCLUDE)\rangeobject.h $(PY_INCLUDE)\sliceobject.h \
  1703. $(PY_INCLUDE)\stringobject.h $(PY_INCLUDE)\structmember.h \
  1704. $(PY_INCLUDE)\sysmodule.h $(PY_INCLUDE)\traceback.h $(PY_INCLUDE)\tupleobject.h