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