Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1 | # Top-level Makefile for Python |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 2 | # |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 3 | # As distributed, this file is called Makefile.pre.in; it is processed |
| 4 | # into the real Makefile by running the script ./configure, which |
| 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 |
| 7 | # time you run the configure script. Ideally, you can do: |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 8 | # |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 9 | # ./configure |
| 10 | # make |
| 11 | # make test |
| 12 | # make install |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 13 | # |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 14 | # If you have a previous version of Python installed that you don't |
| 15 | # want to overwrite, you can use "make altinstall" instead of "make |
Neil Schemenauer | 2b2681a | 2001-02-16 04:16:34 +0000 | [diff] [blame] | 16 | # install". Refer to the "Installing" section in the README file for |
| 17 | # additional details. |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 18 | # |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 19 | # See also the section "Build instructions" in the README file. |
| 20 | |
| 21 | # === Variables set by makesetup === |
| 22 | |
| 23 | MODOBJS= _MODOBJS_ |
| 24 | MODLIBS= _MODLIBS_ |
| 25 | |
| 26 | # === Variables set by configure |
| 27 | VERSION= @VERSION@ |
| 28 | srcdir= @srcdir@ |
| 29 | VPATH= @srcdir@ |
Trent Nelson | 739fc54 | 2012-10-17 04:45:30 -0400 | [diff] [blame] | 30 | abs_srcdir= @abs_srcdir@ |
| 31 | abs_builddir= @abs_builddir@ |
Trent Nelson | 9effe69 | 2012-10-16 08:41:32 -0400 | [diff] [blame] | 32 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 33 | |
| 34 | CC= @CC@ |
| 35 | CXX= @CXX@ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 36 | MAINCC= @MAINCC@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 37 | LINKCC= @LINKCC@ |
| 38 | AR= @AR@ |
| 39 | RANLIB= @RANLIB@ |
doko@ubuntu.com | 5884449 | 2012-06-30 18:25:32 +0200 | [diff] [blame] | 40 | READELF= @READELF@ |
Georg Brandl | 0d169ea | 2010-09-03 22:14:52 +0000 | [diff] [blame] | 41 | SOABI= @SOABI@ |
Barry Warsaw | 8cf4eae | 2010-10-16 01:04:07 +0000 | [diff] [blame] | 42 | LDVERSION= @LDVERSION@ |
Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 43 | HGVERSION= @HGVERSION@ |
| 44 | HGTAG= @HGTAG@ |
| 45 | HGBRANCH= @HGBRANCH@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 46 | |
Georg Brandl | 0d169ea | 2010-09-03 22:14:52 +0000 | [diff] [blame] | 47 | GNULD= @GNULD@ |
Tarek Ziadé | be720e0 | 2009-05-09 11:55:12 +0000 | [diff] [blame] | 48 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 49 | # Shell used by make (some versions default to the login shell, which is bad) |
| 50 | SHELL= /bin/sh |
| 51 | |
| 52 | # Use this to make a link between python$(VERSION) and python in $(BINDIR) |
| 53 | LN= @LN@ |
| 54 | |
| 55 | # Portable install script (configure doesn't always guess right) |
| 56 | INSTALL= @INSTALL@ |
| 57 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
Neil Schemenauer | 3f5cc20 | 2001-04-10 23:03:35 +0000 | [diff] [blame] | 58 | INSTALL_SCRIPT= @INSTALL_SCRIPT@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 59 | INSTALL_DATA= @INSTALL_DATA@ |
| 60 | # Shared libraries must be installed with executable mode on some systems; |
| 61 | # rather than figuring out exactly which, we always give them executable mode. |
| 62 | # Also, making them read-only seems to be a good idea... |
| 63 | INSTALL_SHARED= ${INSTALL} -m 555 |
| 64 | |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 65 | MKDIR_P= @MKDIR_P@ |
| 66 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 67 | MAKESETUP= $(srcdir)/Modules/makesetup |
| 68 | |
| 69 | # Compiler options |
| 70 | OPT= @OPT@ |
Skip Montanaro | decc6a4 | 2003-01-01 20:07:49 +0000 | [diff] [blame] | 71 | BASECFLAGS= @BASECFLAGS@ |
Trent Nelson | 9effe69 | 2012-10-16 08:41:32 -0400 | [diff] [blame] | 72 | BASECPPFLAGS= @BASECPPFLAGS@ |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 73 | CONFIGURE_CFLAGS= @CFLAGS@ |
Benjamin Peterson | acb8c52 | 2014-08-09 20:01:49 -0700 | [diff] [blame] | 74 | # CFLAGS_NODIST is used for building the interpreter and stdlib C extensions. |
| 75 | # Use it when a compiler flag should _not_ be part of the distutils CFLAGS |
| 76 | # once Python is installed (Issue #21121). |
| 77 | CONFIGURE_CFLAGS_NODIST=@CFLAGS_NODIST@ |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 78 | CONFIGURE_CPPFLAGS= @CPPFLAGS@ |
| 79 | CONFIGURE_LDFLAGS= @LDFLAGS@ |
| 80 | # Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the |
| 81 | # command line to append to these values without stomping the pre-set |
| 82 | # values. |
| 83 | PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS) |
Benjamin Peterson | acb8c52 | 2014-08-09 20:01:49 -0700 | [diff] [blame] | 84 | PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST) |
Brett Cannon | 516592f | 2004-12-07 00:42:59 +0000 | [diff] [blame] | 85 | # Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to |
| 86 | # be able to build extension modules using the directories specified in the |
| 87 | # environment variables |
Trent Nelson | 9effe69 | 2012-10-16 08:41:32 -0400 | [diff] [blame] | 88 | PY_CPPFLAGS= $(BASECPPFLAGS) -I. -IInclude -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS) |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 89 | PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS) |
Martin v. Löwis | 48e14d3 | 2011-05-09 07:37:45 +0200 | [diff] [blame] | 90 | NO_AS_NEEDED= @NO_AS_NEEDED@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 91 | LDLAST= @LDLAST@ |
| 92 | SGI_ABI= @SGI_ABI@ |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 93 | CCSHARED= @CCSHARED@ |
| 94 | LINKFORSHARED= @LINKFORSHARED@ |
Tarek Ziadé | 5662d3e | 2009-05-07 21:24:43 +0000 | [diff] [blame] | 95 | ARFLAGS= @ARFLAGS@ |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 96 | # Extra C flags added for building the interpreter object files. |
| 97 | CFLAGSFORSHARED=@CFLAGSFORSHARED@ |
| 98 | # C flags used for building the interpreter object files |
Benjamin Peterson | acb8c52 | 2014-08-09 20:01:49 -0700 | [diff] [blame] | 99 | PY_CORE_CFLAGS= $(PY_CFLAGS) $(PY_CFLAGS_NODIST) $(PY_CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 100 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 101 | |
| 102 | # Machine-dependent subdirectories |
| 103 | MACHDEP= @MACHDEP@ |
| 104 | |
doko@python.org | 3e6e2ac | 2013-01-25 13:12:29 +0100 | [diff] [blame] | 105 | # Multiarch directory (may be empty) |
| 106 | MULTIARCH= @MULTIARCH@ |
| 107 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 108 | # Install prefix for architecture-independent files |
| 109 | prefix= @prefix@ |
| 110 | |
| 111 | # Install prefix for architecture-dependent files |
| 112 | exec_prefix= @exec_prefix@ |
| 113 | |
Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 114 | # Install prefix for data files |
| 115 | datarootdir= @datarootdir@ |
| 116 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 117 | # Expanded directories |
Antoine Pitrou | 7a61ba9 | 2010-03-21 19:25:26 +0000 | [diff] [blame] | 118 | BINDIR= @bindir@ |
| 119 | LIBDIR= @libdir@ |
Martin v. Löwis | d429ab6 | 2001-08-02 06:20:20 +0000 | [diff] [blame] | 120 | MANDIR= @mandir@ |
| 121 | INCLUDEDIR= @includedir@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 122 | CONFINCLUDEDIR= $(exec_prefix)/include |
| 123 | SCRIPTDIR= $(prefix)/lib |
Barry Warsaw | 8cf4eae | 2010-10-16 01:04:07 +0000 | [diff] [blame] | 124 | ABIFLAGS= @ABIFLAGS@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 125 | |
| 126 | # Detailed destination directories |
| 127 | BINLIBDEST= $(LIBDIR)/python$(VERSION) |
| 128 | LIBDEST= $(SCRIPTDIR)/python$(VERSION) |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 129 | INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION) |
| 130 | CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 131 | |
| 132 | # Symbols used for using shared libraries |
doko@ubuntu.com | d5537d0 | 2013-03-21 13:21:49 -0700 | [diff] [blame] | 133 | SHLIB_SUFFIX= @SHLIB_SUFFIX@ |
| 134 | EXT_SUFFIX= @EXT_SUFFIX@ |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 135 | LDSHARED= @LDSHARED@ $(PY_LDFLAGS) |
| 136 | BLDSHARED= @BLDSHARED@ $(PY_LDFLAGS) |
Tarek Ziadé | 03d788d | 2010-04-03 08:46:49 +0000 | [diff] [blame] | 137 | LDCXXSHARED= @LDCXXSHARED@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 138 | DESTSHARED= $(BINLIBDEST)/lib-dynload |
| 139 | |
| 140 | # Executable suffix (.exe on Windows and Mac OS X) |
Neil Schemenauer | cf9926c | 2001-02-27 18:50:56 +0000 | [diff] [blame] | 141 | EXE= @EXEEXT@ |
Jack Jansen | 1999ef4 | 2001-12-06 21:47:20 +0000 | [diff] [blame] | 142 | BUILDEXE= @BUILDEXEEXT@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 143 | |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 144 | # Short name and location for Mac OS X Python framework |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 145 | UNIVERSALSDK=@UNIVERSALSDK@ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 146 | PYTHONFRAMEWORK= @PYTHONFRAMEWORK@ |
| 147 | PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@ |
| 148 | PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@ |
| 149 | PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@ |
Jack Jansen | 6b08a40 | 2004-06-03 12:41:45 +0000 | [diff] [blame] | 150 | # Deployment target selected during configure, to be checked |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 151 | # by distutils. The export statement is needed to ensure that the |
| 152 | # deployment target is active during build. |
| 153 | MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@ |
| 154 | @EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET |
| 155 | |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 156 | # Option to install to strip binaries |
| 157 | STRIPFLAG=-s |
| 158 | |
| 159 | # Flags to lipo to produce a 32-bit-only universal executable |
| 160 | LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@ |
| 161 | |
Bob Ippolito | 7026a0a | 2005-03-28 23:23:47 +0000 | [diff] [blame] | 162 | # Options to enable prebinding (for fast startup prior to Mac OS X 10.3) |
| 163 | OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 164 | |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 165 | # Environment to run shared python without installed libraries |
| 166 | RUNSHARED= @RUNSHARED@ |
| 167 | |
Ned Deily | 322f5ba | 2013-11-21 23:01:59 -0800 | [diff] [blame] | 168 | # ensurepip options |
| 169 | ENSUREPIP= @ENSUREPIP@ |
| 170 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 171 | # Modes for directories, executables and data files created by the |
| 172 | # install process. Default to user-only-writable for all file types. |
| 173 | DIRMODE= 755 |
| 174 | EXEMODE= 755 |
| 175 | FILEMODE= 644 |
| 176 | |
Neil Schemenauer | 64b1b68 | 2001-03-22 00:32:32 +0000 | [diff] [blame] | 177 | # configure script arguments |
| 178 | CONFIG_ARGS= @CONFIG_ARGS@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 179 | |
| 180 | |
| 181 | # Subdirectories with code |
| 182 | SRCDIRS= @SRCDIRS@ |
| 183 | |
| 184 | # Other subdirectories |
Georg Brandl | 59b4472 | 2010-12-30 22:12:40 +0000 | [diff] [blame] | 185 | SUBDIRSTOO= Include Lib Misc |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 186 | |
| 187 | # Files and directories to be distributed |
Matthias Klose | 0f4c16e | 2012-03-14 23:10:15 +0100 | [diff] [blame] | 188 | CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 189 | DISTFILES= README ChangeLog $(CONFIGFILES) |
| 190 | DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy |
| 191 | DIST= $(DISTFILES) $(DISTDIRS) |
| 192 | |
| 193 | |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 194 | LIBRARY= @LIBRARY@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 195 | LDLIBRARY= @LDLIBRARY@ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 196 | BLDLIBRARY= @BLDLIBRARY@ |
Martin v. Löwis | d1fc34d | 2010-12-30 14:55:47 +0000 | [diff] [blame] | 197 | PY3LIBRARY= @PY3LIBRARY@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 198 | DLLLIBRARY= @DLLLIBRARY@ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 199 | LDLIBRARYDIR= @LDLIBRARYDIR@ |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 200 | INSTSONAME= @INSTSONAME@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 201 | |
| 202 | |
| 203 | LIBS= @LIBS@ |
| 204 | LIBM= @LIBM@ |
| 205 | LIBC= @LIBC@ |
| 206 | SYSLIBS= $(LIBM) $(LIBC) |
Martin v. Löwis | f90ae20 | 2002-06-11 06:22:31 +0000 | [diff] [blame] | 207 | SHLIBS= @SHLIBS@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 208 | |
Martin v. Löwis | 2d7e264 | 2002-04-05 16:50:53 +0000 | [diff] [blame] | 209 | THREADOBJ= @THREADOBJ@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 210 | DLINCLDIR= @DLINCLDIR@ |
| 211 | DYNLOADFILE= @DYNLOADFILE@ |
Jack Jansen | c49e5b7 | 2001-06-19 15:00:23 +0000 | [diff] [blame] | 212 | MACHDEP_OBJS= @MACHDEP_OBJS@ |
Christian Heimes | 32fbe59 | 2007-11-12 15:01:33 +0000 | [diff] [blame] | 213 | LIBOBJDIR= Python/ |
| 214 | LIBOBJS= @LIBOBJS@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 215 | |
Neil Schemenauer | cf9926c | 2001-02-27 18:50:56 +0000 | [diff] [blame] | 216 | PYTHON= python$(EXE) |
Jack Jansen | 1999ef4 | 2001-12-06 21:47:20 +0000 | [diff] [blame] | 217 | BUILDPYTHON= python$(BUILDEXE) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 218 | |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 219 | PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@ |
| 220 | _PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@ |
doko@python.org | a10e4a9 | 2013-01-25 18:45:12 +0100 | [diff] [blame] | 221 | BUILD_GNU_TYPE= @build@ |
| 222 | HOST_GNU_TYPE= @host@ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 223 | |
Ned Deily | d819b93 | 2013-09-06 01:07:05 -0700 | [diff] [blame] | 224 | # Tcl and Tk config info from --with-tcltk-includes and -libs options |
| 225 | TCLTK_INCLUDES= @TCLTK_INCLUDES@ |
| 226 | TCLTK_LIBS= @TCLTK_LIBS@ |
| 227 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 228 | # The task to run while instrument when building the profile-opt target |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 229 | PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck |
| 230 | #PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 231 | |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 232 | # report files for gcov / lcov coverage report |
| 233 | COVERAGE_INFO= $(abs_builddir)/coverage.info |
| 234 | COVERAGE_REPORT=$(abs_builddir)/lcov-report |
| 235 | COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report" |
| 236 | |
| 237 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 238 | # === Definitions added by makesetup === |
| 239 | |
| 240 | |
| 241 | ########################################################################## |
| 242 | # Modules |
| 243 | MODULE_OBJS= \ |
| 244 | Modules/config.o \ |
| 245 | Modules/getpath.o \ |
Neil Schemenauer | 9c63e6d | 2001-08-29 23:44:38 +0000 | [diff] [blame] | 246 | Modules/main.o \ |
| 247 | Modules/gcmodule.o |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 248 | |
| 249 | # Used of signalmodule.o is not available |
| 250 | SIGNAL_OBJS= @SIGNAL_OBJS@ |
| 251 | |
Alexandre Vassalotti | 8d8d630 | 2009-04-04 19:58:40 +0000 | [diff] [blame] | 252 | IO_H= Modules/_io/_iomodule.h |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 253 | |
| 254 | IO_OBJS= \ |
Alexandre Vassalotti | 8d8d630 | 2009-04-04 19:58:40 +0000 | [diff] [blame] | 255 | Modules/_io/_iomodule.o \ |
| 256 | Modules/_io/iobase.o \ |
| 257 | Modules/_io/fileio.o \ |
| 258 | Modules/_io/bufferedio.o \ |
| 259 | Modules/_io/textio.o \ |
| 260 | Modules/_io/bytesio.o \ |
| 261 | Modules/_io/stringio.o |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 262 | |
| 263 | ########################################################################## |
| 264 | # Grammar |
Trent Nelson | e60ee29 | 2012-08-30 14:52:38 +0000 | [diff] [blame] | 265 | GRAMMAR_H= Include/graminit.h |
| 266 | GRAMMAR_C= Python/graminit.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 267 | GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar |
| 268 | |
| 269 | |
Benjamin Peterson | d78735d | 2010-01-01 16:04:23 +0000 | [diff] [blame] | 270 | LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@ |
| 271 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 272 | ########################################################################## |
| 273 | # Parser |
Neil Schemenauer | cf9926c | 2001-02-27 18:50:56 +0000 | [diff] [blame] | 274 | PGEN= Parser/pgen$(EXE) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 275 | |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 276 | PSRCS= \ |
| 277 | Parser/acceler.c \ |
| 278 | Parser/grammar1.c \ |
| 279 | Parser/listnode.c \ |
| 280 | Parser/node.c \ |
| 281 | Parser/parser.c \ |
| 282 | Parser/bitset.c \ |
| 283 | Parser/metagrammar.c \ |
| 284 | Parser/firstsets.c \ |
| 285 | Parser/grammar.c \ |
| 286 | Parser/pgen.c |
| 287 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 288 | POBJS= \ |
| 289 | Parser/acceler.o \ |
| 290 | Parser/grammar1.o \ |
| 291 | Parser/listnode.o \ |
| 292 | Parser/node.o \ |
| 293 | Parser/parser.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 294 | Parser/bitset.o \ |
Guido van Rossum | d3ab37f | 2003-04-17 14:55:42 +0000 | [diff] [blame] | 295 | Parser/metagrammar.o \ |
| 296 | Parser/firstsets.o \ |
| 297 | Parser/grammar.o \ |
| 298 | Parser/pgen.o |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 299 | |
Victor Stinner | 7f2fee3 | 2011-04-05 00:39:01 +0200 | [diff] [blame] | 300 | PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 301 | |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 302 | PGSRCS= \ |
| 303 | Objects/obmalloc.c \ |
| 304 | Python/dynamic_annotations.c \ |
| 305 | Python/mysnprintf.c \ |
| 306 | Python/pyctype.c \ |
| 307 | Parser/tokenizer_pgen.c \ |
| 308 | Parser/printgrammar.c \ |
| 309 | Parser/parsetok_pgen.c \ |
| 310 | Parser/pgenmain.c |
| 311 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 312 | PGOBJS= \ |
Neil Schemenauer | fd1030e | 2002-04-22 03:05:25 +0000 | [diff] [blame] | 313 | Objects/obmalloc.o \ |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 314 | Python/dynamic_annotations.o \ |
Guido van Rossum | f227252 | 2001-12-04 03:54:08 +0000 | [diff] [blame] | 315 | Python/mysnprintf.o \ |
Benjamin Peterson | bf92b7f | 2010-04-04 23:03:35 +0000 | [diff] [blame] | 316 | Python/pyctype.o \ |
Martin v. Löwis | 00f1e3f | 2002-08-04 17:29:52 +0000 | [diff] [blame] | 317 | Parser/tokenizer_pgen.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 318 | Parser/printgrammar.o \ |
Victor Stinner | 7f2fee3 | 2011-04-05 00:39:01 +0200 | [diff] [blame] | 319 | Parser/parsetok_pgen.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 320 | Parser/pgenmain.o |
| 321 | |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 322 | PARSER_HEADERS= \ |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 323 | $(srcdir)/Parser/parser.h \ |
| 324 | $(srcdir)/Include/parsetok.h \ |
| 325 | $(srcdir)/Parser/tokenizer.h |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 326 | |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 327 | PGENSRCS= $(PSRCS) $(PGSRCS) |
| 328 | PGENOBJS= $(POBJS) $(PGOBJS) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 329 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 330 | ########################################################################## |
| 331 | # AST |
Trent Nelson | e60ee29 | 2012-08-30 14:52:38 +0000 | [diff] [blame] | 332 | AST_H_DIR= Include |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 333 | AST_H= $(AST_H_DIR)/Python-ast.h |
Trent Nelson | e60ee29 | 2012-08-30 14:52:38 +0000 | [diff] [blame] | 334 | AST_C_DIR= Python |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 335 | AST_C= $(AST_C_DIR)/Python-ast.c |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 336 | AST_ASDL= $(srcdir)/Parser/Python.asdl |
| 337 | |
| 338 | ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py |
Georg Brandl | 2a3e396 | 2014-10-06 14:58:17 +0200 | [diff] [blame] | 339 | # Note that a build now requires Python to exist before the build starts. |
| 340 | # Use "hg touch" to fix up screwed up file mtimes in a checkout. |
Matthias Klose | c4c4842 | 2012-10-21 23:05:35 +0200 | [diff] [blame] | 341 | ASDLGEN= @ASDLGEN@ $(srcdir)/Parser/asdl_c.py |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 342 | |
| 343 | ########################################################################## |
| 344 | # Python |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 345 | |
| 346 | OPCODETARGETS_H= \ |
Trent Nelson | 9effe69 | 2012-10-16 08:41:32 -0400 | [diff] [blame] | 347 | Python/opcode_targets.h |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 348 | |
| 349 | OPCODETARGETGEN= \ |
| 350 | $(srcdir)/Python/makeopcodetargets.py |
| 351 | |
| 352 | OPCODETARGETGEN_FILES= \ |
| 353 | $(OPCODETARGETGEN) $(srcdir)/Lib/opcode.py |
| 354 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 355 | PYTHON_OBJS= \ |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 356 | Python/_warnings.o \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 357 | Python/Python-ast.o \ |
| 358 | Python/asdl.o \ |
| 359 | Python/ast.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 360 | Python/bltinmodule.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 361 | Python/ceval.o \ |
| 362 | Python/compile.o \ |
| 363 | Python/codecs.o \ |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 364 | Python/dynamic_annotations.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 365 | Python/errors.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 366 | Python/frozenmain.o \ |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 367 | Python/future.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 368 | Python/getargs.o \ |
| 369 | Python/getcompiler.o \ |
| 370 | Python/getcopyright.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 371 | Python/getplatform.o \ |
| 372 | Python/getversion.o \ |
| 373 | Python/graminit.o \ |
| 374 | Python/import.o \ |
| 375 | Python/importdl.o \ |
| 376 | Python/marshal.o \ |
| 377 | Python/modsupport.o \ |
| 378 | Python/mystrtoul.o \ |
Marc-André Lemburg | e5006eb | 2001-07-31 13:24:44 +0000 | [diff] [blame] | 379 | Python/mysnprintf.o \ |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 380 | Python/peephole.o \ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 381 | Python/pyarena.o \ |
Eric Smith | 6dc46f5 | 2009-04-27 20:39:49 +0000 | [diff] [blame] | 382 | Python/pyctype.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 383 | Python/pyfpe.o \ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 384 | Python/pyhash.o \ |
Christian Heimes | 53876d9 | 2008-04-19 00:31:39 +0000 | [diff] [blame] | 385 | Python/pymath.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 386 | Python/pystate.o \ |
| 387 | Python/pythonrun.o \ |
Alexander Belopolsky | 6fc4ade | 2010-08-05 17:34:27 +0000 | [diff] [blame] | 388 | Python/pytime.o \ |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 389 | Python/random.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 390 | Python/structmember.o \ |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 391 | Python/symtable.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 392 | Python/sysmodule.o \ |
| 393 | Python/traceback.o \ |
| 394 | Python/getopt.o \ |
Christian Heimes | 99170a5 | 2007-12-19 02:07:34 +0000 | [diff] [blame] | 395 | Python/pystrcmp.o \ |
Martin v. Löwis | 737ea82 | 2004-06-08 18:52:54 +0000 | [diff] [blame] | 396 | Python/pystrtod.o \ |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 397 | Python/dtoa.o \ |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 398 | Python/formatter_unicode.o \ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 399 | Python/fileutils.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 400 | Python/$(DYNLOADFILE) \ |
Christian Heimes | 32fbe59 | 2007-11-12 15:01:33 +0000 | [diff] [blame] | 401 | $(LIBOBJS) \ |
Jack Jansen | c49e5b7 | 2001-06-19 15:00:23 +0000 | [diff] [blame] | 402 | $(MACHDEP_OBJS) \ |
Martin v. Löwis | 2d7e264 | 2002-04-05 16:50:53 +0000 | [diff] [blame] | 403 | $(THREADOBJ) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 404 | |
| 405 | |
| 406 | ########################################################################## |
| 407 | # Objects |
| 408 | OBJECT_OBJS= \ |
| 409 | Objects/abstract.o \ |
Antoine Pitrou | eeb7eea | 2011-10-06 18:57:27 +0200 | [diff] [blame] | 410 | Objects/accu.o \ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 411 | Objects/boolobject.o \ |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 412 | Objects/bytes_methods.o \ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 413 | Objects/bytearrayobject.o \ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 414 | Objects/bytesobject.o \ |
Jeremy Hylton | fbd849f | 2001-01-25 20:04:14 +0000 | [diff] [blame] | 415 | Objects/cellobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 416 | Objects/classobject.o \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 417 | Objects/codeobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 418 | Objects/complexobject.o \ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 419 | Objects/descrobject.o \ |
Guido van Rossum | 7dab242 | 2002-04-26 19:40:56 +0000 | [diff] [blame] | 420 | Objects/enumobject.o \ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 421 | Objects/exceptions.o \ |
Martin v. Löwis | e440e47 | 2004-06-01 15:22:42 +0000 | [diff] [blame] | 422 | Objects/genobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 423 | Objects/fileobject.o \ |
| 424 | Objects/floatobject.o \ |
| 425 | Objects/frameobject.o \ |
| 426 | Objects/funcobject.o \ |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 427 | Objects/iterobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 428 | Objects/listobject.o \ |
| 429 | Objects/longobject.o \ |
| 430 | Objects/dictobject.o \ |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 431 | Objects/memoryobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 432 | Objects/methodobject.o \ |
| 433 | Objects/moduleobject.o \ |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 434 | Objects/namespaceobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 435 | Objects/object.o \ |
Tim Peters | 1221c0a | 2002-03-23 00:20:15 +0000 | [diff] [blame] | 436 | Objects/obmalloc.o \ |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 437 | Objects/capsule.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 438 | Objects/rangeobject.o \ |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 439 | Objects/setobject.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 440 | Objects/sliceobject.o \ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 441 | Objects/structseq.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 442 | Objects/tupleobject.o \ |
| 443 | Objects/typeobject.o \ |
Georg Brandl | 52d168a | 2008-01-07 18:10:24 +0000 | [diff] [blame] | 444 | Objects/unicodeobject.o \ |
| 445 | Objects/unicodectype.o \ |
| 446 | Objects/weakrefobject.o |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 447 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 448 | ########################################################################## |
| 449 | # objects that get linked into the Python library |
Antoine Pitrou | e67f48c | 2012-06-19 22:29:35 +0200 | [diff] [blame] | 450 | LIBRARY_OBJS_OMIT_FROZEN= \ |
Neil Schemenauer | 1882182 | 2001-01-27 21:42:38 +0000 | [diff] [blame] | 451 | Modules/getbuildinfo.o \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 452 | $(PARSER_OBJS) \ |
| 453 | $(OBJECT_OBJS) \ |
| 454 | $(PYTHON_OBJS) \ |
| 455 | $(MODULE_OBJS) \ |
| 456 | $(SIGNAL_OBJS) \ |
| 457 | $(MODOBJS) |
| 458 | |
Antoine Pitrou | e67f48c | 2012-06-19 22:29:35 +0200 | [diff] [blame] | 459 | LIBRARY_OBJS= \ |
| 460 | $(LIBRARY_OBJS_OMIT_FROZEN) \ |
| 461 | Python/frozen.o |
| 462 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 463 | ######################################################################### |
| 464 | # Rules |
| 465 | |
| 466 | # Default target |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 467 | all: build_all |
doko@python.org | 8742119 | 2013-01-26 11:39:31 +0100 | [diff] [blame] | 468 | build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks Modules/_testembed python-config |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 469 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 470 | # Compile a binary with gcc profile guided optimization. |
| 471 | profile-opt: |
| 472 | @echo "Building with support for profile generation:" |
| 473 | $(MAKE) clean |
| 474 | $(MAKE) build_all_generate_profile |
| 475 | @echo "Running benchmark to generate profile data:" |
| 476 | $(MAKE) profile-removal |
| 477 | $(MAKE) run_profile_task |
| 478 | @echo "Rebuilding with profile guided optimizations:" |
| 479 | $(MAKE) clean |
| 480 | $(MAKE) build_all_use_profile |
| 481 | |
| 482 | build_all_generate_profile: |
Gregory P. Smith | 2f90aa6 | 2015-02-04 02:11:56 -0800 | [diff] [blame] | 483 | $(MAKE) all CFLAGS_NODIST="$(CFLAGS) -fprofile-generate" LDFLAGS="-fprofile-generate" LIBS="$(LIBS) -lgcov" |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 484 | |
| 485 | run_profile_task: |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 486 | : # FIXME: can't run for a cross build |
Antoine Pitrou | 2d9db1d | 2012-06-17 00:27:30 +0200 | [diff] [blame] | 487 | $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 488 | |
| 489 | build_all_use_profile: |
Gregory P. Smith | 2f90aa6 | 2015-02-04 02:11:56 -0800 | [diff] [blame] | 490 | $(MAKE) all CFLAGS_NODIST="$(CFLAGS) -fprofile-use -fprofile-correction" |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 491 | |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 492 | # Compile and run with gcov |
| 493 | .PHONY=coverage coverage-lcov coverage-report |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 494 | coverage: |
| 495 | @echo "Building with support for coverage checking:" |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 496 | $(MAKE) clean profile-removal |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 497 | $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov" |
| 498 | |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 499 | coverage-lcov: |
| 500 | @echo "Creating Coverage HTML report with LCOV:" |
| 501 | @rm -f $(COVERAGE_INFO) |
| 502 | @rm -rf $(COVERAGE_REPORT) |
| 503 | @lcov --capture --directory $(abs_builddir) \ |
| 504 | --base-directory $(realpath $(abs_builddir)) \ |
| 505 | --path $(realpath $(abs_srcdir)) \ |
| 506 | --output-file $(COVERAGE_INFO) |
| 507 | : # remove 3rd party modules and system headers |
| 508 | @lcov --remove $(COVERAGE_INFO) \ |
| 509 | '*/Modules/_ctypes/libffi*/*' \ |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 510 | '*/Modules/_decimal/libmpdec/*' \ |
| 511 | '*/Modules/expat/*' \ |
| 512 | '*/Modules/zlib/*' \ |
| 513 | '*/Include/*' \ |
| 514 | '/usr/include/*' \ |
| 515 | '/usr/local/include/*' \ |
| 516 | --output-file $(COVERAGE_INFO) |
| 517 | @genhtml $(COVERAGE_INFO) --output-directory $(COVERAGE_REPORT) \ |
| 518 | $(COVERAGE_REPORT_OPTIONS) |
| 519 | @echo |
| 520 | @echo "lcov report at $(COVERAGE_REPORT)/index.html" |
| 521 | @echo |
| 522 | |
| 523 | coverage-report: |
| 524 | : # force rebuilding of parser and importlib |
| 525 | @touch $(GRAMMAR_INPUT) |
| 526 | @touch $(srcdir)/Lib/importlib/_bootstrap.py |
| 527 | : # build with coverage info |
| 528 | $(MAKE) coverage |
| 529 | : # run tests, ignore failures |
| 530 | $(TESTRUNNER) $(TESTOPTS) || true |
| 531 | : # build lcov report |
| 532 | $(MAKE) coverage-lcov |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 533 | |
Larry Hastings | dcd340e | 2013-11-23 14:58:45 -0800 | [diff] [blame] | 534 | # Run "Argument Clinic" over all source files |
| 535 | # (depends on python having already been built) |
| 536 | .PHONY=clinic |
| 537 | clinic: $(BUILDPYTHON) |
| 538 | $(RUNSHARED) $(PYTHON_FOR_BUILD) ./Tools/clinic/clinic.py --make |
| 539 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 540 | # Build the interpreter |
Martin v. Löwis | d1fc34d | 2010-12-30 14:55:47 +0000 | [diff] [blame] | 541 | $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) |
Georg Brandl | 9411eeb | 2010-08-01 08:46:24 +0000 | [diff] [blame] | 542 | $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 543 | |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 544 | platform: $(BUILDPYTHON) pybuilddir.txt |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 545 | $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 546 | |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 547 | # Create build directory and generate the sysconfig build-time data there. |
| 548 | # pybuilddir.txt contains the name of the build dir and is used for |
| 549 | # sys.path fixup -- see Modules/getpath.c. |
Ned Deily | fcbc246 | 2014-08-22 13:32:49 -0700 | [diff] [blame] | 550 | # Since this step runs before shared modules are built, try to avoid bootstrap |
Ned Deily | ec7aaf5 | 2014-08-23 18:10:16 -0700 | [diff] [blame] | 551 | # problems by creating a dummy pybuilddir.txt just to allow interpreter |
Ned Deily | fcbc246 | 2014-08-22 13:32:49 -0700 | [diff] [blame] | 552 | # initialization to succeed. It will be overwritten by generate-posix-vars |
| 553 | # or removed in case of failure. |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 554 | pybuilddir.txt: $(BUILDPYTHON) |
Ned Deily | fcbc246 | 2014-08-22 13:32:49 -0700 | [diff] [blame] | 555 | @echo "none" > ./pybuilddir.txt |
| 556 | $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\ |
| 557 | if test $$? -ne 0 ; then \ |
| 558 | echo "generate-posix-vars failed" ; \ |
| 559 | rm -f ./pybuilddir.txt ; \ |
| 560 | exit 1 ; \ |
| 561 | fi |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 562 | |
| 563 | # Build the shared modules |
Christian Heimes | 17ad40e | 2012-12-02 07:37:35 +0100 | [diff] [blame] | 564 | # Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for |
Christian Heimes | 5f38121 | 2012-09-07 02:24:58 +0200 | [diff] [blame] | 565 | # -s, --silent or --quiet is always the first char. |
Christian Heimes | 17ad40e | 2012-12-02 07:37:35 +0100 | [diff] [blame] | 566 | # Under BSD make, MAKEFLAGS might be " -s -v x=y". |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 567 | sharedmods: $(BUILDPYTHON) pybuilddir.txt |
Christian Heimes | 5f38121 | 2012-09-07 02:24:58 +0200 | [diff] [blame] | 568 | @case "$$MAKEFLAGS" in \ |
Christian Heimes | 17ad40e | 2012-12-02 07:37:35 +0100 | [diff] [blame] | 569 | *\ -s*|s*) quiet="-q";; \ |
Christian Heimes | 5f38121 | 2012-09-07 02:24:58 +0200 | [diff] [blame] | 570 | *) quiet="";; \ |
| 571 | esac; \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 572 | $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ |
Ned Deily | d819b93 | 2013-09-06 01:07:05 -0700 | [diff] [blame] | 573 | _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \ |
Christian Heimes | 4e25140 | 2012-09-07 02:26:26 +0200 | [diff] [blame] | 574 | $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 575 | |
| 576 | # Build static library |
Guido van Rossum | 4e6a7a6 | 2001-04-09 22:23:22 +0000 | [diff] [blame] | 577 | # avoid long command lines, same as LIBRARY_OBJS |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 578 | $(LIBRARY): $(LIBRARY_OBJS) |
| 579 | -rm -f $@ |
Tarek Ziadé | 5662d3e | 2009-05-07 21:24:43 +0000 | [diff] [blame] | 580 | $(AR) $(ARFLAGS) $@ Modules/getbuildinfo.o |
| 581 | $(AR) $(ARFLAGS) $@ $(PARSER_OBJS) |
| 582 | $(AR) $(ARFLAGS) $@ $(OBJECT_OBJS) |
Antoine Pitrou | e67f48c | 2012-06-19 22:29:35 +0200 | [diff] [blame] | 583 | $(AR) $(ARFLAGS) $@ $(PYTHON_OBJS) Python/frozen.o |
Tarek Ziadé | 5662d3e | 2009-05-07 21:24:43 +0000 | [diff] [blame] | 584 | $(AR) $(ARFLAGS) $@ $(MODULE_OBJS) $(SIGNAL_OBJS) |
| 585 | $(AR) $(ARFLAGS) $@ $(MODOBJS) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 586 | $(RANLIB) $@ |
| 587 | |
Barry Warsaw | 8cf4eae | 2010-10-16 01:04:07 +0000 | [diff] [blame] | 588 | libpython$(LDVERSION).so: $(LIBRARY_OBJS) |
Martin v. Löwis | bc12262 | 2003-06-14 13:11:24 +0000 | [diff] [blame] | 589 | if test $(INSTSONAME) != $(LDLIBRARY); then \ |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 590 | $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ |
Martin v. Löwis | 45ec95d | 2003-03-30 15:37:33 +0000 | [diff] [blame] | 591 | $(LN) -f $(INSTSONAME) $@; \ |
Georg Brandl | b1441c7 | 2009-01-03 22:33:39 +0000 | [diff] [blame] | 592 | else \ |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 593 | $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ |
Martin v. Löwis | 45ec95d | 2003-03-30 15:37:33 +0000 | [diff] [blame] | 594 | fi |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 595 | |
Martin v. Löwis | d1fc34d | 2010-12-30 14:55:47 +0000 | [diff] [blame] | 596 | libpython3.so: libpython$(LDVERSION).so |
Martin v. Löwis | 48e14d3 | 2011-05-09 07:37:45 +0200 | [diff] [blame] | 597 | $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^ |
Martin v. Löwis | d1fc34d | 2010-12-30 14:55:47 +0000 | [diff] [blame] | 598 | |
Georg Brandl | 6e8d17c | 2011-02-19 08:47:14 +0000 | [diff] [blame] | 599 | libpython$(LDVERSION).dylib: $(LIBRARY_OBJS) |
| 600 | $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 601 | |
Georg Brandl | b1441c7 | 2009-01-03 22:33:39 +0000 | [diff] [blame] | 602 | |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 603 | libpython$(VERSION).sl: $(LIBRARY_OBJS) |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 604 | $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 605 | |
Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 606 | # Copy up the gdb python hooks into a position where they can be automatically |
| 607 | # loaded by gdb during Lib/test/test_gdb.py |
| 608 | # |
| 609 | # Distributors are likely to want to install this somewhere else e.g. relative |
| 610 | # to the stripped DWARF data for the shared library. |
| 611 | gdbhooks: $(BUILDPYTHON)-gdb.py |
| 612 | |
| 613 | SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py |
| 614 | $(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS) |
| 615 | $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py |
| 616 | |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 617 | # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary |
| 618 | # minimal framework (not including the Lib directory and such) in the current |
| 619 | # directory. |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 620 | RESSRCDIR=Mac/Resources/framework |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 621 | $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \ |
| 622 | $(LIBRARY) \ |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 623 | $(RESSRCDIR)/Info.plist |
Jack Jansen | 246debb | 2002-02-12 21:30:53 +0000 | [diff] [blame] | 624 | $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION) |
Ronald Oussoren | 42d0f68 | 2011-03-14 11:04:34 -0400 | [diff] [blame] | 625 | $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \ |
Ronald Oussoren | 2503249 | 2011-03-14 10:11:59 -0400 | [diff] [blame] | 626 | -all_load $(LIBRARY) -Wl,-single_module \ |
| 627 | -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ |
| 628 | -compatibility_version $(VERSION) \ |
| 629 | -current_version $(VERSION) \ |
Victor Stinner | dfb866d | 2011-09-29 01:12:24 +0200 | [diff] [blame] | 630 | -framework CoreFoundation $(LIBS); |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 631 | $(INSTALL) -d -m $(DIRMODE) \ |
| 632 | $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj |
| 633 | $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ |
| 634 | $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist |
Jack Jansen | c736b8d | 2002-08-04 21:17:20 +0000 | [diff] [blame] | 635 | $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current |
Jack Jansen | b36687a | 2004-07-16 08:43:47 +0000 | [diff] [blame] | 636 | $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK) |
Jack Jansen | c736b8d | 2002-08-04 21:17:20 +0000 | [diff] [blame] | 637 | $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 638 | |
Jason Tishler | 3076559 | 2003-09-04 11:04:06 +0000 | [diff] [blame] | 639 | # This rule builds the Cygwin Python DLL and import library if configured |
| 640 | # for a shared core library; otherwise, this rule is a noop. |
| 641 | $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS) |
| 642 | if test -n "$(DLLLIBRARY)"; then \ |
Antoine Pitrou | dbec780 | 2010-10-10 09:37:12 +0000 | [diff] [blame] | 643 | $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \ |
Benjamin Peterson | ae5360b | 2008-09-08 23:05:23 +0000 | [diff] [blame] | 644 | $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \ |
Jason Tishler | 3076559 | 2003-09-04 11:04:06 +0000 | [diff] [blame] | 645 | else true; \ |
| 646 | fi |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 647 | |
| 648 | |
| 649 | oldsharedmods: $(SHAREDMODS) |
| 650 | |
| 651 | |
| 652 | Makefile Modules/config.c: Makefile.pre \ |
| 653 | $(srcdir)/Modules/config.c.in \ |
| 654 | $(MAKESETUP) \ |
| 655 | Modules/Setup.config \ |
| 656 | Modules/Setup \ |
| 657 | Modules/Setup.local |
| 658 | $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \ |
| 659 | -s Modules \ |
| 660 | Modules/Setup.config \ |
| 661 | Modules/Setup.local \ |
| 662 | Modules/Setup |
| 663 | @mv config.c Modules |
| 664 | @echo "The Makefile was updated, you may need to re-run make." |
| 665 | |
| 666 | |
| 667 | Modules/Setup: $(srcdir)/Modules/Setup.dist |
| 668 | @if test -f Modules/Setup; then \ |
| 669 | echo "-----------------------------------------------"; \ |
| 670 | echo "Modules/Setup.dist is newer than Modules/Setup;"; \ |
| 671 | echo "check to make sure you have all the updates you"; \ |
| 672 | echo "need in your Modules/Setup file."; \ |
Alexandre Vassalotti | eca20b6 | 2008-05-16 02:54:33 +0000 | [diff] [blame] | 673 | echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 674 | echo "-----------------------------------------------"; \ |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 675 | fi |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 676 | |
Antoine Pitrou | 8e60577 | 2011-04-25 21:21:07 +0200 | [diff] [blame] | 677 | Modules/_testembed: Modules/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) |
| 678 | $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) |
Marc-Andre Lemburg | aed9773 | 2012-04-25 19:45:11 +0200 | [diff] [blame] | 679 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 680 | ############################################################################ |
| 681 | # Importlib |
Antoine Pitrou | 8e60577 | 2011-04-25 21:21:07 +0200 | [diff] [blame] | 682 | |
Antoine Pitrou | e67f48c | 2012-06-19 22:29:35 +0200 | [diff] [blame] | 683 | Modules/_freeze_importlib: Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) |
| 684 | $(LINKCC) $(PY_LDFLAGS) -o $@ Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) |
| 685 | |
| 686 | Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Modules/_freeze_importlib.c |
| 687 | $(MAKE) Modules/_freeze_importlib |
| 688 | ./Modules/_freeze_importlib \ |
| 689 | $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h |
| 690 | |
Marc-Andre Lemburg | aed9773 | 2012-04-25 19:45:11 +0200 | [diff] [blame] | 691 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 692 | ############################################################################ |
| 693 | # Special rules for object files |
| 694 | |
Martin v. Löwis | dea59e5 | 2006-01-05 10:00:36 +0000 | [diff] [blame] | 695 | Modules/getbuildinfo.o: $(PARSER_OBJS) \ |
| 696 | $(OBJECT_OBJS) \ |
| 697 | $(PYTHON_OBJS) \ |
| 698 | $(MODULE_OBJS) \ |
| 699 | $(SIGNAL_OBJS) \ |
| 700 | $(MODOBJS) \ |
| 701 | $(srcdir)/Modules/getbuildinfo.c |
Georg Brandl | 13039c8 | 2011-03-06 10:13:00 +0100 | [diff] [blame] | 702 | $(CC) -c $(PY_CORE_CFLAGS) \ |
Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 703 | -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \ |
| 704 | -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \ |
| 705 | -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \ |
| 706 | -o $@ $(srcdir)/Modules/getbuildinfo.c |
Andrew M. Kuchling | 03184e2 | 2001-01-26 22:52:45 +0000 | [diff] [blame] | 707 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 708 | Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 709 | $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \ |
Neil Schemenauer | 7ac954b | 2001-01-26 16:14:41 +0000 | [diff] [blame] | 710 | -DPREFIX='"$(prefix)"' \ |
| 711 | -DEXEC_PREFIX='"$(exec_prefix)"' \ |
| 712 | -DVERSION='"$(VERSION)"' \ |
| 713 | -DVPATH='"$(VPATH)"' \ |
Sjoerd Mullender | 30be870 | 2001-01-29 09:39:14 +0000 | [diff] [blame] | 714 | -o $@ $(srcdir)/Modules/getpath.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 715 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 716 | Modules/python.o: $(srcdir)/Modules/python.c |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 717 | $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/python.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 718 | |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 719 | Modules/_testembed.o: $(srcdir)/Modules/_testembed.c |
| 720 | $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/_testembed.c |
| 721 | |
Serhiy Storchaka | 8444ebb | 2013-10-26 11:18:42 +0300 | [diff] [blame] | 722 | Modules/_sre.o: $(srcdir)/Modules/_sre.c $(srcdir)/Modules/sre.h $(srcdir)/Modules/sre_constants.h $(srcdir)/Modules/sre_lib.h |
| 723 | |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 724 | Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h |
| 725 | |
| 726 | Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h |
| 727 | |
| 728 | Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h |
| 729 | |
| 730 | Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h |
| 731 | |
Barry Warsaw | 35f3a2c | 2010-09-03 18:30:30 +0000 | [diff] [blame] | 732 | Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile |
| 733 | $(CC) -c $(PY_CORE_CFLAGS) \ |
| 734 | -DSOABI='"$(SOABI)"' \ |
| 735 | -o $@ $(srcdir)/Python/dynload_shlib.c |
| 736 | |
doko@ubuntu.com | d5537d0 | 2013-03-21 13:21:49 -0700 | [diff] [blame] | 737 | Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile |
| 738 | $(CC) -c $(PY_CORE_CFLAGS) \ |
| 739 | -DSHLIB_EXT='"$(EXT_SUFFIX)"' \ |
| 740 | -o $@ $(srcdir)/Python/dynload_hpux.c |
| 741 | |
Barry Warsaw | 8cf4eae | 2010-10-16 01:04:07 +0000 | [diff] [blame] | 742 | Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile |
| 743 | $(CC) -c $(PY_CORE_CFLAGS) \ |
| 744 | -DABIFLAGS='"$(ABIFLAGS)"' \ |
| 745 | -o $@ $(srcdir)/Python/sysmodule.c |
| 746 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 747 | $(IO_OBJS): $(IO_H) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 748 | |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 749 | $(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS) |
| 750 | @$(MKDIR_P) Include |
| 751 | $(MAKE) $(PGEN) |
Victor Stinner | e1c0c7c | 2010-12-28 23:14:17 +0000 | [diff] [blame] | 752 | $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C) |
Matthias Klose | 93a0ef1 | 2012-03-15 18:08:34 +0100 | [diff] [blame] | 753 | $(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS) |
| 754 | $(MAKE) $(GRAMMAR_H) |
| 755 | touch $(GRAMMAR_C) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 756 | |
| 757 | $(PGEN): $(PGENOBJS) |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 758 | $(CC) $(OPT) $(PY_LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 759 | |
| 760 | Parser/grammar.o: $(srcdir)/Parser/grammar.c \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 761 | $(srcdir)/Include/token.h \ |
| 762 | $(srcdir)/Include/grammar.h |
| 763 | Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c |
| 764 | |
Martin v. Löwis | 00f1e3f | 2002-08-04 17:29:52 +0000 | [diff] [blame] | 765 | Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c |
Victor Stinner | 7f2fee3 | 2011-04-05 00:39:01 +0200 | [diff] [blame] | 766 | Parser/parsetok_pgen.o: $(srcdir)/Parser/parsetok.c |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 767 | Parser/printgrammar.o: $(srcdir)/Parser/printgrammar.c |
Martin v. Löwis | 00f1e3f | 2002-08-04 17:29:52 +0000 | [diff] [blame] | 768 | |
Thomas Wouters | fc7bb8c | 2007-01-15 15:49:28 +0000 | [diff] [blame] | 769 | Parser/pgenmain.o: $(srcdir)/Include/parsetok.h |
| 770 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 771 | $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES) |
Trent Nelson | e60ee29 | 2012-08-30 14:52:38 +0000 | [diff] [blame] | 772 | $(MKDIR_P) $(AST_H_DIR) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 773 | $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 774 | |
Benjamin Peterson | 1f918c1 | 2012-01-13 08:45:55 -0500 | [diff] [blame] | 775 | $(AST_C): $(AST_H) $(AST_ASDL) $(ASDLGEN_FILES) |
Trent Nelson | e60ee29 | 2012-08-30 14:52:38 +0000 | [diff] [blame] | 776 | $(MKDIR_P) $(AST_C_DIR) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 777 | $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 778 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 779 | Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H) |
Neil Schemenauer | 4041774 | 2001-02-27 02:45:36 +0000 | [diff] [blame] | 780 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 781 | Python/getplatform.o: $(srcdir)/Python/getplatform.c |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 782 | $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 783 | |
| 784 | Python/importdl.o: $(srcdir)/Python/importdl.c |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 785 | $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 786 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 787 | Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \ |
| 788 | $(srcdir)/Objects/unicodetype_db.h |
| 789 | |
Christian Heimes | da99683 | 2008-03-22 18:37:22 +0000 | [diff] [blame] | 790 | BYTESTR_DEPS = \ |
Christian Heimes | da99683 | 2008-03-22 18:37:22 +0000 | [diff] [blame] | 791 | $(srcdir)/Objects/stringlib/count.h \ |
| 792 | $(srcdir)/Objects/stringlib/ctype.h \ |
Christian Heimes | da99683 | 2008-03-22 18:37:22 +0000 | [diff] [blame] | 793 | $(srcdir)/Objects/stringlib/fastsearch.h \ |
| 794 | $(srcdir)/Objects/stringlib/find.h \ |
Antoine Pitrou | 74375fc | 2012-10-18 21:31:22 +0200 | [diff] [blame] | 795 | $(srcdir)/Objects/stringlib/join.h \ |
Christian Heimes | da99683 | 2008-03-22 18:37:22 +0000 | [diff] [blame] | 796 | $(srcdir)/Objects/stringlib/partition.h \ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 797 | $(srcdir)/Objects/stringlib/split.h \ |
Christian Heimes | da99683 | 2008-03-22 18:37:22 +0000 | [diff] [blame] | 798 | $(srcdir)/Objects/stringlib/stringdefs.h \ |
Serhiy Storchaka | 05aba6c | 2013-01-06 21:36:21 +0200 | [diff] [blame] | 799 | $(srcdir)/Objects/stringlib/transmogrify.h |
Antoine Pitrou | 3e62324 | 2011-11-13 19:37:58 +0100 | [diff] [blame] | 800 | |
Serhiy Storchaka | 05aba6c | 2013-01-06 21:36:21 +0200 | [diff] [blame] | 801 | UNICODE_DEPS = \ |
Antoine Pitrou | 3e62324 | 2011-11-13 19:37:58 +0100 | [diff] [blame] | 802 | $(srcdir)/Objects/stringlib/asciilib.h \ |
Antoine Pitrou | 0a3229d | 2011-11-21 20:39:13 +0100 | [diff] [blame] | 803 | $(srcdir)/Objects/stringlib/codecs.h \ |
Serhiy Storchaka | 05aba6c | 2013-01-06 21:36:21 +0200 | [diff] [blame] | 804 | $(srcdir)/Objects/stringlib/count.h \ |
| 805 | $(srcdir)/Objects/stringlib/fastsearch.h \ |
| 806 | $(srcdir)/Objects/stringlib/find.h \ |
| 807 | $(srcdir)/Objects/stringlib/find_max_char.h \ |
| 808 | $(srcdir)/Objects/stringlib/localeutil.h \ |
| 809 | $(srcdir)/Objects/stringlib/partition.h \ |
Serhiy Storchaka | e2cef88 | 2013-04-13 22:45:04 +0300 | [diff] [blame] | 810 | $(srcdir)/Objects/stringlib/replace.h \ |
Serhiy Storchaka | 05aba6c | 2013-01-06 21:36:21 +0200 | [diff] [blame] | 811 | $(srcdir)/Objects/stringlib/split.h \ |
Antoine Pitrou | 3e62324 | 2011-11-13 19:37:58 +0100 | [diff] [blame] | 812 | $(srcdir)/Objects/stringlib/ucs1lib.h \ |
| 813 | $(srcdir)/Objects/stringlib/ucs2lib.h \ |
| 814 | $(srcdir)/Objects/stringlib/ucs4lib.h \ |
Serhiy Storchaka | 05aba6c | 2013-01-06 21:36:21 +0200 | [diff] [blame] | 815 | $(srcdir)/Objects/stringlib/undef.h \ |
Antoine Pitrou | 3e62324 | 2011-11-13 19:37:58 +0100 | [diff] [blame] | 816 | $(srcdir)/Objects/stringlib/unicode_format.h \ |
| 817 | $(srcdir)/Objects/stringlib/unicodedefs.h |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 818 | |
Benjamin Peterson | 9ae3220 | 2009-01-13 21:53:28 +0000 | [diff] [blame] | 819 | Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS) |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 820 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 821 | Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 822 | |
Antoine Pitrou | 3e62324 | 2011-11-13 19:37:58 +0100 | [diff] [blame] | 823 | Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS) |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 824 | |
Martin v. Löwis | 6fb4472 | 2011-09-25 17:36:11 +0200 | [diff] [blame] | 825 | Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h |
| 826 | Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h |
| 827 | |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 828 | $(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES) |
| 829 | $(OPCODETARGETGEN) $(OPCODETARGETS_H) |
| 830 | |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 831 | Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 832 | |
Trent Nelson | 4d4ec65 | 2012-10-16 08:51:24 -0400 | [diff] [blame] | 833 | Python/frozen.o: Python/importlib.h |
Antoine Pitrou | a493235 | 2012-04-16 18:29:28 +0200 | [diff] [blame] | 834 | |
Trent Nelson | 9effe69 | 2012-10-16 08:41:32 -0400 | [diff] [blame] | 835 | Objects/typeobject.o: Objects/typeslots.inc |
| 836 | Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py |
| 837 | $(PYTHON) $(srcdir)/Objects/typeslots.py < $(srcdir)/Include/typeslots.h > Objects/typeslots.inc |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 838 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 839 | ############################################################################ |
| 840 | # Header files |
| 841 | |
Neil Schemenauer | f65e500 | 2001-01-25 20:07:50 +0000 | [diff] [blame] | 842 | PYTHON_HEADERS= \ |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 843 | $(srcdir)/Include/Python.h \ |
| 844 | $(srcdir)/Include/abstract.h \ |
| 845 | $(srcdir)/Include/accu.h \ |
| 846 | $(srcdir)/Include/asdl.h \ |
| 847 | $(srcdir)/Include/ast.h \ |
| 848 | $(srcdir)/Include/bltinmodule.h \ |
| 849 | $(srcdir)/Include/bitset.h \ |
| 850 | $(srcdir)/Include/boolobject.h \ |
| 851 | $(srcdir)/Include/bytes_methods.h \ |
| 852 | $(srcdir)/Include/bytearrayobject.h \ |
| 853 | $(srcdir)/Include/bytesobject.h \ |
| 854 | $(srcdir)/Include/cellobject.h \ |
| 855 | $(srcdir)/Include/ceval.h \ |
| 856 | $(srcdir)/Include/classobject.h \ |
| 857 | $(srcdir)/Include/code.h \ |
| 858 | $(srcdir)/Include/codecs.h \ |
| 859 | $(srcdir)/Include/compile.h \ |
| 860 | $(srcdir)/Include/complexobject.h \ |
| 861 | $(srcdir)/Include/descrobject.h \ |
| 862 | $(srcdir)/Include/dictobject.h \ |
| 863 | $(srcdir)/Include/dtoa.h \ |
| 864 | $(srcdir)/Include/dynamic_annotations.h \ |
| 865 | $(srcdir)/Include/enumobject.h \ |
| 866 | $(srcdir)/Include/errcode.h \ |
| 867 | $(srcdir)/Include/eval.h \ |
| 868 | $(srcdir)/Include/fileobject.h \ |
| 869 | $(srcdir)/Include/fileutils.h \ |
| 870 | $(srcdir)/Include/floatobject.h \ |
| 871 | $(srcdir)/Include/frameobject.h \ |
| 872 | $(srcdir)/Include/funcobject.h \ |
| 873 | $(srcdir)/Include/genobject.h \ |
| 874 | $(srcdir)/Include/import.h \ |
| 875 | $(srcdir)/Include/intrcheck.h \ |
| 876 | $(srcdir)/Include/iterobject.h \ |
| 877 | $(srcdir)/Include/listobject.h \ |
| 878 | $(srcdir)/Include/longintrepr.h \ |
| 879 | $(srcdir)/Include/longobject.h \ |
| 880 | $(srcdir)/Include/marshal.h \ |
| 881 | $(srcdir)/Include/memoryobject.h \ |
| 882 | $(srcdir)/Include/metagrammar.h \ |
| 883 | $(srcdir)/Include/methodobject.h \ |
| 884 | $(srcdir)/Include/modsupport.h \ |
| 885 | $(srcdir)/Include/moduleobject.h \ |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 886 | $(srcdir)/Include/namespaceobject.h \ |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 887 | $(srcdir)/Include/node.h \ |
| 888 | $(srcdir)/Include/object.h \ |
| 889 | $(srcdir)/Include/objimpl.h \ |
| 890 | $(srcdir)/Include/opcode.h \ |
| 891 | $(srcdir)/Include/osdefs.h \ |
| 892 | $(srcdir)/Include/patchlevel.h \ |
| 893 | $(srcdir)/Include/pgen.h \ |
| 894 | $(srcdir)/Include/pgenheaders.h \ |
| 895 | $(srcdir)/Include/pyarena.h \ |
| 896 | $(srcdir)/Include/pyatomic.h \ |
| 897 | $(srcdir)/Include/pycapsule.h \ |
| 898 | $(srcdir)/Include/pyctype.h \ |
| 899 | $(srcdir)/Include/pydebug.h \ |
| 900 | $(srcdir)/Include/pyerrors.h \ |
| 901 | $(srcdir)/Include/pyfpe.h \ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 902 | $(srcdir)/Include/pyhash.h \ |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 903 | $(srcdir)/Include/pymath.h \ |
| 904 | $(srcdir)/Include/pygetopt.h \ |
| 905 | $(srcdir)/Include/pymacro.h \ |
| 906 | $(srcdir)/Include/pymem.h \ |
| 907 | $(srcdir)/Include/pyport.h \ |
| 908 | $(srcdir)/Include/pystate.h \ |
| 909 | $(srcdir)/Include/pystrcmp.h \ |
| 910 | $(srcdir)/Include/pystrtod.h \ |
| 911 | $(srcdir)/Include/pythonrun.h \ |
| 912 | $(srcdir)/Include/pythread.h \ |
| 913 | $(srcdir)/Include/pytime.h \ |
| 914 | $(srcdir)/Include/rangeobject.h \ |
| 915 | $(srcdir)/Include/setobject.h \ |
| 916 | $(srcdir)/Include/sliceobject.h \ |
| 917 | $(srcdir)/Include/structmember.h \ |
| 918 | $(srcdir)/Include/structseq.h \ |
| 919 | $(srcdir)/Include/symtable.h \ |
| 920 | $(srcdir)/Include/sysmodule.h \ |
| 921 | $(srcdir)/Include/traceback.h \ |
| 922 | $(srcdir)/Include/tupleobject.h \ |
| 923 | $(srcdir)/Include/ucnhash.h \ |
| 924 | $(srcdir)/Include/unicodeobject.h \ |
| 925 | $(srcdir)/Include/warnings.h \ |
| 926 | $(srcdir)/Include/weakrefobject.h \ |
Georg Brandl | 86def6c | 2008-01-21 20:36:10 +0000 | [diff] [blame] | 927 | pyconfig.h \ |
Charles-François Natali | 46c686f | 2013-12-15 19:09:00 +0100 | [diff] [blame] | 928 | $(PARSER_HEADERS) \ |
| 929 | $(AST_H) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 930 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 931 | $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS) |
Neil Schemenauer | f65e500 | 2001-01-25 20:07:50 +0000 | [diff] [blame] | 932 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 933 | |
| 934 | ###################################################################### |
| 935 | |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 936 | TESTOPTS= $(EXTRATESTOPTS) |
| 937 | TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS) |
| 938 | TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py |
| 939 | TESTTIMEOUT= 3600 |
| 940 | |
Nadeem Vawda | ecd3e38 | 2011-07-31 01:09:04 +0200 | [diff] [blame] | 941 | # Run a basic set of regression tests. |
| 942 | # This excludes some tests that are particularly resource-intensive. |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 943 | test: all platform |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 944 | $(TESTRUNNER) $(TESTOPTS) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 945 | |
Nadeem Vawda | ecd3e38 | 2011-07-31 01:09:04 +0200 | [diff] [blame] | 946 | # Run the full test suite twice - once without .pyc files, and once with. |
| 947 | # In the past, we've had problems where bugs in the marshalling or |
| 948 | # elsewhere caused bytecode read from .pyc files to behave differently |
| 949 | # than bytecode generated directly from a .py source file. Sometimes |
| 950 | # the bytecode read from a .pyc file had the bug, sometimes the directly |
| 951 | # generated bytecode. This is sometimes a very shy bug needing a lot of |
| 952 | # sample data. |
Skip Montanaro | 446ad71 | 2003-05-06 15:30:20 +0000 | [diff] [blame] | 953 | testall: all platform |
| 954 | -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 955 | $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py |
Christian Heimes | 905a904 | 2007-11-21 02:51:50 +0000 | [diff] [blame] | 956 | -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 957 | -$(TESTRUNNER) -u all $(TESTOPTS) |
| 958 | $(TESTRUNNER) -u all $(TESTOPTS) |
Skip Montanaro | 446ad71 | 2003-05-06 15:30:20 +0000 | [diff] [blame] | 959 | |
Nadeem Vawda | ecd3e38 | 2011-07-31 01:09:04 +0200 | [diff] [blame] | 960 | # Run the test suite for both architectures in a Universal build on OSX. |
| 961 | # Must be run on an Intel box. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 962 | testuniversal: all platform |
| 963 | if [ `arch` != 'i386' ];then \ |
| 964 | echo "This can only be used on OSX/i386" ;\ |
| 965 | exit 1 ;\ |
| 966 | fi |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 967 | $(TESTRUNNER) -u all $(TESTOPTS) |
| 968 | $(RUNSHARED) /usr/libexec/oah/translate \ |
| 969 | ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 970 | |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 971 | # Like testall, but with only one pass and without multiple processes. |
Nadeem Vawda | ecd3e38 | 2011-07-31 01:09:04 +0200 | [diff] [blame] | 972 | # Run an optional script to include information about the build environment. |
Martin v. Löwis | bfa8bd7 | 2006-03-13 10:59:32 +0000 | [diff] [blame] | 973 | buildbottest: all platform |
Thomas Wouters | 89d996e | 2007-09-08 17:39:28 +0000 | [diff] [blame] | 974 | -@if which pybuildbot.identify >/dev/null 2>&1; then \ |
| 975 | pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \ |
| 976 | fi |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 977 | $(TESTRUNNER) -j 1 -u all -W --timeout=$(TESTTIMEOUT) $(TESTOPTS) |
Martin v. Löwis | bfa8bd7 | 2006-03-13 10:59:32 +0000 | [diff] [blame] | 978 | |
Jeremy Hylton | fdd6dee | 2009-03-27 21:24:45 +0000 | [diff] [blame] | 979 | QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \ |
| 980 | test_multibytecodec test_urllib2_localnet test_itertools \ |
Richard Oudkerk | 84ed9a6 | 2013-08-14 15:35:41 +0100 | [diff] [blame] | 981 | test_multiprocessing_fork test_multiprocessing_spawn \ |
| 982 | test_multiprocessing_forkserver \ |
| 983 | test_mailbox test_socket test_poll \ |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 984 | test_select test_zipfile test_concurrent_futures |
Jeremy Hylton | 2a850d9 | 2001-02-01 19:51:28 +0000 | [diff] [blame] | 985 | quicktest: all platform |
Nadeem Vawda | 3c01d16 | 2011-08-01 23:48:26 +0200 | [diff] [blame] | 986 | $(TESTRUNNER) $(QUICKTESTOPTS) |
Jeremy Hylton | 2a850d9 | 2001-02-01 19:51:28 +0000 | [diff] [blame] | 987 | |
Barry Warsaw | 4211925 | 2001-03-03 04:14:21 +0000 | [diff] [blame] | 988 | |
Ned Deily | 322f5ba | 2013-11-21 23:01:59 -0800 | [diff] [blame] | 989 | install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@ |
| 990 | if test "x$(ENSUREPIP)" != "xno" ; then \ |
| 991 | case $(ENSUREPIP) in \ |
| 992 | upgrade) ensurepip="--upgrade" ;; \ |
| 993 | install|*) ensurepip="" ;; \ |
| 994 | esac; \ |
| 995 | $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \ |
| 996 | $$ensurepip --root=$(DESTDIR)/ ; \ |
| 997 | fi |
Guido van Rossum | dc21db3 | 2008-04-07 18:37:41 +0000 | [diff] [blame] | 998 | |
Ned Deily | 322f5ba | 2013-11-21 23:01:59 -0800 | [diff] [blame] | 999 | altinstall: commoninstall |
| 1000 | if test "x$(ENSUREPIP)" != "xno" ; then \ |
| 1001 | case $(ENSUREPIP) in \ |
| 1002 | upgrade) ensurepip="--altinstall --upgrade" ;; \ |
| 1003 | install|*) ensurepip="--altinstall" ;; \ |
| 1004 | esac; \ |
| 1005 | $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \ |
| 1006 | $$ensurepip --root=$(DESTDIR)/ ; \ |
| 1007 | fi |
| 1008 | |
| 1009 | commoninstall: @FRAMEWORKALTINSTALLFIRST@ \ |
| 1010 | altbininstall libinstall inclinstall libainstall \ |
| 1011 | sharedinstall oldsharedinstall altmaninstall \ |
| 1012 | @FRAMEWORKALTINSTALLLAST@ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1013 | |
| 1014 | # Install shared libraries enabled by Setup |
| 1015 | DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED) |
| 1016 | |
| 1017 | oldsharedinstall: $(DESTSHARED) $(SHAREDMODS) |
| 1018 | @for i in X $(SHAREDMODS); do \ |
Neil Schemenauer | ac95977 | 2001-02-06 14:50:27 +0000 | [diff] [blame] | 1019 | if test $$i != X; then \ |
| 1020 | echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1021 | $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ |
Neil Schemenauer | ac95977 | 2001-02-06 14:50:27 +0000 | [diff] [blame] | 1022 | fi; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1023 | done |
| 1024 | |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 1025 | $(DESTSHARED): |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1026 | @for i in $(DESTDIRS); \ |
| 1027 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1028 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1029 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1030 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1031 | else true; \ |
| 1032 | fi; \ |
| 1033 | done |
| 1034 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1035 | # Install the interpreter with $(VERSION) affixed |
| 1036 | # This goes into $(exec_prefix) |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 1037 | altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@ |
Martin v. Löwis | d8a20d2 | 2002-05-08 08:59:59 +0000 | [diff] [blame] | 1038 | @for i in $(BINDIR) $(LIBDIR); \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1039 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1040 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1041 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1042 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1043 | else true; \ |
| 1044 | fi; \ |
| 1045 | done |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 1046 | if test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \ |
| 1047 | $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \ |
| 1048 | else \ |
| 1049 | $(INSTALL_PROGRAM) $(STRIPFLAG) Mac/pythonw $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \ |
| 1050 | fi |
Barry Warsaw | 771d33e | 2010-12-13 18:04:23 +0000 | [diff] [blame] | 1051 | -if test "$(VERSION)" != "$(LDVERSION)"; then \ |
Nick Coghlan | 4fcad3c | 2012-02-17 23:17:34 +1000 | [diff] [blame] | 1052 | if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \ |
Barry Warsaw | 771d33e | 2010-12-13 18:04:23 +0000 | [diff] [blame] | 1053 | then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \ |
| 1054 | fi; \ |
| 1055 | (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \ |
Barry Warsaw | ad6f877 | 2010-12-11 21:32:01 +0000 | [diff] [blame] | 1056 | fi |
Ned Deily | 78094ac | 2013-07-08 14:33:03 -0700 | [diff] [blame] | 1057 | if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \ |
Georg Brandl | 1f01deb | 2009-01-03 22:47:39 +0000 | [diff] [blame] | 1058 | if test -n "$(DLLLIBRARY)" ; then \ |
| 1059 | $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \ |
Jason Tishler | c0f1e77 | 2002-07-29 16:18:23 +0000 | [diff] [blame] | 1060 | else \ |
Georg Brandl | b1441c7 | 2009-01-03 22:33:39 +0000 | [diff] [blame] | 1061 | $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \ |
| 1062 | if test $(LDLIBRARY) != $(INSTSONAME); then \ |
| 1063 | (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \ |
Martin v. Löwis | e3be860 | 2003-11-18 19:54:20 +0000 | [diff] [blame] | 1064 | fi \ |
Jason Tishler | c0f1e77 | 2002-07-29 16:18:23 +0000 | [diff] [blame] | 1065 | fi; \ |
Martin v. Löwis | d1fc34d | 2010-12-30 14:55:47 +0000 | [diff] [blame] | 1066 | if test -n "$(PY3LIBRARY)"; then \ |
| 1067 | $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \ |
| 1068 | fi; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1069 | else true; \ |
| 1070 | fi |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 1071 | if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \ |
| 1072 | rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \ |
| 1073 | lipo $(LIPO_32BIT_FLAGS) \ |
| 1074 | -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \ |
| 1075 | $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \ |
| 1076 | fi |
Benjamin Peterson | 932073a | 2009-05-23 16:14:33 +0000 | [diff] [blame] | 1077 | |
| 1078 | bininstall: altbininstall |
Nick Coghlan | 4fcad3c | 2012-02-17 23:17:34 +1000 | [diff] [blame] | 1079 | -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \ |
| 1080 | then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \ |
Benjamin Peterson | f4841e2 | 2009-04-25 21:04:19 +0000 | [diff] [blame] | 1081 | else true; \ |
| 1082 | fi |
Nick Coghlan | 4fcad3c | 2012-02-17 23:17:34 +1000 | [diff] [blame] | 1083 | (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE)) |
Barry Warsaw | 771d33e | 2010-12-13 18:04:23 +0000 | [diff] [blame] | 1084 | -if test "$(VERSION)" != "$(LDVERSION)"; then \ |
| 1085 | rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \ |
| 1086 | (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \ |
| 1087 | rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \ |
| 1088 | (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \ |
| 1089 | fi |
Benjamin Peterson | f4841e2 | 2009-04-25 21:04:19 +0000 | [diff] [blame] | 1090 | -rm -f $(DESTDIR)$(BINDIR)/python3-config |
| 1091 | (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config) |
Antoine Pitrou | 2032722 | 2009-05-24 20:39:11 +0000 | [diff] [blame] | 1092 | -rm -f $(DESTDIR)$(LIBPC)/python3.pc |
| 1093 | (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc) |
Georg Brandl | ff52f76 | 2010-12-28 09:51:43 +0000 | [diff] [blame] | 1094 | -rm -f $(DESTDIR)$(BINDIR)/idle3 |
| 1095 | (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3) |
| 1096 | -rm -f $(DESTDIR)$(BINDIR)/pydoc3 |
| 1097 | (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3) |
| 1098 | -rm -f $(DESTDIR)$(BINDIR)/2to3 |
| 1099 | (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3) |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 1100 | -rm -f $(DESTDIR)$(BINDIR)/pyvenv |
| 1101 | (cd $(DESTDIR)$(BINDIR); $(LN) -s pyvenv-$(VERSION) pyvenv) |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 1102 | if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \ |
| 1103 | rm -f $(DESTDIR)$(BINDIR)/python3-32$(EXE); \ |
| 1104 | (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-32$(EXE) python3-32$(EXE)) \ |
| 1105 | fi |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1106 | |
Ned Deily | a48b61f | 2013-02-08 22:53:51 -0800 | [diff] [blame] | 1107 | # Install the versioned manual page |
| 1108 | altmaninstall: |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1109 | @for i in $(MANDIR) $(MANDIR)/man1; \ |
| 1110 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1111 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1112 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1113 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1114 | else true; \ |
| 1115 | fi; \ |
| 1116 | done |
| 1117 | $(INSTALL_DATA) $(srcdir)/Misc/python.man \ |
Benjamin Peterson | 1a6e0d0 | 2008-10-25 15:49:17 +0000 | [diff] [blame] | 1118 | $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1 |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1119 | |
Ned Deily | a48b61f | 2013-02-08 22:53:51 -0800 | [diff] [blame] | 1120 | # Install the unversioned manual page |
| 1121 | maninstall: altmaninstall |
| 1122 | -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1 |
| 1123 | (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1) |
| 1124 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1125 | # Install the library |
| 1126 | PLATDIR= plat-$(MACHDEP) |
Jack Jansen | 83f898c | 2002-12-30 22:23:40 +0000 | [diff] [blame] | 1127 | EXTRAPLATDIR= @EXTRAPLATDIR@ |
| 1128 | MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1129 | XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax |
Benjamin Peterson | cb6dbe5 | 2010-03-18 21:36:06 +0000 | [diff] [blame] | 1130 | LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \ |
Victor Stinner | 5b32659 | 2011-05-25 01:15:59 +0200 | [diff] [blame] | 1131 | tkinter/test/test_ttk site-packages test \ |
Serhiy Storchaka | c3a9b35 | 2013-10-14 21:18:50 +0300 | [diff] [blame] | 1132 | test/audiodata \ |
Ned Deily | e2d5190 | 2011-07-04 19:06:20 -0700 | [diff] [blame] | 1133 | test/capath test/data \ |
Barry Warsaw | 04fe64b | 2011-06-14 16:51:58 -0400 | [diff] [blame] | 1134 | test/cjkencodings test/decimaltestdata test/xmltestdata \ |
Ned Deily | 6bb21c4 | 2014-02-02 13:59:49 -0800 | [diff] [blame] | 1135 | test/imghdrdata \ |
Ned Deily | cdc75d9 | 2013-07-30 14:30:15 -0700 | [diff] [blame] | 1136 | test/subprocessdata test/sndhdrdata test/support \ |
Alexander Belopolsky | e8f5832 | 2010-10-15 16:28:20 +0000 | [diff] [blame] | 1137 | test/tracedmodules test/encoded_modules \ |
Ned Deily | 490e53b | 2014-04-08 18:54:49 -0700 | [diff] [blame] | 1138 | test/test_importlib/namespace_pkgs \ |
| 1139 | test/test_importlib/namespace_pkgs/both_portions \ |
| 1140 | test/test_importlib/namespace_pkgs/both_portions/foo \ |
| 1141 | test/test_importlib/namespace_pkgs/not_a_namespace_pkg \ |
| 1142 | test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo \ |
| 1143 | test/test_importlib/namespace_pkgs/portion1 \ |
| 1144 | test/test_importlib/namespace_pkgs/portion1/foo \ |
| 1145 | test/test_importlib/namespace_pkgs/portion2 \ |
| 1146 | test/test_importlib/namespace_pkgs/portion2/foo \ |
| 1147 | test/test_importlib/namespace_pkgs/project1 \ |
| 1148 | test/test_importlib/namespace_pkgs/project1/parent \ |
| 1149 | test/test_importlib/namespace_pkgs/project1/parent/child \ |
| 1150 | test/test_importlib/namespace_pkgs/project2 \ |
| 1151 | test/test_importlib/namespace_pkgs/project2/parent \ |
| 1152 | test/test_importlib/namespace_pkgs/project2/parent/child \ |
| 1153 | test/test_importlib/namespace_pkgs/project3 \ |
| 1154 | test/test_importlib/namespace_pkgs/project3/parent \ |
| 1155 | test/test_importlib/namespace_pkgs/project3/parent/child \ |
| 1156 | test/test_importlib/namespace_pkgs/module_and_namespace_package \ |
| 1157 | test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test \ |
Ned Deily | 3c97e46 | 2013-10-17 18:08:00 -0700 | [diff] [blame] | 1158 | asyncio \ |
| 1159 | test/test_asyncio \ |
Georg Brandl | 5329123 | 2011-02-23 07:30:12 +0000 | [diff] [blame] | 1160 | collections concurrent concurrent/futures encodings \ |
R David Murray | 92cafb8 | 2011-06-17 11:41:49 -0400 | [diff] [blame] | 1161 | email email/mime test/test_email test/test_email/data \ |
Nick Coghlan | d0cf063 | 2013-11-11 22:11:55 +1000 | [diff] [blame] | 1162 | ensurepip ensurepip/_bundled \ |
Ezio Melotti | 66f2ea0 | 2013-08-08 15:03:45 +0300 | [diff] [blame] | 1163 | html json test/test_json http dbm xmlrpc \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1164 | sqlite3 sqlite3/test \ |
Georg Brandl | 1158a33 | 2009-06-04 09:30:30 +0000 | [diff] [blame] | 1165 | logging csv wsgiref urllib \ |
Alexandre Vassalotti | e9f305f | 2008-05-16 04:39:54 +0000 | [diff] [blame] | 1166 | lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \ |
Barry Warsaw | 04fe64b | 2011-06-14 16:51:58 -0400 | [diff] [blame] | 1167 | lib2to3/tests/data lib2to3/tests/data/fixers \ |
| 1168 | lib2to3/tests/data/fixers/myfixes \ |
Ned Deily | c3909e5 | 2013-11-03 20:08:53 -0800 | [diff] [blame] | 1169 | ctypes ctypes/test ctypes/macholib \ |
| 1170 | idlelib idlelib/Icons idlelib/idle_test \ |
Fred Drake | e612c8e | 2005-01-19 06:24:58 +0000 | [diff] [blame] | 1171 | distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \ |
Ned Deily | cc409f4 | 2012-07-20 13:24:58 -0700 | [diff] [blame] | 1172 | importlib test/test_importlib test/test_importlib/builtin \ |
| 1173 | test/test_importlib/extension test/test_importlib/frozen \ |
| 1174 | test/test_importlib/import_ test/test_importlib/source \ |
Alexander Belopolsky | ea13d9d | 2010-11-01 17:39:37 +0000 | [diff] [blame] | 1175 | turtledemo \ |
Benjamin Peterson | 6bf2d6b | 2008-06-20 02:54:41 +0000 | [diff] [blame] | 1176 | multiprocessing multiprocessing/dummy \ |
Ned Deily | e8b416e | 2012-03-22 13:34:11 -0700 | [diff] [blame] | 1177 | unittest unittest/test unittest/test/testmock \ |
Vinay Sajip | 7ded1f0 | 2012-05-26 03:45:29 +0100 | [diff] [blame] | 1178 | venv venv/scripts venv/scripts/posix \ |
Ronald Oussoren | 69026bb | 2009-05-19 19:07:43 +0000 | [diff] [blame] | 1179 | curses pydoc_data $(MACHDEPS) |
Ned Deily | 58f27b2 | 2011-06-28 00:42:50 -0700 | [diff] [blame] | 1180 | libinstall: build_all $(srcdir)/Lib/$(PLATDIR) $(srcdir)/Modules/xxmodule.c |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1181 | @for i in $(SCRIPTDIR) $(LIBDEST); \ |
| 1182 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1183 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1184 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1185 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1186 | else true; \ |
| 1187 | fi; \ |
| 1188 | done |
| 1189 | @for d in $(LIBSUBDIRS); \ |
| 1190 | do \ |
| 1191 | a=$(srcdir)/Lib/$$d; \ |
| 1192 | if test ! -d $$a; then continue; else true; fi; \ |
| 1193 | b=$(LIBDEST)/$$d; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1194 | if test ! -d $(DESTDIR)$$b; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1195 | echo "Creating directory $$b"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1196 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1197 | else true; \ |
| 1198 | fi; \ |
| 1199 | done |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 1200 | @for i in $(srcdir)/Lib/*.py `cat pybuilddir.txt`/_sysconfigdata.py; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1201 | do \ |
| 1202 | if test -x $$i; then \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1203 | $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \ |
Neil Schemenauer | 3f5cc20 | 2001-04-10 23:03:35 +0000 | [diff] [blame] | 1204 | echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1205 | else \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1206 | $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1207 | echo $(INSTALL_DATA) $$i $(LIBDEST); \ |
| 1208 | fi; \ |
| 1209 | done |
| 1210 | @for d in $(LIBSUBDIRS); \ |
| 1211 | do \ |
| 1212 | a=$(srcdir)/Lib/$$d; \ |
| 1213 | if test ! -d $$a; then continue; else true; fi; \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1214 | if test `ls $$a | wc -l` -lt 1; then continue; fi; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1215 | b=$(LIBDEST)/$$d; \ |
| 1216 | for i in $$a/*; \ |
| 1217 | do \ |
| 1218 | case $$i in \ |
| 1219 | *CVS) ;; \ |
| 1220 | *.py[co]) ;; \ |
| 1221 | *.orig) ;; \ |
| 1222 | *~) ;; \ |
| 1223 | *) \ |
| 1224 | if test -d $$i; then continue; fi; \ |
| 1225 | if test -x $$i; then \ |
Neil Schemenauer | 3f5cc20 | 2001-04-10 23:03:35 +0000 | [diff] [blame] | 1226 | echo $(INSTALL_SCRIPT) $$i $$b; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1227 | $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1228 | else \ |
| 1229 | echo $(INSTALL_DATA) $$i $$b; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1230 | $(INSTALL_DATA) $$i $(DESTDIR)$$b; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1231 | fi;; \ |
| 1232 | esac; \ |
| 1233 | done; \ |
| 1234 | done |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1235 | $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt |
Ned Deily | 58f27b2 | 2011-06-28 00:42:50 -0700 | [diff] [blame] | 1236 | if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \ |
| 1237 | $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \ |
| 1238 | $(DESTDIR)$(LIBDEST)/distutils/tests ; \ |
| 1239 | fi |
Guido van Rossum | 827bfd0 | 2007-07-15 13:12:42 +0000 | [diff] [blame] | 1240 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1241 | $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \ |
Martin v. Löwis | 975302d | 2003-06-21 13:26:28 +0000 | [diff] [blame] | 1242 | -d $(LIBDEST) -f \ |
Benjamin Peterson | 89a545f | 2010-03-18 22:58:19 +0000 | [diff] [blame] | 1243 | -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \ |
Benjamin Peterson | f47ed4a | 2009-04-11 20:45:40 +0000 | [diff] [blame] | 1244 | $(DESTDIR)$(LIBDEST) |
Guido van Rossum | 827bfd0 | 2007-07-15 13:12:42 +0000 | [diff] [blame] | 1245 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1246 | $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \ |
Martin v. Löwis | 975302d | 2003-06-21 13:26:28 +0000 | [diff] [blame] | 1247 | -d $(LIBDEST) -f \ |
Benjamin Peterson | 89a545f | 2010-03-18 22:58:19 +0000 | [diff] [blame] | 1248 | -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \ |
Benjamin Peterson | f47ed4a | 2009-04-11 20:45:40 +0000 | [diff] [blame] | 1249 | $(DESTDIR)$(LIBDEST) |
Hye-Shik Chang | 0e5e6c7 | 2004-03-18 07:51:27 +0000 | [diff] [blame] | 1250 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1251 | $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \ |
Martin v. Löwis | 975302d | 2003-06-21 13:26:28 +0000 | [diff] [blame] | 1252 | -d $(LIBDEST)/site-packages -f \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1253 | -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages |
Hye-Shik Chang | 0e5e6c7 | 2004-03-18 07:51:27 +0000 | [diff] [blame] | 1254 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1255 | $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \ |
Martin v. Löwis | 975302d | 2003-06-21 13:26:28 +0000 | [diff] [blame] | 1256 | -d $(LIBDEST)/site-packages -f \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1257 | -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages |
Ned Deily | 4725b13 | 2012-09-08 19:04:47 -0700 | [diff] [blame] | 1258 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
| 1259 | $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt |
| 1260 | -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \ |
| 1261 | $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1262 | |
| 1263 | # Create the PLATDIR source directory, if one wasn't distributed.. |
| 1264 | $(srcdir)/Lib/$(PLATDIR): |
| 1265 | mkdir $(srcdir)/Lib/$(PLATDIR) |
| 1266 | cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen |
| 1267 | export PATH; PATH="`pwd`:$$PATH"; \ |
| 1268 | export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1269 | export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \ |
Jack Jansen | 0d15366 | 2001-12-19 09:24:40 +0000 | [diff] [blame] | 1270 | export EXE; EXE="$(BUILDEXE)"; \ |
doko@python.org | 3e6e2ac | 2013-01-25 13:12:29 +0100 | [diff] [blame] | 1271 | if [ -n "$(MULTIARCH)" ]; then export MULTIARCH; MULTIARCH=$(MULTIARCH); fi; \ |
doko@python.org | a10e4a9 | 2013-01-25 18:45:12 +0100 | [diff] [blame] | 1272 | export PYTHON_FOR_BUILD; \ |
| 1273 | if [ "$(BUILD_GNU_TYPE)" = "$(HOST_GNU_TYPE)" ]; then \ |
| 1274 | PYTHON_FOR_BUILD="$(BUILDPYTHON)"; \ |
| 1275 | else \ |
| 1276 | PYTHON_FOR_BUILD="$(PYTHON_FOR_BUILD)"; \ |
| 1277 | fi; \ |
Benjamin Peterson | fce25a7 | 2008-12-30 18:05:46 +0000 | [diff] [blame] | 1278 | cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1279 | |
doko@python.org | 8742119 | 2013-01-26 11:39:31 +0100 | [diff] [blame] | 1280 | python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh |
Collin Winter | bf19907 | 2010-03-19 21:17:17 +0000 | [diff] [blame] | 1281 | # Substitution happens here, as the completely-expanded BINDIR |
| 1282 | # is not available in configure |
doko@python.org | 8742119 | 2013-01-26 11:39:31 +0100 | [diff] [blame] | 1283 | sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py |
| 1284 | # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR} |
| 1285 | sed -e 's,\$$(\([A-Za-z0-9_]*\)),\$$\{\1\},g' < Misc/python-config.sh >python-config |
doko@ubuntu.com | 0df35b0 | 2013-08-01 15:32:49 +0200 | [diff] [blame] | 1286 | # On Darwin, always use the python version of the script, the shell |
| 1287 | # version doesn't use the compiler customizations that are provided |
| 1288 | # in python (_osx_support.py). |
| 1289 | if test `uname -s` = Darwin; then \ |
| 1290 | cp python-config.py python-config; \ |
| 1291 | fi |
| 1292 | |
Collin Winter | bf19907 | 2010-03-19 21:17:17 +0000 | [diff] [blame] | 1293 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1294 | # Install the include files |
| 1295 | INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY) |
| 1296 | inclinstall: |
| 1297 | @for i in $(INCLDIRSTOMAKE); \ |
| 1298 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1299 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1300 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1301 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1302 | else true; \ |
| 1303 | fi; \ |
| 1304 | done |
| 1305 | @for i in $(srcdir)/Include/*.h; \ |
| 1306 | do \ |
| 1307 | echo $(INSTALL_DATA) $$i $(INCLUDEPY); \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1308 | $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1309 | done |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1310 | $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1311 | |
| 1312 | # Install the library and miscellaneous stuff needed for extending/embedding |
| 1313 | # This goes into $(exec_prefix) |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 1314 | LIBPL= $(LIBDEST)/config-$(LDVERSION) |
Antoine Pitrou | 2032722 | 2009-05-24 20:39:11 +0000 | [diff] [blame] | 1315 | |
| 1316 | # pkgconfig directory |
| 1317 | LIBPC= $(LIBDIR)/pkgconfig |
| 1318 | |
Collin Winter | bf19907 | 2010-03-19 21:17:17 +0000 | [diff] [blame] | 1319 | libainstall: all python-config |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 1320 | @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1321 | do \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1322 | if test ! -d $(DESTDIR)$$i; then \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1323 | echo "Creating directory $$i"; \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1324 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1325 | else true; \ |
| 1326 | fi; \ |
| 1327 | done |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 1328 | @if test -d $(LIBRARY); then :; else \ |
Jack Jansen | 127e56e | 2001-09-11 14:41:54 +0000 | [diff] [blame] | 1329 | if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \ |
doko@ubuntu.com | d5537d0 | 2013-03-21 13:21:49 -0700 | [diff] [blame] | 1330 | if test "$(SHLIB_SUFFIX)" = .dll; then \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1331 | $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \ |
Jason Tishler | c0f1e77 | 2002-07-29 16:18:23 +0000 | [diff] [blame] | 1332 | else \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1333 | $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \ |
| 1334 | $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \ |
Jason Tishler | c0f1e77 | 2002-07-29 16:18:23 +0000 | [diff] [blame] | 1335 | fi; \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1336 | else \ |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 1337 | echo Skip install of $(LIBRARY) - use make frameworkinstall; \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1338 | fi; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1339 | fi |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1340 | $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1341 | $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1342 | $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in |
| 1343 | $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile |
| 1344 | $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup |
| 1345 | $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local |
| 1346 | $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config |
Antoine Pitrou | 2032722 | 2009-05-24 20:39:11 +0000 | [diff] [blame] | 1347 | $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1348 | $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup |
| 1349 | $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh |
doko@python.org | 8742119 | 2013-01-26 11:39:31 +0100 | [diff] [blame] | 1350 | $(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py |
Barry Warsaw | 14d98ac | 2010-11-24 19:43:47 +0000 | [diff] [blame] | 1351 | $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1352 | @if [ -s Modules/python.exp -a \ |
| 1353 | "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ |
| 1354 | echo; echo "Installing support files for building shared extension modules on AIX:"; \ |
| 1355 | $(INSTALL_DATA) Modules/python.exp \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1356 | $(DESTDIR)$(LIBPL)/python.exp; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1357 | echo; echo "$(LIBPL)/python.exp"; \ |
Neil Schemenauer | 3f5cc20 | 2001-04-10 23:03:35 +0000 | [diff] [blame] | 1358 | $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1359 | $(DESTDIR)$(LIBPL)/makexp_aix; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1360 | echo "$(LIBPL)/makexp_aix"; \ |
Neil Schemenauer | 3f5cc20 | 2001-04-10 23:03:35 +0000 | [diff] [blame] | 1361 | $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1362 | $(DESTDIR)$(LIBPL)/ld_so_aix; \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1363 | echo "$(LIBPL)/ld_so_aix"; \ |
| 1364 | echo; echo "See Misc/AIX-NOTES for details."; \ |
| 1365 | else true; \ |
| 1366 | fi |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1367 | |
| 1368 | # Install the dynamically loadable modules |
| 1369 | # This goes into $(exec_prefix) |
Benjamin Peterson | bbda0c5 | 2010-07-17 20:39:23 +0000 | [diff] [blame] | 1370 | sharedinstall: sharedmods |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1371 | $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \ |
Martin v. Löwis | 1142de3 | 2002-03-29 16:28:31 +0000 | [diff] [blame] | 1372 | --prefix=$(prefix) \ |
Guido van Rossum | b33e789 | 2001-10-17 06:26:53 +0000 | [diff] [blame] | 1373 | --install-scripts=$(BINDIR) \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1374 | --install-platlib=$(DESTSHARED) \ |
Thomas Wouters | 81638f1 | 2011-03-06 11:49:15 -0800 | [diff] [blame] | 1375 | --root=$(DESTDIR)/ |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 1376 | -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata.py |
| 1377 | -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1378 | |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1379 | # Here are a couple of targets for MacOSX again, to install a full |
| 1380 | # framework-based Python. frameworkinstall installs everything, the |
| 1381 | # subtargets install specific parts. Much of the actual work is offloaded to |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1382 | # the Makefile in Mac |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1383 | # |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1384 | # |
| 1385 | # This target is here for backward compatiblity, previous versions of Python |
| 1386 | # hadn't integrated framework installation in the normal install process. |
| 1387 | frameworkinstall: install |
Guido van Rossum | ed2f725 | 2002-08-09 19:18:25 +0000 | [diff] [blame] | 1388 | |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1389 | # On install, we re-make the framework |
| 1390 | # structure in the install location, /Library/Frameworks/ or the argument to |
| 1391 | # --enable-framework. If --enable-framework has been specified then we have |
| 1392 | # automatically set prefix to the location deep down in the framework, so we |
| 1393 | # only have to cater for the structural bits of the framework. |
| 1394 | |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1395 | frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib |
| 1396 | |
| 1397 | frameworkinstallstructure: $(LDLIBRARY) |
Jack Jansen | 127e56e | 2001-09-11 14:41:54 +0000 | [diff] [blame] | 1398 | @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1399 | echo Not configured with --enable-framework; \ |
Jack Jansen | 127e56e | 2001-09-11 14:41:54 +0000 | [diff] [blame] | 1400 | exit 1; \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1401 | else true; \ |
| 1402 | fi |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1403 | @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1404 | if test ! -d $(DESTDIR)$$i; then \ |
Jack Jansen | 9592fe9 | 2003-05-25 22:01:32 +0000 | [diff] [blame] | 1405 | echo "Creating directory $(DESTDIR)$$i"; \ |
| 1406 | $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \ |
Jack Jansen | b6e9cad | 2001-08-15 01:26:28 +0000 | [diff] [blame] | 1407 | else true; \ |
| 1408 | fi; \ |
| 1409 | done |
Ronald Oussoren | 0499d0b | 2010-12-07 14:41:05 +0000 | [diff] [blame] | 1410 | $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers |
Benjamin Peterson | 4c29b47 | 2008-07-01 14:42:51 +0000 | [diff] [blame] | 1411 | sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist |
Jack Jansen | 9592fe9 | 2003-05-25 22:01:32 +0000 | [diff] [blame] | 1412 | $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 1413 | $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK) |
Jack Jansen | 9592fe9 | 2003-05-25 22:01:32 +0000 | [diff] [blame] | 1414 | $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers |
| 1415 | $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources |
Jack Jansen | 4735b23 | 2003-06-20 20:36:53 +0000 | [diff] [blame] | 1416 | $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY) |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 1417 | |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1418 | # This installs Mac/Lib into the framework |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1419 | # Install a number of symlinks to keep software that expects a normal unix |
| 1420 | # install (which includes python-config) happy. |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1421 | frameworkinstallmaclib: |
Christian Heimes | ae6275d | 2013-07-09 14:30:04 +0200 | [diff] [blame] | 1422 | $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).a" |
| 1423 | $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).dylib" |
| 1424 | $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).a" |
| 1425 | $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).dylib" |
| 1426 | $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib" |
| 1427 | $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib" |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1428 | |
| 1429 | # This installs the IDE, the Launcher and other apps into /Applications |
| 1430 | frameworkinstallapps: |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1431 | cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)" |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1432 | |
Ned Deily | b8f944f | 2013-11-21 22:42:25 -0800 | [diff] [blame] | 1433 | # Build the bootstrap executable that will spawn the interpreter inside |
| 1434 | # an app bundle within the framework. This allows the interpreter to |
| 1435 | # run OS X GUI APIs. |
| 1436 | frameworkpythonw: |
| 1437 | cd Mac && $(MAKE) pythonw |
| 1438 | |
| 1439 | # This installs the python* and other bin symlinks in $prefix/bin or in |
| 1440 | # a bin directory relative to the framework root |
Jack Jansen | cb4321e | 2002-08-09 00:18:21 +0000 | [diff] [blame] | 1441 | frameworkinstallunixtools: |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1442 | cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)" |
| 1443 | |
| 1444 | frameworkaltinstallunixtools: |
| 1445 | cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)" |
Jack Jansen | 0b06be7 | 2002-06-21 14:48:38 +0000 | [diff] [blame] | 1446 | |
Georg Brandl | 59b4472 | 2010-12-30 22:12:40 +0000 | [diff] [blame] | 1447 | # This installs the Tools into the applications directory. |
Jack Jansen | a1b7758 | 2003-06-19 22:35:20 +0000 | [diff] [blame] | 1448 | # It is not part of a normal frameworkinstall |
| 1449 | frameworkinstallextras: |
Mark Dickinson | 09027aa | 2008-12-18 19:49:35 +0000 | [diff] [blame] | 1450 | cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)" |
Jack Jansen | a1b7758 | 2003-06-19 22:35:20 +0000 | [diff] [blame] | 1451 | |
Skip Montanaro | decc6a4 | 2003-01-01 20:07:49 +0000 | [diff] [blame] | 1452 | # This installs a few of the useful scripts in Tools/scripts |
| 1453 | scriptsinstall: |
Martin v. Löwis | 01f4311 | 2003-01-03 20:39:29 +0000 | [diff] [blame] | 1454 | SRCDIR=$(srcdir) $(RUNSHARED) \ |
doko@ubuntu.com | 1abe1c5 | 2012-06-30 20:42:45 +0200 | [diff] [blame] | 1455 | $(PYTHON_FOR_BUILD) $(srcdir)/Tools/scripts/setup.py install \ |
Skip Montanaro | decc6a4 | 2003-01-01 20:07:49 +0000 | [diff] [blame] | 1456 | --prefix=$(prefix) \ |
Martin v. Löwis | 3b8ee08 | 2003-05-11 20:25:35 +0000 | [diff] [blame] | 1457 | --install-scripts=$(BINDIR) \ |
Thomas Wouters | 81638f1 | 2011-03-06 11:49:15 -0800 | [diff] [blame] | 1458 | --root=$(DESTDIR)/ |
Skip Montanaro | decc6a4 | 2003-01-01 20:07:49 +0000 | [diff] [blame] | 1459 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1460 | # Build the toplevel Makefile |
Victor Stinner | 69f55cc | 2011-10-12 22:09:40 +0200 | [diff] [blame] | 1461 | Makefile.pre: $(srcdir)/Makefile.pre.in config.status |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1462 | CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status |
| 1463 | $(MAKE) -f Makefile.pre Makefile |
| 1464 | |
Neil Schemenauer | 64b1b68 | 2001-03-22 00:32:32 +0000 | [diff] [blame] | 1465 | # Run the configure script. |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1466 | config.status: $(srcdir)/configure |
Neil Schemenauer | 64b1b68 | 2001-03-22 00:32:32 +0000 | [diff] [blame] | 1467 | $(SHELL) $(srcdir)/configure $(CONFIG_ARGS) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1468 | |
Jack Jansen | 1999ef4 | 2001-12-06 21:47:20 +0000 | [diff] [blame] | 1469 | .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1470 | |
| 1471 | # Some make's put the object file in the current directory |
| 1472 | .c.o: |
Jeffrey Yasskin | d4fcdb1 | 2010-07-09 16:30:58 +0000 | [diff] [blame] | 1473 | $(CC) -c $(PY_CORE_CFLAGS) -o $@ $< |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1474 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1475 | # Run reindent on the library |
| 1476 | reindent: |
Christian Heimes | fd66e51 | 2008-01-29 12:18:50 +0000 | [diff] [blame] | 1477 | ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1478 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1479 | # Rerun configure with the same options as it was run last time, |
| 1480 | # provided the config.status script exists |
| 1481 | recheck: |
| 1482 | $(SHELL) config.status --recheck |
| 1483 | $(SHELL) config.status |
| 1484 | |
Matthias Klose | 0f4c16e | 2012-03-14 23:10:15 +0100 | [diff] [blame] | 1485 | # Rebuild the configure script from configure.ac; also rebuild pyconfig.h.in |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1486 | autoconf: |
Matthias Klose | 80b09d4 | 2010-04-25 21:23:32 +0000 | [diff] [blame] | 1487 | (cd $(srcdir); autoconf -Wall) |
| 1488 | (cd $(srcdir); autoheader -Wall) |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1489 | |
| 1490 | # Create a tags file for vi |
| 1491 | tags:: |
| 1492 | cd $(srcdir); \ |
| 1493 | ctags -w -t Include/*.h; \ |
| 1494 | for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \ |
| 1495 | done; \ |
Guido van Rossum | c948966 | 2002-02-28 19:26:08 +0000 | [diff] [blame] | 1496 | sort -o tags tags |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1497 | |
| 1498 | # Create a tags file for GNU Emacs |
| 1499 | TAGS:: |
| 1500 | cd $(srcdir); \ |
| 1501 | etags Include/*.h; \ |
| 1502 | for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done |
| 1503 | |
Georg Brandl | 2a3e396 | 2014-10-06 14:58:17 +0200 | [diff] [blame] | 1504 | # This fixes up the mtimes of checked-in generated files, assuming that they |
| 1505 | # only *appear* to be outdated because of checkout order. |
| 1506 | # This is run while preparing a source release tarball, and can be run manually |
| 1507 | # to avoid bootstrap issues. |
Martin v. Loewis | cfc1cc2 | 2012-04-27 16:10:21 +0200 | [diff] [blame] | 1508 | touch: |
Ned Deily | a869fd3 | 2014-05-11 21:45:13 -0700 | [diff] [blame] | 1509 | cd $(srcdir); \ |
Martin v. Loewis | cfc1cc2 | 2012-04-27 16:10:21 +0200 | [diff] [blame] | 1510 | hg --config extensions.touch=Tools/hg/hgtouch.py touch -v |
| 1511 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1512 | # Sanitation targets -- clean leaves libraries, executables and tags |
Mark Dickinson | 067b38e | 2009-09-24 19:24:44 +0000 | [diff] [blame] | 1513 | # files, which clobber removes as well |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1514 | pycremoval: |
Petri Lehtinen | bc74ee0 | 2011-11-05 21:04:24 +0200 | [diff] [blame] | 1515 | -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';' |
Barry Warsaw | 5f2347d | 2010-04-26 16:02:14 +0000 | [diff] [blame] | 1516 | -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1517 | |
Guido van Rossum | 77b5e33 | 2007-08-29 23:24:02 +0000 | [diff] [blame] | 1518 | rmtestturds: |
| 1519 | -rm -f *BAD *GOOD *SKIPPED |
| 1520 | -rm -rf OUT |
| 1521 | -rm -f *.TXT |
| 1522 | -rm -f *.txt |
| 1523 | -rm -f gb-18030-2000.xml |
| 1524 | |
Guido van Rossum | 8188e63 | 2007-08-29 23:48:29 +0000 | [diff] [blame] | 1525 | docclean: |
| 1526 | -rm -rf Doc/build |
| 1527 | -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils |
| 1528 | |
Guido van Rossum | 5420bc3 | 2007-08-29 23:35:30 +0000 | [diff] [blame] | 1529 | clean: pycremoval |
Georg Brandl | 241bdab | 2010-07-31 22:05:54 +0000 | [diff] [blame] | 1530 | find . -name '*.[oa]' -exec rm -f {} ';' |
Guido van Rossum | cd0ed97 | 2001-04-14 17:57:07 +0000 | [diff] [blame] | 1531 | find . -name '*.s[ol]' -exec rm -f {} ';' |
Georg Brandl | 241bdab | 2010-07-31 22:05:54 +0000 | [diff] [blame] | 1532 | find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';' |
Thomas Heller | 6ab9148 | 2009-04-24 18:27:10 +0000 | [diff] [blame] | 1533 | find build -name 'fficonfig.h' -exec rm -f {} ';' || true |
Trent Nelson | c101bf3 | 2012-10-16 08:13:12 -0400 | [diff] [blame] | 1534 | find build -name '*.py' -exec rm -f {} ';' || true |
| 1535 | find build -name '*.py[co]' -exec rm -f {} ';' || true |
| 1536 | -rm -f pybuilddir.txt |
Ned Deily | 4725b13 | 2012-09-08 19:04:47 -0700 | [diff] [blame] | 1537 | -rm -f Lib/lib2to3/*Grammar*.pickle |
Antoine Pitrou | e67f48c | 2012-06-19 22:29:35 +0200 | [diff] [blame] | 1538 | -rm -f Modules/_testembed Modules/_freeze_importlib |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1539 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 1540 | profile-removal: |
| 1541 | find . -name '*.gc??' -exec rm -f {} ';' |
Christian Heimes | 49e52f9 | 2013-07-31 00:55:18 +0200 | [diff] [blame] | 1542 | rm -f $(COVERAGE_INFO) |
| 1543 | rm -rf $(COVERAGE_REPORT) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 1544 | |
| 1545 | clobber: clean profile-removal |
Jack Jansen | 1999ef4 | 2001-12-06 21:47:20 +0000 | [diff] [blame] | 1546 | -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ |
Matthias Klose | 597e6b4 | 2012-04-04 13:20:55 +0200 | [diff] [blame] | 1547 | tags TAGS \ |
Guido van Rossum | 7cb32ae | 2001-08-17 15:32:31 +0000 | [diff] [blame] | 1548 | config.cache config.log pyconfig.h Modules/config.c |
Guido van Rossum | 1d88c59 | 2001-06-06 17:51:57 +0000 | [diff] [blame] | 1549 | -rm -rf build platform |
Jack Jansen | c609689 | 2003-02-27 23:19:46 +0000 | [diff] [blame] | 1550 | -rm -rf $(PYTHONFRAMEWORKDIR) |
doko@python.org | 8742119 | 2013-01-26 11:39:31 +0100 | [diff] [blame] | 1551 | -rm -f python-config.py python-config |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1552 | |
| 1553 | # Make things extra clean, before making a distribution: |
| 1554 | # remove all generated files, even Makefile[.pre] |
Neal Norwitz | 1a196b5 | 2006-01-03 01:38:53 +0000 | [diff] [blame] | 1555 | # Keep configure and Python-ast.[ch], it's possible they can't be generated |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1556 | distclean: clobber |
Christian Heimes | f847186 | 2013-11-24 03:32:40 +0100 | [diff] [blame] | 1557 | for file in $(srcdir)/Lib/test/data/* ; do \ |
| 1558 | if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \ |
Mark Dickinson | de802be | 2010-08-01 21:33:01 +0000 | [diff] [blame] | 1559 | done |
Martin v. Löwis | dea59e5 | 2006-01-05 10:00:36 +0000 | [diff] [blame] | 1560 | -rm -f core Makefile Makefile.pre config.status \ |
Mark Dickinson | 9b3d557 | 2009-08-31 14:52:10 +0000 | [diff] [blame] | 1561 | Modules/Setup Modules/Setup.local Modules/Setup.config \ |
Georg Brandl | 9a829be | 2011-02-15 15:44:51 +0000 | [diff] [blame] | 1562 | Modules/ld_so_aix Modules/python.exp Misc/python.pc |
Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 1563 | -rm -f python*-gdb.py |
Eric V. Smith | f4c47b5 | 2013-07-02 09:06:54 -0400 | [diff] [blame] | 1564 | find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \ |
| 1565 | -o -name '[@,#]*' -o -name '*.old' \ |
| 1566 | -o -name '*.orig' -o -name '*.rej' \ |
| 1567 | -o -name '*.bak' ')' \ |
| 1568 | -exec rm -f {} ';' |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1569 | |
| 1570 | # Check for smelly exported symbols (not starting with Py/_Py) |
| 1571 | smelly: all |
| 1572 | nm -p $(LIBRARY) | \ |
| 1573 | sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \ |
| 1574 | |
| 1575 | # Find files with funny names |
| 1576 | funny: |
Éric Araujo | 1c608e3 | 2011-08-10 02:01:32 +0200 | [diff] [blame] | 1577 | find $(SUBDIRS) $(SUBDIRSTOO) \ |
Éric Araujo | e9715b9 | 2011-08-10 21:42:23 +0200 | [diff] [blame] | 1578 | -type d \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1579 | -o -name '*.[chs]' \ |
| 1580 | -o -name '*.py' \ |
Georg Brandl | 4c9aa45 | 2010-08-14 13:43:37 +0000 | [diff] [blame] | 1581 | -o -name '*.pyw' \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1582 | -o -name '*.dat' \ |
| 1583 | -o -name '*.el' \ |
| 1584 | -o -name '*.fd' \ |
| 1585 | -o -name '*.in' \ |
Guido van Rossum | 77b5e33 | 2007-08-29 23:24:02 +0000 | [diff] [blame] | 1586 | -o -name '*.gif' \ |
| 1587 | -o -name '*.txt' \ |
| 1588 | -o -name '*.xml' \ |
| 1589 | -o -name '*.xbm' \ |
| 1590 | -o -name '*.xpm' \ |
| 1591 | -o -name '*.uue' \ |
| 1592 | -o -name '*.decTest' \ |
Georg Brandl | 4c9aa45 | 2010-08-14 13:43:37 +0000 | [diff] [blame] | 1593 | -o -name '*.tmCommand' \ |
| 1594 | -o -name '*.tmSnippet' \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1595 | -o -name 'Setup' \ |
| 1596 | -o -name 'Setup.*' \ |
Guido van Rossum | 77b5e33 | 2007-08-29 23:24:02 +0000 | [diff] [blame] | 1597 | -o -name regen \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1598 | -o -name README \ |
Georg Brandl | 4c9aa45 | 2010-08-14 13:43:37 +0000 | [diff] [blame] | 1599 | -o -name NEWS \ |
| 1600 | -o -name HISTORY \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1601 | -o -name Makefile \ |
| 1602 | -o -name ChangeLog \ |
Georg Brandl | 4c9aa45 | 2010-08-14 13:43:37 +0000 | [diff] [blame] | 1603 | -o -name .hgignore \ |
| 1604 | -o -name .bzrignore \ |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1605 | -o -name MANIFEST \ |
Éric Araujo | b5da6e9 | 2011-08-16 19:05:56 +0200 | [diff] [blame] | 1606 | -o -print |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1607 | |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 1608 | # Perform some verification checks on any modified files. |
Brett Cannon | a741ebf | 2008-09-05 23:01:27 +0000 | [diff] [blame] | 1609 | patchcheck: |
Georg Brandl | fcaf910 | 2008-07-16 02:17:56 +0000 | [diff] [blame] | 1610 | $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 1611 | |
Guido van Rossum | 9454ad7 | 2001-08-18 21:08:22 +0000 | [diff] [blame] | 1612 | # Dependencies |
| 1613 | |
Martin v. Löwis | 06f15bb | 2001-12-02 13:02:32 +0000 | [diff] [blame] | 1614 | Python/thread.o: @THREADHEADERS@ |
Guido van Rossum | 9454ad7 | 2001-08-18 21:08:22 +0000 | [diff] [blame] | 1615 | |
Guido van Rossum | d4f7da3 | 2002-10-10 15:04:04 +0000 | [diff] [blame] | 1616 | # Declare targets that aren't real files |
Victor Stinner | e0a669e | 2011-12-15 21:48:39 +0100 | [diff] [blame] | 1617 | .PHONY: all build_all sharedmods oldsharedmods test quicktest |
Guido van Rossum | d4f7da3 | 2002-10-10 15:04:04 +0000 | [diff] [blame] | 1618 | .PHONY: install altinstall oldsharedinstall bininstall altbininstall |
| 1619 | .PHONY: maninstall libinstall inclinstall libainstall sharedinstall |
| 1620 | .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure |
| 1621 | .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1622 | .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean |
Ned Deily | 322f5ba | 2013-11-21 23:01:59 -0800 | [diff] [blame] | 1623 | .PHONY: smelly funny patchcheck touch altmaninstall commoninstall |
Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 1624 | .PHONY: gdbhooks |
Guido van Rossum | d4f7da3 | 2002-10-10 15:04:04 +0000 | [diff] [blame] | 1625 | |
Neil Schemenauer | 85515ad | 2001-01-24 17:11:43 +0000 | [diff] [blame] | 1626 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |
Barry Warsaw | 771d33e | 2010-12-13 18:04:23 +0000 | [diff] [blame] | 1627 | # Local Variables: |
| 1628 | # mode: makefile |
| 1629 | # End: |