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 \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 126 | ListObject.obj \ |
| 127 | LongObject.obj \ |
| 128 | MethodObject.obj \ |
| 129 | ModuleObject.obj \ |
| 130 | Object.obj \ |
| 131 | RangeObject.obj \ |
| 132 | SliceObject.obj \ |
| 133 | StringObject.obj \ |
| 134 | TupleObject.obj \ |
| 135 | TypeObject.obj |
| 136 | |
| 137 | # Omitted Objects (and Reason): |
| 138 | # xxobject.c -- Template to Create Your Own Object Types |
| 139 | |
| 140 | # Extension Modules (Built-In or as Separate DLLs) |
| 141 | MODULES = \ |
| 142 | ArrayModule.obj \ |
| 143 | BinAscii.obj \ |
| 144 | CMathModule.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 145 | cStringIO.obj \ |
| 146 | ErrnoModule.obj \ |
| 147 | GetBuildInfo.obj \ |
| 148 | GetPathP.obj \ |
| 149 | Main.obj \ |
| 150 | MathModule.obj \ |
| 151 | MD5c.obj \ |
| 152 | MD5Module.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 153 | Operator.obj \ |
| 154 | PosixModule.obj \ |
| 155 | RegexModule.obj \ |
| 156 | RegExpr.obj \ |
| 157 | ReopModule.obj \ |
| 158 | SelectModule.obj \ |
| 159 | SignalModule.obj \ |
| 160 | SocketModule.obj \ |
| 161 | SoundEx.obj \ |
| 162 | StropModule.obj \ |
| 163 | StructModule.obj \ |
| 164 | TimeModule.obj \ |
| 165 | ThreadModule.obj \ |
| 166 | YUVConvert.obj |
| 167 | |
| 168 | # Omitted Modules (and Description/Reason): |
| 169 | # |
| 170 | # Multimedia: |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 171 | # audioop.c -- Various Compute Operations on Audio Samples |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 172 | |
| 173 | # Database: |
| 174 | # dbmmodule.c -- Wrapper of DBM Database API (Generic Flavor) |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 175 | # gdbmmodule.c -- Wrapper of DBM Database API (GNU Flavor) |
| 176 | |
| 177 | # Cryptography: |
| 178 | # cryptmodule.c -- Simple Wrapper for crypt() Function |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 179 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 180 | # fcntlmodule.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 181 | # fpectlmodule.obj \ |
| 182 | # fpetestmodule.obj \ |
| 183 | # Unix-Specific getpath.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 184 | # grpmodule.obj \ |
| 185 | # mpzmodule.obj \ |
| 186 | # nismodule.obj \ |
| 187 | # parsermodule.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 188 | # pwdmodule.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 189 | # readline.obj \ |
| 190 | # resource.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 191 | # syslogmodule.obj \ |
| 192 | # termios.obj \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 193 | |
| 194 | # User Interface: |
| 195 | # _tkinter.obj \ |
| 196 | # stdwinmodule.obj \ |
| 197 | # cursesmodule.obj \ |
| 198 | # tclNotify.obj \ |
| 199 | # tkappinit.obj \ |
| 200 | # flmodule.c -- Wrapper of FORMS Library (Screen Forms) |
| 201 | |
| 202 | # zlibmodule.c -- Wrapper of ZLib Compression API (GZip Format) |
| 203 | # puremodule.c -- Wrapper of Purify Debugging API (Probably Non-OS/2) |
| 204 | # dlmodule.c -- Some Wierd Form of Data Processing Module |
| 205 | # xxmodule.c -- Template to Create Your Own Module |
| 206 | |
| 207 | # |
| 208 | # Standalone Parser Generator Program (Shares Some of Python's Modules) |
| 209 | PGEN = \ |
| 210 | PGenMain.obj \ |
| 211 | PGen.obj \ |
| 212 | PrintGrammar.obj \ |
| 213 | ListNode.obj \ |
| 214 | Grammar.obj \ |
| 215 | BitSet.obj \ |
| 216 | FirstSets.obj \ |
| 217 | MetaGrammar.obj |
| 218 | |
| 219 | # Omitted Parser Elements (and Reason): |
| 220 | # intrcheck.c -- Not Referenced by Anyone (?) |
| 221 | |
| 222 | ################## |
| 223 | # Macros and Flags |
| 224 | ################## |
| 225 | _BASE = /Q /W2 /I$(PROJINCLUDE) |
| 226 | # /Q = Omit IBM Copyright |
| 227 | # /W2 = Show Warnings/Errors Only |
| 228 | # /Fi = Create Precompiled Headers |
| 229 | # /Si = Utilize Precompiled Headers |
| 230 | |
| 231 | _GEN = /G4 /Gm /Gd /B"/STACK:360000" |
| 232 | # /G4 = Generate Code for 486 (Use 386 for Debugger) |
| 233 | # /Gm = Use Multithread Runtime |
| 234 | # /Gd = Dynamically Load Runtime |
| 235 | # /Gs = Remove Code for Stack Probes |
| 236 | # /Gx = Remove C++ Exception-Handling Info |
| 237 | # /Tdp = Generate Code for C++ Templates |
| 238 | # /Rn = Generate Code without a Runtime |
| 239 | # /B"/STACK:n" = Set Stack Size |
| 240 | |
| 241 | _OPT = /O /Gl |
| 242 | # /O = Enable Speed-Optimizations |
| 243 | # /Ol = Pass Code Thru Intermediate Linker |
| 244 | # /Gu = Advise Linker All Ext Data is ID'd |
| 245 | # /Gl = Have Linker Remove Unused Fns |
| 246 | |
| 247 | _DBG = /DHAVE_CONFIG_H /DUSE_SOCKET |
| 248 | # /Ti = Embed Debugger/Analyzer Recs |
| 249 | # /Tm = Enable Debug Memory Fns |
| 250 | # /Tx = Request Full Dump Upon Exception |
| 251 | # /DDEBUG = Enable App-Internal Debugging Code |
| 252 | # /DUSE_SOCKET = |
| 253 | # /DUSE_DL_EXPORT = |
| 254 | |
| 255 | _OUT = |
| 256 | # /Fb = Embed Browser Recs |
| 257 | # /Gh = Generate Code for Profiler Hooks |
| 258 | # /Fl = Output C/C++ Listing Files |
| 259 | # /Lf = Provide Full (Detailed) Listing Files |
| 260 | # /Fm. = Output Linker Map File |
| 261 | # /Ft. = Output C++ Template Resolution Files |
| 262 | |
| 263 | _MAP = /FmNoise\$(.TARGET,B,>.map) |
| 264 | |
| 265 | _DLL = /Ge- |
| 266 | _EXE = /Ge |
| 267 | # /Ge = Create an EXE, not DLL |
| 268 | |
| 269 | CFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) /Ss |
| 270 | CPPFLAGS = $(_BASE) $(_GEN) $(_OPT) $(_DBG) $(_OUT) $(_EXE) |
| 271 | |
| 272 | ################### |
| 273 | # Primary Target(s) |
| 274 | ################### |
| 275 | All: obj noise PyCore.lib Python15.lib Python15.dll Python.exe PGen.exe |
| 276 | |
| 277 | ############## |
| 278 | # |
| 279 | ############## |
| 280 | |
| 281 | # Object Library of All Essential Python Routines |
| 282 | PyCore.lib: $(MODULES) $(OBJECTS) $(PARSER) $(PYTHON) Config.obj |
| 283 | %do "%.lib" |
| 284 | |
| 285 | Python15.dll: Compile.obj PyCore.lib Python.def |
| 286 | %do "%.dll" CPPFLAGS+=/B"/NOE" CPPFLAGS+=$(_MAP) |
| 287 | |
| 288 | Compile.obj: Compile.c |
| 289 | %do ".c.obj" CFLAGS+=$(_DLL) |
| 290 | |
| 291 | # Import Library for Using the Python15.dll |
| 292 | Python15.lib: Python.def |
| 293 | %do ".def.lib" |
| 294 | |
| 295 | # Small Program to Start Interpreter in Python15.dll |
| 296 | Python.exe: Python.obj Python15.lib |
| 297 | %do "%.exe" CPPFLAGS+=$(_MAP) |
| 298 | |
| 299 | #Python.obj: Python.c |
| 300 | # %do ".c.obj" CFLAGS+=$(_EXE) |
| 301 | |
| 302 | PGen.exe: $(PGEN) PyCore.lib |
| 303 | %do "%.exe" CPPFLAGS+=$(_MAP) |
| 304 | |
| 305 | ####################### |
| 306 | # Miscellaneous Targets |
| 307 | ####################### |
| 308 | |
| 309 | # Remove Intermediate Targets but Leave Executable Binaries |
| 310 | clean: |
| 311 | -- Del /Q $(.PATH.obj)\*.obj >NUL 2>&1 |
| 312 | -- Del /Q /Y Noise >NUL 2>&1 |
| 313 | -- Del /Q $(ERRS) >NUL 2>&1 |
| 314 | |
| 315 | # Remove All Targets, Including Final Binaries |
| 316 | distclean: clean |
| 317 | -- Del /Q PyCore.lib Python15.lib >NUL 2>&1 |
| 318 | -- Del /Q Python15.dll Python.exe >NUL 2>&1 |
| 319 | |
| 320 | release: Python.exe Python15.dll Python15.lib |
| 321 | -- @Echo Y | copy /U $(.SOURCES,M"*.exe") D:\EXEs |
| 322 | -- @Echo Y | copy /U $(.SOURCES,M"*.dll") D:\DLLs |
| 323 | -- @Echo Y | copy /U $(.SOURCES,M"*.lib") E:\Tau\Lib |
| 324 | |
| 325 | test: |
| 326 | python ..\..\lib\test\regrtest.py |
| 327 | |
| 328 | # Update Dependencies on Targets (Uses OpusMAKE Commercial Product) |
| 329 | depend: |
| 330 | D:\OpusMake\os2mkmf -c -s |
| 331 | |
| 332 | ### OPUS MKMF: Do not remove this line! Generated dependencies follow. |
| 333 | |
| 334 | _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] | 335 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 336 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 337 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 338 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 339 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 340 | traceback.h tupleobject.h |
| 341 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 342 | 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] | 343 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 344 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 345 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 346 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 347 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 348 | traceback.h tupleobject.h |
| 349 | |
| 350 | 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] | 351 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 352 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 353 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 354 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 355 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 356 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 357 | |
| 358 | 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] | 359 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 360 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 361 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 362 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 363 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 364 | traceback.h tupleobject.h |
| 365 | |
| 366 | 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] | 367 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 368 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 369 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 370 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 371 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 372 | traceback.h tupleobject.h |
| 373 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 374 | 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] | 375 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 376 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 377 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 378 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 379 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 380 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 381 | |
| 382 | 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] | 383 | pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 384 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 385 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 386 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 387 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 388 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 389 | |
| 390 | 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] | 391 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 392 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 393 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 394 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 395 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 396 | traceback.h tupleobject.h |
| 397 | |
| 398 | 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] | 399 | pyconfig.h cstringio.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 400 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 401 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 402 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 403 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 404 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 405 | |
| 406 | cursesmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 407 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 408 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 409 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 410 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 411 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 412 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 413 | |
| 414 | 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] | 415 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 416 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 417 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 418 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 419 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 420 | traceback.h tupleobject.h |
| 421 | |
| 422 | 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] | 423 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 424 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 425 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 426 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 427 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 428 | traceback.h tupleobject.h |
| 429 | |
| 430 | 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] | 431 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 432 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 433 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 434 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 435 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 436 | traceback.h tupleobject.h |
| 437 | |
| 438 | 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] | 439 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 440 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 441 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 442 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 443 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 444 | traceback.h tupleobject.h |
| 445 | |
| 446 | 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] | 447 | classobject.h cobject.h complexobject.h pyconfig.h dictobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 448 | fileobject.h floatobject.h funcobject.h import.h intobject.h \ |
| 449 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 450 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 451 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 452 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 453 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 454 | fpectlmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 455 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 456 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 457 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 458 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 459 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 460 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 461 | |
| 462 | fpetestmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 463 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 464 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 465 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 466 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 467 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 468 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 469 | |
| 470 | 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] | 471 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 472 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 473 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 474 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 475 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 476 | traceback.h tupleobject.h |
| 477 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 478 | getbuildinfo.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 479 | |
| 480 | 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] | 481 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 482 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 483 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 484 | object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 485 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 486 | sysmodule.h traceback.h tupleobject.h |
| 487 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 488 | 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] | 489 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 490 | grp.h import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 491 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 492 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 493 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 494 | traceback.h tupleobject.h |
| 495 | |
| 496 | 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] | 497 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 498 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 499 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 500 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 501 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 502 | traceback.h tupleobject.h |
| 503 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 504 | 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] | 505 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 506 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 507 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 508 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 509 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 510 | traceback.h tupleobject.h |
| 511 | |
| 512 | 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] | 513 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 514 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 515 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 516 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 517 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 518 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 519 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 520 | mpzmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 521 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 522 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 523 | longintrepr.h longobject.h methodobject.h modsupport.h \ |
| 524 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 525 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 526 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 527 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 528 | 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] | 529 | cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 530 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 531 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 532 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 533 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 534 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 535 | |
| 536 | 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] | 537 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 538 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 539 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 540 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 541 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 542 | traceback.h tupleobject.h |
| 543 | |
| 544 | 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] | 545 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 546 | funcobject.h graminit.h import.h intobject.h intrcheck.h \ |
| 547 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 548 | moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ |
| 549 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 550 | rangeobject.h sliceobject.h stringobject.h sysmodule.h token.h \ |
| 551 | traceback.h tupleobject.h |
| 552 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 553 | 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] | 554 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 555 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 556 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 557 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 558 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 559 | sysmodule.h traceback.h tupleobject.h |
| 560 | |
| 561 | 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] | 562 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 563 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 564 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 565 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 566 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 567 | sysmodule.h traceback.h tupleobject.h |
| 568 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 569 | 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] | 570 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 571 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 572 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 573 | object.h objimpl.h pwd.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 574 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 575 | sysmodule.h traceback.h tupleobject.h |
| 576 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 577 | 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] | 578 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 579 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 580 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 581 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 582 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 583 | traceback.h tupleobject.h |
| 584 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 585 | 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] | 586 | cobject.h complexobject.h pyconfig.h dictobject.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 587 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 588 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 589 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 590 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 591 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 592 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 593 | selectmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 594 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 595 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 596 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 597 | myproto.h myselect.h mytime.h object.h objimpl.h pydebug.h \ |
| 598 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 599 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 600 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 601 | signalmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 602 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 603 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 604 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 605 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 606 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 607 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 608 | |
| 609 | socketmodule.obj: abstract.h c:\mptn\include\netinet\in.h \ |
| 610 | 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] | 611 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 612 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 613 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 614 | myproto.h mytime.h netdb.h object.h objimpl.h pydebug.h pyerrors.h \ |
| 615 | pyfpe.h pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 616 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 617 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 618 | structmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 619 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 620 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 621 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 622 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 623 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 624 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 625 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 626 | syslogmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 627 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 628 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 629 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 630 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 631 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 632 | stringobject.h syslog.h sysmodule.h traceback.h tupleobject.h |
| 633 | |
| 634 | 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] | 635 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 636 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 637 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 638 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 639 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 640 | traceback.h tupleobject.h |
| 641 | |
| 642 | threadmodule.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 643 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 644 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 645 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 646 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 647 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 648 | stringobject.h sysmodule.h thread.h traceback.h tupleobject.h |
| 649 | |
| 650 | 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] | 651 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 652 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 653 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 654 | mytime.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 655 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 656 | sysmodule.h traceback.h tupleobject.h |
| 657 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 658 | 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] | 659 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 660 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 661 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 662 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 663 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 664 | traceback.h tupleobject.h |
| 665 | |
| 666 | yuvconvert.obj: yuv.h |
| 667 | |
| 668 | 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] | 669 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 670 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 671 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 672 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 673 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 674 | traceback.h tupleobject.h |
| 675 | |
| 676 | 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] | 677 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 678 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 679 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 680 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 681 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 682 | traceback.h tupleobject.h |
| 683 | |
| 684 | 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] | 685 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 686 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 687 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 688 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 689 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 690 | structmember.h sysmodule.h traceback.h tupleobject.h |
| 691 | |
| 692 | 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] | 693 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 694 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 695 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 696 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 697 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 698 | traceback.h tupleobject.h |
| 699 | |
| 700 | complexobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 701 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 702 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 703 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 704 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 705 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 706 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 707 | |
| 708 | 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] | 709 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 710 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 711 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 712 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 713 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 714 | traceback.h tupleobject.h |
| 715 | |
| 716 | 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] | 717 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 718 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 719 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 720 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 721 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 722 | structmember.h sysmodule.h traceback.h tupleobject.h |
| 723 | |
| 724 | 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] | 725 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 726 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 727 | methodobject.h modsupport.h moduleobject.h mymalloc.h mymath.h \ |
| 728 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 729 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 730 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 731 | |
| 732 | 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] | 733 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 734 | frameobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 735 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 736 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ |
| 737 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 738 | rangeobject.h sliceobject.h stringobject.h structmember.h \ |
| 739 | sysmodule.h traceback.h tupleobject.h |
| 740 | |
| 741 | 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] | 742 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 743 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 744 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 745 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 746 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 747 | stringobject.h structmember.h sysmodule.h traceback.h \ |
| 748 | tupleobject.h |
| 749 | |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 750 | 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] | 751 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 752 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 753 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 754 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 755 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 756 | traceback.h tupleobject.h |
| 757 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 758 | longobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 759 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 760 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 761 | longintrepr.h longobject.h methodobject.h modsupport.h \ |
| 762 | moduleobject.h mymalloc.h mymath.h myproto.h object.h objimpl.h \ |
| 763 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 764 | rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ |
| 765 | tupleobject.h |
| 766 | |
| 767 | methodobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 768 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 769 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 770 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 771 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 772 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 773 | stringobject.h sysmodule.h token.h traceback.h tupleobject.h |
| 774 | |
| 775 | moduleobject.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 | 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] | 784 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 785 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 786 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 787 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 788 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 789 | traceback.h tupleobject.h |
| 790 | |
| 791 | 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] | 792 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 793 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 794 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 795 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 796 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 797 | traceback.h tupleobject.h |
| 798 | |
| 799 | 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] | 800 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 801 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 802 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 803 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 804 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 805 | traceback.h tupleobject.h |
| 806 | |
| 807 | stringobject.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 808 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 809 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 810 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 811 | mymath.h myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 812 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 813 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 814 | |
| 815 | 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] | 816 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 817 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 818 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 819 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 820 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 821 | traceback.h tupleobject.h |
| 822 | |
| 823 | 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] | 824 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 825 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 826 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 827 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 828 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 829 | traceback.h tupleobject.h |
| 830 | |
| 831 | 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] | 832 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 833 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 834 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 835 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 836 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 837 | traceback.h tupleobject.h |
| 838 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 839 | 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] | 840 | parser.h pgenheaders.h pydebug.h token.h |
| 841 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 842 | 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] | 843 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 844 | 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] | 845 | pgenheaders.h pydebug.h token.h |
| 846 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 847 | grammar.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 848 | pgenheaders.h pydebug.h token.h |
| 849 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 850 | grammar1.obj: bitset.h pyconfig.h grammar.h mymalloc.h myproto.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 851 | pgenheaders.h pydebug.h token.h |
| 852 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 853 | intrcheck.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 854 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 855 | 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] | 856 | token.h |
| 857 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 858 | 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] | 859 | myproto.h pgen.h pgenheaders.h pydebug.h |
| 860 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 861 | myreadline.obj: pyconfig.h intrcheck.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 862 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 863 | 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] | 864 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 865 | parser.obj: bitset.h pyconfig.h errcode.h grammar.h mymalloc.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 866 | myproto.h node.h parser.h pgenheaders.h pydebug.h token.h |
| 867 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 868 | 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] | 869 | node.h parser.h parsetok.h pgenheaders.h pydebug.h token.h \ |
| 870 | tokenizer.h |
| 871 | |
Tim Peters | 1ca1296 | 2001-12-04 03:18:48 +0000 | [diff] [blame] | 872 | pgen.obj: bitset.h pyconfig.h grammar.h metagrammar.h mymalloc.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 873 | myproto.h node.h pgen.h pgenheaders.h pydebug.h token.h |
| 874 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 875 | 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] | 876 | parsetok.h pgen.h pgenheaders.h pydebug.h |
| 877 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 878 | 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] | 879 | pgenheaders.h pydebug.h |
| 880 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 881 | 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] | 882 | pydebug.h token.h tokenizer.h |
| 883 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 884 | atof.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 885 | |
| 886 | 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] | 887 | complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 888 | floatobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 889 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 890 | moduleobject.h mymalloc.h mymath.h myproto.h node.h object.h \ |
| 891 | objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 892 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 893 | traceback.h tupleobject.h |
| 894 | |
| 895 | 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] | 896 | complexobject.h pyconfig.h dictobject.h eval.h fileobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 897 | floatobject.h frameobject.h funcobject.h import.h intobject.h \ |
| 898 | intrcheck.h listobject.h longobject.h methodobject.h modsupport.h \ |
| 899 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h opcode.h \ |
| 900 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 901 | rangeobject.h sliceobject.h stringobject.h sysmodule.h traceback.h \ |
| 902 | tupleobject.h |
| 903 | |
| 904 | 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] | 905 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 906 | funcobject.h graminit.h import.h intobject.h intrcheck.h \ |
| 907 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 908 | moduleobject.h mymalloc.h myproto.h node.h object.h objimpl.h \ |
| 909 | opcode.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 910 | pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 911 | structmember.h sysmodule.h token.h traceback.h tupleobject.h |
| 912 | |
| 913 | 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] | 914 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 915 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 916 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 917 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 918 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 919 | traceback.h tupleobject.h |
| 920 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 921 | fmod.obj: pyconfig.h mymath.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 922 | |
| 923 | 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] | 924 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 925 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 926 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 927 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 928 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 929 | traceback.h tupleobject.h |
| 930 | |
| 931 | 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] | 932 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 933 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 934 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 935 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 936 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 937 | traceback.h tupleobject.h |
| 938 | |
| 939 | 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] | 940 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 941 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 942 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 943 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 944 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 945 | traceback.h tupleobject.h |
| 946 | |
| 947 | 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] | 948 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 949 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 950 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 951 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 952 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 953 | traceback.h tupleobject.h |
| 954 | |
| 955 | getcopyright.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 956 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 957 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 958 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 959 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 960 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 961 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 962 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 963 | getmtime.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 964 | |
| 965 | 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] | 966 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 967 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 968 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 969 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 970 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 971 | traceback.h tupleobject.h |
| 972 | |
| 973 | 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] | 974 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 975 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 976 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 977 | object.h objimpl.h patchlevel.h pydebug.h pyerrors.h pyfpe.h \ |
| 978 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 979 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 980 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 981 | 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] | 982 | pgenheaders.h pydebug.h |
| 983 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 984 | hypot.obj: pyconfig.h mymath.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 985 | |
| 986 | 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] | 987 | complexobject.h pyconfig.h dictobject.h errcode.h eval.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 988 | fileobject.h floatobject.h funcobject.h import.h importdl.h \ |
| 989 | intobject.h intrcheck.h listobject.h longobject.h marshal.h \ |
| 990 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 991 | node.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ |
| 992 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 993 | stringobject.h sysmodule.h token.h traceback.h tupleobject.h |
| 994 | |
| 995 | 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] | 996 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 997 | import.h importdl.h intobject.h intrcheck.h listobject.h \ |
| 998 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 999 | myproto.h object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h \ |
| 1000 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1001 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1002 | |
| 1003 | 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] | 1004 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1005 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1006 | longintrepr.h longobject.h marshal.h methodobject.h modsupport.h \ |
| 1007 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h pydebug.h \ |
| 1008 | pyerrors.h pyfpe.h pystate.h python.h pythonrun.h rangeobject.h \ |
| 1009 | sliceobject.h stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1010 | |
| 1011 | 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] | 1012 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1013 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1014 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1015 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1016 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1017 | traceback.h tupleobject.h |
| 1018 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1019 | mystrtoul.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1020 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1021 | pyfpe.obj: pyconfig.h pyfpe.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1022 | |
| 1023 | 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] | 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 | 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] | 1032 | 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] | 1033 | fileobject.h floatobject.h funcobject.h grammar.h import.h \ |
| 1034 | intobject.h intrcheck.h listobject.h longobject.h marshal.h \ |
| 1035 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1036 | node.h object.h objimpl.h parsetok.h pydebug.h pyerrors.h pyfpe.h \ |
| 1037 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1038 | stringobject.h sysmodule.h traceback.h tupleobject.h |
| 1039 | |
| 1040 | 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] | 1041 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1042 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1043 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1044 | object.h objimpl.h pydebug.h pyerrors.h pyfpe.h pystate.h python.h \ |
| 1045 | pythonrun.h rangeobject.h sliceobject.h stringobject.h sysmodule.h \ |
| 1046 | traceback.h tupleobject.h |
| 1047 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1048 | strdup.obj: pyconfig.h mymalloc.h myproto.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1049 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1050 | strtod.obj: pyconfig.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1051 | |
| 1052 | structmember.obj: abstract.h ceval.h classobject.h cobject.h \ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1053 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1054 | funcobject.h import.h intobject.h intrcheck.h listobject.h \ |
| 1055 | longobject.h methodobject.h modsupport.h moduleobject.h mymalloc.h \ |
| 1056 | myproto.h object.h objimpl.h pydebug.h pyerrors.h pyfpe.h \ |
| 1057 | pystate.h python.h pythonrun.h rangeobject.h sliceobject.h \ |
| 1058 | stringobject.h structmember.h sysmodule.h traceback.h \ |
| 1059 | tupleobject.h |
| 1060 | |
| 1061 | 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] | 1062 | pyconfig.h dictobject.h fileobject.h floatobject.h funcobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1063 | import.h intobject.h intrcheck.h listobject.h longobject.h \ |
| 1064 | methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h \ |
| 1065 | object.h objimpl.h osdefs.h pydebug.h pyerrors.h pyfpe.h pystate.h \ |
| 1066 | python.h pythonrun.h rangeobject.h sliceobject.h stringobject.h \ |
| 1067 | sysmodule.h traceback.h tupleobject.h |
| 1068 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 1069 | thread.obj: pyconfig.h thread.h |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1070 | |
| 1071 | 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] | 1072 | complexobject.h pyconfig.h dictobject.h fileobject.h floatobject.h \ |
Guido van Rossum | 50d4cc2 | 1997-11-22 21:59:45 +0000 | [diff] [blame] | 1073 | frameobject.h funcobject.h import.h intobject.h intrcheck.h \ |
| 1074 | listobject.h longobject.h methodobject.h modsupport.h \ |
| 1075 | moduleobject.h mymalloc.h myproto.h object.h objimpl.h osdefs.h \ |
| 1076 | pydebug.h pyerrors.h pyfpe.h pystate.h python.h pythonrun.h \ |
| 1077 | rangeobject.h sliceobject.h stringobject.h structmember.h \ |
| 1078 | sysmodule.h traceback.h tupleobject.h |