| OLD | NEW |
| 1 # Top-level Makefile for Python | 1 # Top-level Makefile for Python |
| 2 # | 2 # |
| 3 # As distributed, this file is called Makefile.pre.in; it is processed | 3 # As distributed, this file is called Makefile.pre.in; it is processed |
| 4 # into the real Makefile by running the script ./configure, which | 4 # into the real Makefile by running the script ./configure, which |
| 5 # replaces things like @spam@ with values appropriate for your system. | 5 # replaces things like @spam@ with values appropriate for your system. |
| 6 # This means that if you edit Makefile, your changes get lost the next | 6 # This means that if you edit Makefile, your changes get lost the next |
| 7 # time you run the configure script. Ideally, you can do: | 7 # time you run the configure script. Ideally, you can do: |
| 8 # | 8 # |
| 9 # ./configure | 9 # ./configure |
| 10 # make | 10 # make |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 Python/modsupport.o \ | 298 Python/modsupport.o \ |
| 299 Python/mystrtoul.o \ | 299 Python/mystrtoul.o \ |
| 300 Python/mysnprintf.o \ | 300 Python/mysnprintf.o \ |
| 301 Python/peephole.o \ | 301 Python/peephole.o \ |
| 302 Python/pyarena.o \ | 302 Python/pyarena.o \ |
| 303 Python/pyctype.o \ | 303 Python/pyctype.o \ |
| 304 Python/pyfpe.o \ | 304 Python/pyfpe.o \ |
| 305 Python/pymath.o \ | 305 Python/pymath.o \ |
| 306 Python/pystate.o \ | 306 Python/pystate.o \ |
| 307 Python/pythonrun.o \ | 307 Python/pythonrun.o \ |
| 308 Python/random.o \ |
| 308 Python/structmember.o \ | 309 Python/structmember.o \ |
| 309 Python/symtable.o \ | 310 Python/symtable.o \ |
| 310 Python/sysmodule.o \ | 311 Python/sysmodule.o \ |
| 311 Python/traceback.o \ | 312 Python/traceback.o \ |
| 312 Python/getopt.o \ | 313 Python/getopt.o \ |
| 313 Python/pystrcmp.o \ | 314 Python/pystrcmp.o \ |
| 314 Python/pystrtod.o \ | 315 Python/pystrtod.o \ |
| 315 Python/dtoa.o \ | 316 Python/dtoa.o \ |
| 316 Python/formatter_unicode.o \ | 317 Python/formatter_unicode.o \ |
| 317 Python/$(DYNLOADFILE) \ | 318 Python/$(DYNLOADFILE) \ |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 # Declare targets that aren't real files | 1255 # Declare targets that aren't real files |
| 1255 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest | 1256 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest |
| 1256 .PHONY: install altinstall oldsharedinstall bininstall altbininstall | 1257 .PHONY: install altinstall oldsharedinstall bininstall altbininstall |
| 1257 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall | 1258 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall |
| 1258 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure | 1259 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure |
| 1259 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools | 1260 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools |
| 1260 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean | 1261 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean |
| 1261 .PHONY: smelly funny patchcheck | 1262 .PHONY: smelly funny patchcheck |
| 1262 | 1263 |
| 1263 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY | 1264 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |
| OLD | NEW |