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