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