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