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