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