Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 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 | # the commercial OpusMAKE tool. |
| 8 | # |
| 9 | # The output of the build is a largish Python15.DLL containing the |
| 10 | # essential modules of Python and a small Python.exe program to start |
| 11 | # the interpreter. When embedding Python within another program, only |
| 12 | # Python15.DLL is needed. |
| 13 | # |
| 14 | # These two binaries can be statically linked with the VisualAge C/C++ |
| 15 | # runtime library (producing larger binaries), or dynamically linked |
| 16 | # to make smaller ones that require the compiler to be installed on |
| 17 | # any system Python is used on. |
| 18 | # |
| 19 | # History (Most Recent First) |
| 20 | # |
| 21 | # 20-Nov-97 jrr Cleaned Up for Applying to Distribution |
| 22 | # 29-Oct-97 jrr Modified for Use with Python 1.5 Alpha 4 |
| 23 | # 03-Aug-96 jrr Original for Use with Python 1.4 Release |
| 24 | # |
| 25 | ###################################################################### |
| 26 | |
| 27 | ################### |
| 28 | # Places and Things |
| 29 | ################### |
| 30 | PY_MODULES = ..\..\Modules |
| 31 | PY_OBJECTS = ..\..\Objects |
| 32 | PY_PARSER = ..\..\Parser |
| 33 | PY_PYTHON = ..\..\Python |
| 34 | PY_INCLUDE = ..\..\Include |
| 35 | PY_INCLUDES = .;$(PY_INCLUDE);$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) |
| 36 | |
| 37 | # Where to Find the IBM TCP/IP Socket Includes and Libraries |
| 38 | OS2TCPIP = C:\MPTN |
| 39 | |
| 40 | # Where to Put the .OBJ Files, To Keep Them Out of the Way |
| 41 | .PATH.obj = obj |
| 42 | |
| 43 | # Search Path for Include Files |
| 44 | PROJINCLUDE = .;$(OS2TCPIP)\Include;$(PY_INCLUDES) |
| 45 | |
| 46 | # Place to Search for Sources re OpusMAKE Dependency Generator (Commercial) |
| 47 | MKMF_SRCS = $(PY_MODULES)\*.c $(PY_OBJECTS)\*.c $(PY_PARSER)\*.c $(PY_PYTHON)\*.c |
| 48 | |
| 49 | .HDRPATH.c := $(PROJINCLUDE,;= ) $(.HDRPATH.c) |
| 50 | .PATH.c = .;$(PY_MODULES);$(PY_OBJECTS);$(PY_PARSER);$(PY_PYTHON) |
| 51 | OTHERLIBS = $(OS2TCPIP)\lib\so32dll.lib $(OS2TCPIP)\lib\tcp32dll.lib |
| 52 | |
| 53 | ################# |
| 54 | # Inference Rules |
| 55 | ################# |
| 56 | |
| 57 | |
| 58 | ################### |
| 59 | # Python Subsystems |
| 60 | ################### |
| 61 | |
| 62 | # PYTHON is the central core, containing the builtins and interpreter. |
| 63 | PYTHON = \ |
| 64 | BltinModule.obj \ |
| 65 | CEval.obj \ |
| 66 | Compile.obj \ |
| 67 | Errors.obj \ |
| 68 | Frozen.obj \ |
| 69 | Getargs.obj \ |
| 70 | GetCompiler.obj \ |
| 71 | GetCopyright.obj \ |
| 72 | GetMTime.obj \ |
| 73 | GetOpt.obj \ |
| 74 | GetPlatform.obj \ |
| 75 | GetVersion.obj \ |
| 76 | GramInit.obj \ |
| 77 | Import.obj \ |
| 78 | ImportDL.obj \ |
| 79 | Marshal.obj \ |
| 80 | ModSupport.obj \ |
| 81 | MyStrtoul.obj \ |
| 82 | PyState.obj \ |
| 83 | PythonRun.obj \ |
| 84 | StructMember.obj \ |
| 85 | SysModule.obj \ |
| 86 | Thread.obj \ |
| 87 | TraceBack.obj \ |
| 88 | FrozenMain.obj |
| 89 | |
| 90 | # Omitted Python Elements (and Reason): |
| 91 | # atof.c -- Implementation for Platforms w/o This Function |
| 92 | # dup2.c -- Implementation for Platforms w/o This Function |
| 93 | # fmod.c -- Implementation for Platforms w/o This Function |
| 94 | # getcwd.c -- Implementation for Platforms w/o This Function |
| 95 | # hypot.c -- Implementation for Platforms w/o This Function |
| 96 | # memmove.c -- Implementation for Platforms w/o This Function |
| 97 | # strdup.c -- Implementation for Platforms w/o This Function |
| 98 | # strerror.c -- Implementation for Platforms w/o This Function |
| 99 | # strtod.c -- Implementation for Platforms w/o This Function |
| 100 | |
| 101 | # sigcheck.c -- Primitive Signal Catcher (SignalModule.c Used Instead) |
| 102 | # pyfpe.c -- Primitive FPE Catcher (Not Referenced by Anyone) |
| 103 | # frozenmain.c |
| 104 | |
| 105 | # Python's Internal Parser |
| 106 | PARSER = \ |
| 107 | Acceler.obj \ |
| 108 | Grammar1.obj \ |
| 109 | MyReadline.obj \ |
| 110 | Node.obj \ |
| 111 | Parser.obj \ |
| 112 | ParseTok.obj \ |
| 113 | Tokenizer.obj |
| 114 | |
| 115 | # Python Object Types |
| 116 | OBJECTS = \ |
| 117 | Abstract.obj \ |
| 118 | ClassObject.obj \ |
| 119 | CObject.obj \ |
| 120 | ComplexObject.obj \ |
| 121 | DictObject.obj \ |
| 122 | FileObject.obj \ |
| 123 | FloatObject.obj \ |
| 124 | FrameObject.obj \ |
| 125 | FuncObject.obj \ |
| 126 | IntObject.obj \ |
| 127 | ListObject.obj \ |
| 128 | LongObject.obj \ |
| 129 | MethodObject.obj \ |
| 130 | ModuleObject.obj \ |
| 131 | Object.obj \ |
| 132 | RangeObject.obj \ |
| 133 | SliceObject.obj \ |
| 134 | StringObject.obj \ |
| 135 | TupleObject.obj \ |
| 136 | TypeObject.obj |
| 137 | |
| 138 | # Omitted Objects (and Reason): |
| 139 | # xxobject.c -- Template to Create Your Own Object Types |
| 140 | |
| 141 | # Extension Modules (Built-In or as Separate DLLs) |
| 142 | MODULES = \ |
| 143 | ArrayModule.obj \ |
| 144 | BinAscii.obj \ |
| 145 | CMathModule.obj \ |
| 146 | cPickle.obj \ |
| 147 | cStringIO.obj \ |
| 148 | ErrnoModule.obj \ |
| 149 | GetBuildInfo.obj \ |
| 150 | GetPathP.obj \ |
| 151 | Main.obj \ |
| 152 | MathModule.obj \ |
| 153 | MD5c.obj \ |
| 154 | MD5Module.obj \ |
| 155 | NewModule.obj \ |
| 156 | Operator.obj \ |
| 157 | PosixModule.obj \ |
| 158 | RegexModule.obj \ |
| 159 | RegExpr.obj \ |
| 160 | ReopModule.obj \ |
| 161 | SelectModule.obj \ |
| 162 | SignalModule.obj \ |
| 163 | SocketModule.obj \ |
| 164 | SoundEx.obj \ |
| 165 | StropModule.obj \ |
| 166 | StructModule.obj \ |
| 167 | TimeModule.obj \ |
| 168 | ThreadModule.obj \ |
| 169 | YUVConvert.obj |
| 170 | |
| 171 | # Omitted Modules (and Description/Reason): |
| 172 | # |
| 173 | # Multimedia: |
| 174 | # almodule.c -- Non-OS/2 Audio Channel Facility (?) |
| 175 | # cdmodule.c -- Wrapper of Non-OS/2 CD Audio Functions |
| 176 | # audioop.c -- Various Compute Operations on Audio Samples |
| 177 | # imageop.c -- Various Compute Operations on Video Samples |
| 178 | # imgfile.c -- Wrapper of SGI ImageLib API |
| 179 | # rgbimgmodule.c -- Non-OS/2 Image Read/Write Capability (Primitive) |
| 180 | # sunaudiodev.c -- Wrapper of Sun Audio Device API |
| 181 | # clmodule.c -- Wrapper of SGI Image/Audio Compression API |
| 182 | |
| 183 | # Database: |
| 184 | # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor) |
| 185 | # bsddbmodule.c -- Wrapper of DBM Database API (BSD Flavor) |
| 186 | # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor) |
| 187 | |
| 188 | # Cryptography: |
| 189 | # cryptmodule.c -- Simple Wrapper for crypt() Function |
| 190 | # rotormodule.c -- Implementation of Enigma Crypto Based on Rotors |
| 191 | |
| 192 | # cgensupport.obj \ |
| 193 | # fcntlmodule.obj \ |
| 194 | # fmmodule.obj \ |
| 195 | # fpectlmodule.obj \ |
| 196 | # fpetestmodule.obj \ |
| 197 | # Unix-Specific getpath.obj \ |
| 198 | # glmodule.obj \ |
| 199 | # grpmodule.obj \ |
| 200 | # mpzmodule.obj \ |
| 201 | # nismodule.obj \ |
| 202 | # parsermodule.obj \ |
| 203 | # pcremodule.obj \ |
| 204 | # pwdmodule.obj \ |
| 205 | # pypcre.obj \ |
| 206 | # readline.obj \ |
| 207 | # resource.obj \ |
| 208 | # sgimodule.obj \ |
| 209 | # svmodule.obj \ |
| 210 | # syslogmodule.obj \ |
| 211 | # termios.obj \ |
| 212 | # timingmodule.obj \ |
| 213 | |
| 214 | # User Interface: |
| 215 | # _tkinter.obj \ |
| 216 | # stdwinmodule.obj \ |
| 217 | # cursesmodule.obj \ |
| 218 | # tclNotify.obj \ |
| 219 | # tkappinit.obj \ |
| 220 | # flmodule.c -- Wrapper of FORMS Library (Screen Forms) |
| 221 | |
| 222 | # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format) |
| 223 | # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2) |
| 224 | # dlmodule.c -- Some Wierd Form of Data Processing Module |
| 225 | # xxmodule.c -- Template to Create Your Own Module |
| 226 | |
| 227 | # |
| 228 | # Standalone Parser Generator Program (Shares Some of Python's Modules) |
| 229 | PGEN = \ |
| 230 | PGenMain.obj \ |
| 231 | PGen.obj \ |
| 232 | PrintGrammar.obj \ |
| 233 | ListNode.obj \ |
| 234 | Grammar.obj \ |
| 235 | BitSet.obj \ |
| 236 | FirstSets.obj \ |
| 237 | MetaGrammar.obj |
| 238 | |
| 239 | # Omitted Parser Elements (and Reason): |
| 240 | # intrcheck.c -- Not Referenced by Anyone (?) |
| 241 | |
| 242 | ################## |
| 243 | # Macros and Flags |
| 244 | ################## |
| 245 | _BASE = /Q /W2 /I$(PROJINCLUDE) |
| 246 | # /Q = Omit IBM Copyright |
| 247 | # /W2 = Show Warnings/Errors Only |
| 248 | # /Fi = Create Precompiled Headers |
| 249 | # /Si = Utilize Precompiled Headers |
| 250 | |
| 251 | _GEN = /G4 /Gm /Gd /B"/STACK:360000" |
| 252 | # /G4 = Generate Code for 486 (Use 386 for Debugger) |
| 253 | # /Gm = Use Multithread Runtime |
| 254 | # /Gd = Dynamically Load Runtime |
| 255 | # /Gs = Remove Code for Stack Probes |
| 256 | # /Gx = Remove C++ Exception-Handling Info |
| 257 | # /Tdp = Generate Code for C++ Templates |
| 258 | # /Rn = Generate Code without a Runtime |
| 259 | # /B"/STACK:n" = Set Stack Size |
| 260 | |
| 261 | _OPT = /O /Gl |
| 262 | # /O = Enable Speed-Optimizations |
| 263 | # /Ol = Pass Code Thru Intermediate Linker |
| 264 | # /Gu = Advise Linker All Ext Data is ID'd |
| 265 | # /Gl = Have Linker Remove Unused Fns |
| 266 | |
| 267 | _DBG = /DHAVE_CONFIG_H /DUSE_SOCKET |
| 268 | # /Ti = Embed Debugger/Analyzer Recs |
| 269 | # /Tm = Enable Debug Memory Fns |
| 270 | # /Tx = Request Full Dump Upon Exception |
| 271 | # /DDEBUG = Enable App-Internal Debugging Code |
| 272 | # /DUSE_SOCKET = |
| 273 | # /DUSE_DL_EXPORT = |
| 274 | |
| 275 | _OUT = |
| 276 | # /Fb = Embed Browser Recs |
| 277 | # /Gh = Generate Code for Profiler Hooks |
| 278 | # /Fl = Output C/C++ Listing Files |
| 279 | # /Lf = Provide Full (Detailed) Listing Files |
| 280 | # /Fm. = Output Linker Map File |
| 281 | # /Ft. = Output C++ Template Resolution Files |
| 282 | |
| 283 | _MAP = /FmNoise\$(.TARGET,B,>.map) |
| 284 | |
| 285 | _DLL = /Ge- |
| 286 | _EXE = /Ge |
| 287 | # /Ge = Create an EXE, not DLL |
| 288 | |
| 289 | CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss |
| 290 | CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) |
| 291 | |
| 292 | ################### |
| 293 | # Primary Target(s) |
| 294 | ################### |
| 295 | All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe |
| 296 | |
| 297 | ############## |
| 298 | # |
| 299 | ############## |
| 300 | |
| 301 | # Object Library of All Essential Python Routines |
| 302 | PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj |
| 303 | %do "%.lib" |
| 304 | |
| 305 | Python15.dll: Compile.obj PyCore.lib Python.def |
| 306 | %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP) |
| 307 | |
| 308 | Compile.obj: Compile.c |
| 309 | %do ".c.obj" CFLAGS+=$(_DLL) |
| 310 | |
| 311 | # Import Library for Using the Python15.dll |
| 312 | Python15.lib: Python.def |
| 313 | %do ".def.lib" |
| 314 | |
| 315 | # Small Program to Start Interpreter in Python15.dll |
| 316 | Python.exe: Python.obj Python15.lib |
| 317 | %do "%.exe" CPPFLAGS+=$(_MAP) |
| 318 | |
| 319 | #Python.obj: Python.c |
| 320 | # %do ".c.obj" CFLAGS+=$(_EXE) |
| 321 | |
| 322 | PGen.exe: $(PGEN) PyCore.lib |
| 323 | %do "%.exe" CPPFLAGS+=$(_MAP) |
| 324 | |
| 325 | ####################### |
| 326 | # Miscellaneous Targets |
| 327 | ####################### |
| 328 | |
| 329 | # Remove Intermediate Targets but Leave Executable Binaries |
| 330 | clean: |
| 331 | -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1 |
| 332 | -- Del /Q /Y Noise >NUL 2>&1 |
| 333 | -- Del /Q $(ERRS) >NUL 2>&1 |
| 334 | |
| 335 | # Remove All Targets, Including Final Binaries |
| 336 | distclean: clean |
| 337 | -- Del /Q PyCore.lib Python15.lib >NUL 2>&1 |
| 338 | -- Del /Q Python15.dll Python.exe >NUL 2>&1 |
| 339 | |
| 340 | release: Python.exe Python15.dll Python15.lib |
| 341 | -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs |
| 342 | -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs |
| 343 | -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib |
| 344 | |
| 345 | test: |
| 346 | python ..\..\lib\test\regrtest.py |
| 347 | |
| 348 | # Update Dependencies on Targets (Uses OpusMAKE Commercial Product) |
| 349 | depend: |
| 350 | D:\OpusMake\os2mkmf -c -s |
| 351 | |
| 352 | ### OPUS MKMF: Do not remove this line! Generated dependencies follow. |
| 353 | |
| 354 | _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 355 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 356 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 357 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 358 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 359 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 360 | traceback.h tupleobject.h |
| 361 | |
| 362 | almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 363 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 364 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 365 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 366 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 367 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 368 | traceback.h tupleobject.h |
| 369 | |
| 370 | arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 371 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 372 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 373 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 374 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 375 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 376 | traceback.h tupleobject.h |
| 377 | |
| 378 | audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 379 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 380 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 381 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 382 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 383 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 384 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 385 | |
| 386 | binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 387 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 388 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 389 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 390 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 391 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 392 | traceback.h tupleobject.h |
| 393 | |
| 394 | bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 395 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 396 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 397 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 398 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 399 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 400 | traceback.h tupleobject.h |
| 401 | |
| 402 | cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 403 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 404 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 405 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 406 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 407 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 408 | traceback.h tupleobject.h |
| 409 | |
| 410 | cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 411 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 412 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 413 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 414 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 415 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 416 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 417 | |
| 418 | clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 419 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 420 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 421 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 422 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 423 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 424 | traceback.h tupleobject.h |
| 425 | |
| 426 | cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 427 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 428 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 429 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 430 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 431 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 432 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 433 | |
| 434 | cpickle.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 435 | pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 436 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 437 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 438 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 439 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 440 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 441 | |
| 442 | cryptmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 443 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 444 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 445 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 446 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 447 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 448 | traceback.h tupleobject.h |
| 449 | |
| 450 | cstringio.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 451 | pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 452 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 453 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 454 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 455 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 456 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 457 | |
| 458 | cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 459 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 460 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 461 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 462 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 463 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 464 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 465 | |
| 466 | dbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 467 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 468 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 469 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 470 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 471 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 472 | traceback.h tupleobject.h |
| 473 | |
| 474 | dlmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 475 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 476 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 477 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 478 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 479 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 480 | traceback.h tupleobject.h |
| 481 | |
| 482 | errno.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 483 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 484 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 485 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 486 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 487 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 488 | traceback.h tupleobject.h |
| 489 | |
| 490 | errnomodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 491 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 492 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 493 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 494 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 495 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 496 | traceback.h tupleobject.h |
| 497 | |
| 498 | fcntlmodule.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 499 | classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 500 | fileobject.h floatobject.h funcobject.h import.h intobject.h \ |
| 501 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 502 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 503 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 504 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 505 | |
| 506 | flmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 507 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 508 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 509 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 510 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 511 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 512 | structmember.h sysmodule.h traceback.h tupleobject.h |
| 513 | |
| 514 | fmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 515 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 516 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 517 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 518 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 519 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 520 | traceback.h tupleobject.h |
| 521 | |
| 522 | fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 523 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 524 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 525 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 526 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 527 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 528 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 529 | |
| 530 | fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 531 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 532 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 533 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 534 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 535 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 536 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 537 | |
| 538 | gdbmmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 539 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 540 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 541 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 542 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 543 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 544 | traceback.h tupleobject.h |
| 545 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 546 | getbuildinfo.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 547 | |
| 548 | getpath.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 549 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 550 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 551 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 552 | object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 553 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 554 | sysmodule.h traceback.h tupleobject.h |
| 555 | |
| 556 | glmodule.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 557 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 558 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 559 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 560 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 561 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 562 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 563 | |
| 564 | grpmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 565 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 566 | grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 567 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 568 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 569 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 570 | traceback.h tupleobject.h |
| 571 | |
| 572 | imageop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 573 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 574 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 575 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 576 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 577 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 578 | traceback.h tupleobject.h |
| 579 | |
| 580 | imgfile.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 581 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 582 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 583 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 584 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 585 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 586 | traceback.h tupleobject.h |
| 587 | |
| 588 | main.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 589 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 590 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 591 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 592 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 593 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 594 | traceback.h tupleobject.h |
| 595 | |
| 596 | mathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 597 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 598 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 599 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 600 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 601 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 602 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 603 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 604 | md5c.obj: pyconfig.h md5.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 605 | |
| 606 | md5module.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 607 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 608 | import.h intobject.h intrcheck.h listobject.h longobject.h md5.h \ |
| 609 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 610 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 611 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 612 | traceback.h tupleobject.h |
| 613 | |
| 614 | mpzmodule.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 615 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 616 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 617 | longintrepr.h longobject.h methodobject.h modsupport.h \ |
| 618 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 619 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 620 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 621 | |
| 622 | newmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 623 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 624 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 625 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 626 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 627 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 628 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 629 | |
| 630 | nismodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 631 | cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 632 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 633 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 634 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 635 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 636 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 637 | |
| 638 | operator.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 639 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 640 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 641 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 642 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 643 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 644 | traceback.h tupleobject.h |
| 645 | |
| 646 | parsermodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 647 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 648 | funcobject.h graminit.h import.h intobject.h intrcheck.h \ |
| 649 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 650 | moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ |
| 651 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 652 | rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \ |
| 653 | traceback.h tupleobject.h |
| 654 | |
| 655 | pcremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 656 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 657 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 658 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 659 | object.h objimpl.h pcre-internal.h pcre.h pydebug.h pyerrors.h \ |
| 660 | pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 661 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 662 | |
| 663 | posix.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 664 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 665 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 666 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 667 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 668 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 669 | sysmodule.h traceback.h tupleobject.h |
| 670 | |
| 671 | posixmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 672 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 673 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 674 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 675 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 676 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 677 | sysmodule.h traceback.h tupleobject.h |
| 678 | |
| 679 | puremodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 680 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 681 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 682 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 683 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 684 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 685 | traceback.h tupleobject.h |
| 686 | |
| 687 | pwdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 688 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 689 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 690 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 691 | object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 692 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 693 | sysmodule.h traceback.h tupleobject.h |
| 694 | |
| 695 | pypcre.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 696 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 697 | graminit.h import.h intobject.h intrcheck.h listobject.h \ |
| 698 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 699 | myproto.h object.h objimpl.h pcre-internal.h pcre.h pydebug.h \ |
| 700 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 701 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 702 | |
| 703 | readline.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 704 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 705 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 706 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 707 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 708 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 709 | traceback.h tupleobject.h |
| 710 | |
| 711 | regexmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 712 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 713 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 714 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 715 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 716 | pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \ |
| 717 | sysmodule.h traceback.h tupleobject.h |
| 718 | |
| 719 | regexpr.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 720 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 721 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 722 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 723 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 724 | pystate.h python.h pythonrun.h rangeobject.h regexpr.h \ |
| 725 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 726 | |
| 727 | reopmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 728 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 729 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 730 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 731 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 732 | pythonrun.h rangeobject.h regexpr.h sliceobject.h stringobject.h \ |
| 733 | sysmodule.h traceback.h tupleobject.h |
| 734 | |
| 735 | resource.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 736 | cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 737 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 738 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 739 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 740 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 741 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 742 | |
| 743 | rgbimgmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 744 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 745 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 746 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 747 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 748 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 749 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 750 | |
| 751 | rotormodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 752 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 753 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 754 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 755 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 756 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 757 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 758 | |
| 759 | selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 760 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 761 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 762 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 763 | myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \ |
| 764 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 765 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 766 | |
| 767 | sgimodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 768 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 769 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 770 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 771 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 772 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 773 | traceback.h tupleobject.h |
| 774 | |
| 775 | signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 776 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 777 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 778 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 779 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 780 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 781 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 782 | |
| 783 | socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \ |
| 784 | c:\mptn\include\sys\socket.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 785 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 786 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 787 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 788 | myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \ |
| 789 | pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 790 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 791 | |
| 792 | soundex.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 793 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 794 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 795 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 796 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 797 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 798 | traceback.h tupleobject.h |
| 799 | |
| 800 | stdwinmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 801 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 802 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 803 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 804 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 805 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 806 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 807 | |
| 808 | stropmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 809 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 810 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 811 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 812 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 813 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 814 | traceback.h tupleobject.h |
| 815 | |
| 816 | structmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 817 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 818 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 819 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 820 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 821 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 822 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 823 | |
| 824 | sunaudiodev.obj: abstract.h c:\mptn\include\sys\ioctl.h ceval.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 825 | classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 826 | fileobject.h floatobject.h funcobject.h import.h intobject.h \ |
| 827 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 828 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 829 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 830 | sliceobject.h stringobject.h structmember.h sysmodule.h \ |
| 831 | traceback.h tupleobject.h |
| 832 | |
| 833 | svmodule.obj: abstract.h c:\mptn\include\sys\time.h ceval.h classobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 834 | cobject.h compile.h complexobject.h pyconfig.h dictobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 835 | fileobject.h floatobject.h funcobject.h import.h intobject.h \ |
| 836 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 837 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 838 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 839 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h \ |
| 840 | yuv.h |
| 841 | |
| 842 | syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 843 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 844 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 845 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 846 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 847 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 848 | stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h |
| 849 | |
| 850 | termios.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 851 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 852 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 853 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 854 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 855 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 856 | traceback.h tupleobject.h |
| 857 | |
| 858 | threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 859 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 860 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 861 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 862 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 863 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 864 | stringobject.h sysmodule.h thread.h traceback.h tupleobject.h |
| 865 | |
| 866 | timemodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 867 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 868 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 869 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 870 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 871 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 872 | sysmodule.h traceback.h tupleobject.h |
| 873 | |
| 874 | timingmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 875 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 876 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 877 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 878 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 879 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 880 | stringobject.h sysmodule.h timing.h traceback.h tupleobject.h |
| 881 | |
| 882 | xxmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 883 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 884 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 885 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 886 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 887 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 888 | traceback.h tupleobject.h |
| 889 | |
| 890 | yuvconvert.obj: yuv.h |
| 891 | |
| 892 | zlibmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 893 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 894 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 895 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 896 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 897 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 898 | traceback.h tupleobject.h |
| 899 | |
| 900 | abstract.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 901 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 902 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 903 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 904 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 905 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 906 | traceback.h tupleobject.h |
| 907 | |
| 908 | classobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 909 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 910 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 911 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 912 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 913 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 914 | structmember.h sysmodule.h traceback.h tupleobject.h |
| 915 | |
| 916 | cobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 917 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 918 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 919 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 920 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 921 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 922 | traceback.h tupleobject.h |
| 923 | |
| 924 | complexobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 925 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 926 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 927 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 928 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 929 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 930 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 931 | |
| 932 | dictobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 933 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 934 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 935 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 936 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 937 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 938 | traceback.h tupleobject.h |
| 939 | |
| 940 | fileobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 941 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 942 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 943 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 944 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 945 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 946 | structmember.h sysmodule.h traceback.h tupleobject.h |
| 947 | |
| 948 | floatobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 949 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 950 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 951 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 952 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 953 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 954 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 955 | |
| 956 | frameobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 957 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 958 | frameobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 959 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 960 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ |
| 961 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 962 | rangeobject.h sliceobject.h stringobject.h structmember.h \ |
| 963 | sysmodule.h traceback.h tupleobject.h |
| 964 | |
| 965 | funcobject.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 966 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 967 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 968 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 969 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 970 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 971 | stringobject.h structmember.h sysmodule.h traceback.h \ |
| 972 | tupleobject.h |
| 973 | |
| 974 | intobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 975 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 976 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 977 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 978 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 979 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 980 | traceback.h tupleobject.h |
| 981 | |
| 982 | listobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 983 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 984 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 985 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 986 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 987 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 988 | traceback.h tupleobject.h |
| 989 | |
| 990 | longobject.obj: abstract.h assert.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 991 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 992 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 993 | longintrepr.h longobject.h methodobject.h modsupport.h \ |
| 994 | moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \ |
| 995 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 996 | rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ |
| 997 | tupleobject.h |
| 998 | |
| 999 | methodobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1000 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1001 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1002 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1003 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1004 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1005 | stringobject.h sysmodule.h token.h traceback.h tupleobject.h |
| 1006 | |
| 1007 | moduleobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1008 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1009 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1010 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1011 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1012 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1013 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1014 | |
| 1015 | object.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1016 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1017 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1018 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1019 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1020 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1021 | traceback.h tupleobject.h |
| 1022 | |
| 1023 | rangeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1024 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1025 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1026 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1027 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1028 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1029 | traceback.h tupleobject.h |
| 1030 | |
| 1031 | sliceobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1032 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1033 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1034 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1035 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1036 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1037 | traceback.h tupleobject.h |
| 1038 | |
| 1039 | stringobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1040 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1041 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1042 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1043 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1044 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1045 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1046 | |
| 1047 | tupleobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1048 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1049 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1050 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1051 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1052 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1053 | traceback.h tupleobject.h |
| 1054 | |
| 1055 | typeobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1056 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1057 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1058 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1059 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1060 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1061 | traceback.h tupleobject.h |
| 1062 | |
| 1063 | xxobject.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1064 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1065 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1066 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1067 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1068 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1069 | traceback.h tupleobject.h |
| 1070 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1071 | acceler.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1072 | parser.h pgenheaders.h pydebug.h token.h |
| 1073 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1074 | bitset.obj: bitset.h pyconfig.h mymalloc.h myproto.h pgenheaders.h pydebug.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1075 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1076 | firstsets.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1077 | pgenheaders.h pydebug.h token.h |
| 1078 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1079 | grammar.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1080 | pgenheaders.h pydebug.h token.h |
| 1081 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1082 | grammar1.obj: assert.h bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1083 | pgenheaders.h pydebug.h token.h |
| 1084 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1085 | intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1086 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1087 | listnode.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1088 | token.h |
| 1089 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1090 | metagrammar.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1091 | myproto.h pgen.h pgenheaders.h pydebug.h |
| 1092 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1093 | myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1094 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1095 | node.obj: pyconfig.h mymalloc.h myproto.h node.h pgenheaders.h pydebug.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1096 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1097 | parser.obj: assert.h bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1098 | myproto.h node.h parser.h pgenheaders.h pydebug.h token.h |
| 1099 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1100 | parsetok.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1101 | node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \ |
| 1102 | tokenizer.h |
| 1103 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1104 | pgen.obj: assert.h bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1105 | myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h |
| 1106 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1107 | pgenmain.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h node.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1108 | parsetok.h pgen.h pgenheaders.h pydebug.h |
| 1109 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1110 | printgrammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1111 | pgenheaders.h pydebug.h |
| 1112 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1113 | tokenizer.obj: pyconfig.h errcode.h mymalloc.h myproto.h pgenheaders.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1114 | pydebug.h token.h tokenizer.h |
| 1115 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1116 | atof.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1117 | |
| 1118 | bltinmodule.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1119 | complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1120 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 1121 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 1122 | moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \ |
| 1123 | objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1124 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1125 | traceback.h tupleobject.h |
| 1126 | |
| 1127 | ceval.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1128 | complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1129 | floatobject.h frameobject.h funcobject.h import.h intobject.h \ |
| 1130 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 1131 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ |
| 1132 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 1133 | rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ |
| 1134 | tupleobject.h |
| 1135 | |
| 1136 | compile.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1137 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1138 | funcobject.h graminit.h import.h intobject.h intrcheck.h \ |
| 1139 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 1140 | moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ |
| 1141 | opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1142 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 1143 | structmember.h sysmodule.h token.h traceback.h tupleobject.h |
| 1144 | |
| 1145 | errors.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1146 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1147 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1148 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1149 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1150 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1151 | traceback.h tupleobject.h |
| 1152 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1153 | fmod.obj: pyconfig.h mymath.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1154 | |
| 1155 | frozen.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1156 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1157 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1158 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1159 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1160 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1161 | traceback.h tupleobject.h |
| 1162 | |
| 1163 | frozenmain.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1164 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1165 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1166 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1167 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1168 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1169 | traceback.h tupleobject.h |
| 1170 | |
| 1171 | getargs.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1172 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1173 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1174 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1175 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1176 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1177 | traceback.h tupleobject.h |
| 1178 | |
| 1179 | getcompiler.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1180 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1181 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1182 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1183 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1184 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1185 | traceback.h tupleobject.h |
| 1186 | |
| 1187 | getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1188 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1189 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1190 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1191 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1192 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1193 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1194 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1195 | getmtime.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1196 | |
| 1197 | getplatform.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1198 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1199 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1200 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1201 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1202 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1203 | traceback.h tupleobject.h |
| 1204 | |
| 1205 | getversion.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1206 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1207 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1208 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1209 | object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \ |
| 1210 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1211 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1212 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1213 | graminit.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1214 | pgenheaders.h pydebug.h |
| 1215 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1216 | hypot.obj: pyconfig.h mymath.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1217 | |
| 1218 | import.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1219 | complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1220 | fileobject.h floatobject.h funcobject.h import.h importdl.h \ |
| 1221 | intobject.h intrcheck.h listobject.h longobject.h marshal.h \ |
| 1222 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1223 | node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ |
| 1224 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1225 | stringobject.h sysmodule.h token.h traceback.h tupleobject.h |
| 1226 | |
| 1227 | importdl.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1228 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1229 | import.h importdl.h intobject.h intrcheck.h listobject.h \ |
| 1230 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1231 | myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ |
| 1232 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1233 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1234 | |
| 1235 | marshal.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1236 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1237 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1238 | longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \ |
| 1239 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 1240 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 1241 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1242 | |
| 1243 | modsupport.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1244 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1245 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1246 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1247 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1248 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1249 | traceback.h tupleobject.h |
| 1250 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1251 | mystrtoul.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1252 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1253 | pyfpe.obj: pyconfig.h pyfpe.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1254 | |
| 1255 | pystate.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1256 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1257 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1258 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1259 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1260 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1261 | traceback.h tupleobject.h |
| 1262 | |
| 1263 | pythonrun.obj: abstract.h bitset.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1264 | compile.h complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1265 | fileobject.h floatobject.h funcobject.h grammar.h import.h \ |
| 1266 | intobject.h intrcheck.h listobject.h longobject.h marshal.h \ |
| 1267 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1268 | node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \ |
| 1269 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1270 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1271 | |
| 1272 | sigcheck.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1273 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1274 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1275 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1276 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1277 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1278 | traceback.h tupleobject.h |
| 1279 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1280 | strdup.obj: pyconfig.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1281 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1282 | strtod.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1283 | |
| 1284 | structmember.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1285 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1286 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1287 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1288 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1289 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1290 | stringobject.h structmember.h sysmodule.h traceback.h \ |
| 1291 | tupleobject.h |
| 1292 | |
| 1293 | sysmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1294 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1295 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1296 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1297 | object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 1298 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 1299 | sysmodule.h traceback.h tupleobject.h |
| 1300 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1301 | thread.obj: pyconfig.h thread.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1302 | |
| 1303 | traceback.obj: abstract.h ceval.h classobject.h cobject.h compile.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1304 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1305 | frameobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 1306 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 1307 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \ |
| 1308 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 1309 | rangeobject.h sliceobject.h stringobject.h structmember.h \ |
| 1310 | sysmodule.h traceback.h tupleobject.h |