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