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