blob: e19fc00b2bba9716bdff191f01b6d929ae0380fc [file] [log] [blame]
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001# Top-level Makefile for Python
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00002#
Neil Schemenauer85515ad2001-01-24 17:11:43 +00003# 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 Rossum7cb32ae2001-08-17 15:32:31 +00008#
Neil Schemenauer85515ad2001-01-24 17:11:43 +00009# ./configure
10# make
11# make test
12# make install
Guido van Rossum7cb32ae2001-08-17 15:32:31 +000013#
Neil Schemenauer85515ad2001-01-24 17:11:43 +000014# 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 Schemenauer2b2681a2001-02-16 04:16:34 +000016# install". Refer to the "Installing" section in the README file for
17# additional details.
Guido van Rossum7cb32ae2001-08-17 15:32:31 +000018#
Neil Schemenauer85515ad2001-01-24 17:11:43 +000019# See also the section "Build instructions" in the README file.
20
21# === Variables set by makesetup ===
22
23MODOBJS= _MODOBJS_
24MODLIBS= _MODLIBS_
25
26# === Variables set by configure
27VERSION= @VERSION@
28srcdir= @srcdir@
29VPATH= @srcdir@
Trent Nelson739fc542012-10-17 04:45:30 -040030abs_srcdir= @abs_srcdir@
31abs_builddir= @abs_builddir@
Trent Nelson9effe692012-10-16 08:41:32 -040032
Neil Schemenauer85515ad2001-01-24 17:11:43 +000033
34CC= @CC@
35CXX= @CXX@
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000036MAINCC= @MAINCC@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000037LINKCC= @LINKCC@
38AR= @AR@
39RANLIB= @RANLIB@
doko@ubuntu.com58844492012-06-30 18:25:32 +020040READELF= @READELF@
Georg Brandl0d169ea2010-09-03 22:14:52 +000041SOABI= @SOABI@
Barry Warsaw8cf4eae2010-10-16 01:04:07 +000042LDVERSION= @LDVERSION@
Georg Brandl1ca2e792011-03-05 20:51:24 +010043HGVERSION= @HGVERSION@
44HGTAG= @HGTAG@
45HGBRANCH= @HGBRANCH@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000046
Georg Brandl0d169ea2010-09-03 22:14:52 +000047GNULD= @GNULD@
Tarek Ziadébe720e02009-05-09 11:55:12 +000048
Neil Schemenauer85515ad2001-01-24 17:11:43 +000049# Shell used by make (some versions default to the login shell, which is bad)
50SHELL= /bin/sh
51
52# Use this to make a link between python$(VERSION) and python in $(BINDIR)
53LN= @LN@
54
55# Portable install script (configure doesn't always guess right)
56INSTALL= @INSTALL@
57INSTALL_PROGRAM=@INSTALL_PROGRAM@
Neil Schemenauer3f5cc202001-04-10 23:03:35 +000058INSTALL_SCRIPT= @INSTALL_SCRIPT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000059INSTALL_DATA= @INSTALL_DATA@
60# Shared libraries must be installed with executable mode on some systems;
61# rather than figuring out exactly which, we always give them executable mode.
62# Also, making them read-only seems to be a good idea...
63INSTALL_SHARED= ${INSTALL} -m 555
64
Matthias Klose93a0ef12012-03-15 18:08:34 +010065MKDIR_P= @MKDIR_P@
66
Neil Schemenauer85515ad2001-01-24 17:11:43 +000067MAKESETUP= $(srcdir)/Modules/makesetup
68
69# Compiler options
70OPT= @OPT@
Skip Montanarodecc6a42003-01-01 20:07:49 +000071BASECFLAGS= @BASECFLAGS@
Trent Nelson9effe692012-10-16 08:41:32 -040072BASECPPFLAGS= @BASECPPFLAGS@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000073CONFIGURE_CFLAGS= @CFLAGS@
Benjamin Petersonacb8c522014-08-09 20:01:49 -070074# CFLAGS_NODIST is used for building the interpreter and stdlib C extensions.
75# Use it when a compiler flag should _not_ be part of the distutils CFLAGS
76# once Python is installed (Issue #21121).
77CONFIGURE_CFLAGS_NODIST=@CFLAGS_NODIST@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000078CONFIGURE_CPPFLAGS= @CPPFLAGS@
79CONFIGURE_LDFLAGS= @LDFLAGS@
80# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
81# command line to append to these values without stomping the pre-set
82# values.
83PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
Benjamin Petersonacb8c522014-08-09 20:01:49 -070084PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST)
Brett Cannon516592f2004-12-07 00:42:59 +000085# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
86# be able to build extension modules using the directories specified in the
87# environment variables
Trent Nelson9effe692012-10-16 08:41:32 -040088PY_CPPFLAGS= $(BASECPPFLAGS) -I. -IInclude -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000089PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS)
Martin v. Löwis48e14d32011-05-09 07:37:45 +020090NO_AS_NEEDED= @NO_AS_NEEDED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000091LDLAST= @LDLAST@
92SGI_ABI= @SGI_ABI@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000093CCSHARED= @CCSHARED@
94LINKFORSHARED= @LINKFORSHARED@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +000095ARFLAGS= @ARFLAGS@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000096# Extra C flags added for building the interpreter object files.
97CFLAGSFORSHARED=@CFLAGSFORSHARED@
98# C flags used for building the interpreter object files
Benjamin Petersonacb8c522014-08-09 20:01:49 -070099PY_CORE_CFLAGS= $(PY_CFLAGS) $(PY_CFLAGS_NODIST) $(PY_CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000100
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000101
102# Machine-dependent subdirectories
103MACHDEP= @MACHDEP@
104
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100105# Multiarch directory (may be empty)
106MULTIARCH= @MULTIARCH@
107
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000108# Install prefix for architecture-independent files
109prefix= @prefix@
110
111# Install prefix for architecture-dependent files
112exec_prefix= @exec_prefix@
113
Thomas Woutersbca54802007-09-10 19:32:14 +0000114# Install prefix for data files
115datarootdir= @datarootdir@
116
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000117# Expanded directories
Antoine Pitrou7a61ba92010-03-21 19:25:26 +0000118BINDIR= @bindir@
119LIBDIR= @libdir@
Martin v. Löwisd429ab62001-08-02 06:20:20 +0000120MANDIR= @mandir@
121INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000122CONFINCLUDEDIR= $(exec_prefix)/include
123SCRIPTDIR= $(prefix)/lib
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000124ABIFLAGS= @ABIFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000125
126# Detailed destination directories
127BINLIBDEST= $(LIBDIR)/python$(VERSION)
128LIBDEST= $(SCRIPTDIR)/python$(VERSION)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000129INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION)
130CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000131
132# Symbols used for using shared libraries
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700133SHLIB_SUFFIX= @SHLIB_SUFFIX@
134EXT_SUFFIX= @EXT_SUFFIX@
Antoine Pitroudbec7802010-10-10 09:37:12 +0000135LDSHARED= @LDSHARED@ $(PY_LDFLAGS)
136BLDSHARED= @BLDSHARED@ $(PY_LDFLAGS)
Tarek Ziadé03d788d2010-04-03 08:46:49 +0000137LDCXXSHARED= @LDCXXSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000138DESTSHARED= $(BINLIBDEST)/lib-dynload
139
140# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000141EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000142BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000143
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000144# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000145UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000146PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
147PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
148PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
149PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000150# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000151# by distutils. The export statement is needed to ensure that the
152# deployment target is active during build.
153MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
154@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
155
Ned Deilyb8f944f2013-11-21 22:42:25 -0800156# Option to install to strip binaries
157STRIPFLAG=-s
158
159# Flags to lipo to produce a 32-bit-only universal executable
160LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@
161
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000162# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
163OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000164
Martin v. Löwis1142de32002-03-29 16:28:31 +0000165# Environment to run shared python without installed libraries
166RUNSHARED= @RUNSHARED@
167
Ned Deily322f5ba2013-11-21 23:01:59 -0800168# ensurepip options
169ENSUREPIP= @ENSUREPIP@
170
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000171# Modes for directories, executables and data files created by the
172# install process. Default to user-only-writable for all file types.
173DIRMODE= 755
174EXEMODE= 755
175FILEMODE= 644
176
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000177# configure script arguments
178CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000179
180
181# Subdirectories with code
182SRCDIRS= @SRCDIRS@
183
184# Other subdirectories
Georg Brandl59b44722010-12-30 22:12:40 +0000185SUBDIRSTOO= Include Lib Misc
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000186
187# Files and directories to be distributed
Matthias Klose0f4c16e2012-03-14 23:10:15 +0100188CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000189DISTFILES= README ChangeLog $(CONFIGFILES)
190DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
191DIST= $(DISTFILES) $(DISTDIRS)
192
193
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000194LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000195LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000196BLDLIBRARY= @BLDLIBRARY@
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000197PY3LIBRARY= @PY3LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000198DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000199LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000200INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000201
202
203LIBS= @LIBS@
204LIBM= @LIBM@
205LIBC= @LIBC@
206SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000207SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000208
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000209THREADOBJ= @THREADOBJ@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000210DLINCLDIR= @DLINCLDIR@
211DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000212MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000213LIBOBJDIR= Python/
214LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000215
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000216PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000217BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000218
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200219PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@
220_PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@
doko@python.orga10e4a92013-01-25 18:45:12 +0100221BUILD_GNU_TYPE= @build@
222HOST_GNU_TYPE= @host@
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200223
Ned Deilyd819b932013-09-06 01:07:05 -0700224# Tcl and Tk config info from --with-tcltk-includes and -libs options
225TCLTK_INCLUDES= @TCLTK_INCLUDES@
226TCLTK_LIBS= @TCLTK_LIBS@
227
Christian Heimes33fe8092008-04-13 13:53:33 +0000228# The task to run while instrument when building the profile-opt target
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000229PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
230#PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
Christian Heimes33fe8092008-04-13 13:53:33 +0000231
Christian Heimes49e52f92013-07-31 00:55:18 +0200232# report files for gcov / lcov coverage report
233COVERAGE_INFO= $(abs_builddir)/coverage.info
234COVERAGE_REPORT=$(abs_builddir)/lcov-report
235COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report"
236
237
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000238# === Definitions added by makesetup ===
239
240
241##########################################################################
242# Modules
243MODULE_OBJS= \
244 Modules/config.o \
245 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000246 Modules/main.o \
247 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000248
249# Used of signalmodule.o is not available
250SIGNAL_OBJS= @SIGNAL_OBJS@
251
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000252IO_H= Modules/_io/_iomodule.h
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000253
254IO_OBJS= \
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000255 Modules/_io/_iomodule.o \
256 Modules/_io/iobase.o \
257 Modules/_io/fileio.o \
258 Modules/_io/bufferedio.o \
259 Modules/_io/textio.o \
260 Modules/_io/bytesio.o \
261 Modules/_io/stringio.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000262
263##########################################################################
264# Grammar
Trent Nelsone60ee292012-08-30 14:52:38 +0000265GRAMMAR_H= Include/graminit.h
266GRAMMAR_C= Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000267GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
268
269
Benjamin Petersond78735d2010-01-01 16:04:23 +0000270LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
271
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000272##########################################################################
273# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000274PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000275
Matthias Klose93a0ef12012-03-15 18:08:34 +0100276PSRCS= \
277 Parser/acceler.c \
278 Parser/grammar1.c \
279 Parser/listnode.c \
280 Parser/node.c \
281 Parser/parser.c \
282 Parser/bitset.c \
283 Parser/metagrammar.c \
284 Parser/firstsets.c \
285 Parser/grammar.c \
286 Parser/pgen.c
287
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000288POBJS= \
289 Parser/acceler.o \
290 Parser/grammar1.o \
291 Parser/listnode.o \
292 Parser/node.o \
293 Parser/parser.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000294 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000295 Parser/metagrammar.o \
296 Parser/firstsets.o \
297 Parser/grammar.o \
298 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000299
Victor Stinner7f2fee32011-04-05 00:39:01 +0200300PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000301
Matthias Klose93a0ef12012-03-15 18:08:34 +0100302PGSRCS= \
303 Objects/obmalloc.c \
304 Python/dynamic_annotations.c \
305 Python/mysnprintf.c \
306 Python/pyctype.c \
307 Parser/tokenizer_pgen.c \
308 Parser/printgrammar.c \
309 Parser/parsetok_pgen.c \
310 Parser/pgenmain.c
311
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000312PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000313 Objects/obmalloc.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000314 Python/dynamic_annotations.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000315 Python/mysnprintf.o \
Benjamin Petersonbf92b7f2010-04-04 23:03:35 +0000316 Python/pyctype.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000317 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000318 Parser/printgrammar.o \
Victor Stinner7f2fee32011-04-05 00:39:01 +0200319 Parser/parsetok_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000320 Parser/pgenmain.o
321
Georg Brandl86def6c2008-01-21 20:36:10 +0000322PARSER_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200323 $(srcdir)/Parser/parser.h \
324 $(srcdir)/Include/parsetok.h \
325 $(srcdir)/Parser/tokenizer.h
Georg Brandl86def6c2008-01-21 20:36:10 +0000326
Matthias Klose93a0ef12012-03-15 18:08:34 +0100327PGENSRCS= $(PSRCS) $(PGSRCS)
328PGENOBJS= $(POBJS) $(PGOBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000330##########################################################################
331# AST
Trent Nelsone60ee292012-08-30 14:52:38 +0000332AST_H_DIR= Include
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000333AST_H= $(AST_H_DIR)/Python-ast.h
Trent Nelsone60ee292012-08-30 14:52:38 +0000334AST_C_DIR= Python
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000335AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000336AST_ASDL= $(srcdir)/Parser/Python.asdl
337
338ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
Georg Brandl2a3e3962014-10-06 14:58:17 +0200339# Note that a build now requires Python to exist before the build starts.
340# Use "hg touch" to fix up screwed up file mtimes in a checkout.
Matthias Klosec4c48422012-10-21 23:05:35 +0200341ASDLGEN= @ASDLGEN@ $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000342
343##########################################################################
344# Python
Antoine Pitroub52ec782009-01-25 16:34:23 +0000345
346OPCODETARGETS_H= \
Trent Nelson9effe692012-10-16 08:41:32 -0400347 Python/opcode_targets.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000348
349OPCODETARGETGEN= \
350 $(srcdir)/Python/makeopcodetargets.py
351
352OPCODETARGETGEN_FILES= \
353 $(OPCODETARGETGEN) $(srcdir)/Lib/opcode.py
354
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000355PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000356 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000357 Python/Python-ast.o \
358 Python/asdl.o \
359 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000360 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000361 Python/ceval.o \
362 Python/compile.o \
363 Python/codecs.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000364 Python/dynamic_annotations.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000365 Python/errors.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000366 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000367 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000368 Python/getargs.o \
369 Python/getcompiler.o \
370 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000371 Python/getplatform.o \
372 Python/getversion.o \
373 Python/graminit.o \
374 Python/import.o \
375 Python/importdl.o \
376 Python/marshal.o \
377 Python/modsupport.o \
378 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000379 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000380 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000381 Python/pyarena.o \
Eric Smith6dc46f52009-04-27 20:39:49 +0000382 Python/pyctype.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000383 Python/pyfpe.o \
Christian Heimes985ecdc2013-11-20 11:46:18 +0100384 Python/pyhash.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000385 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000386 Python/pystate.o \
387 Python/pythonrun.o \
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000388 Python/pytime.o \
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100389 Python/random.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000390 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000391 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000392 Python/sysmodule.o \
393 Python/traceback.o \
394 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000395 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000396 Python/pystrtod.o \
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000397 Python/dtoa.o \
Eric Smith8c663262007-08-25 02:26:07 +0000398 Python/formatter_unicode.o \
Victor Stinner4e314432010-10-07 21:45:39 +0000399 Python/fileutils.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000400 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000401 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000402 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000403 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000404
405
406##########################################################################
407# Objects
408OBJECT_OBJS= \
409 Objects/abstract.o \
Antoine Pitroueeb7eea2011-10-06 18:57:27 +0200410 Objects/accu.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000411 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000412 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000413 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000414 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000415 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000416 Objects/classobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000417 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000418 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000419 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000420 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000421 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000422 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000423 Objects/fileobject.o \
424 Objects/floatobject.o \
425 Objects/frameobject.o \
426 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000427 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000428 Objects/listobject.o \
429 Objects/longobject.o \
430 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000431 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000432 Objects/methodobject.o \
433 Objects/moduleobject.o \
Barry Warsaw409da152012-06-03 16:18:47 -0400434 Objects/namespaceobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000435 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000436 Objects/obmalloc.o \
Benjamin Petersonb173f782009-05-05 22:31:58 +0000437 Objects/capsule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000438 Objects/rangeobject.o \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200439 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000440 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000441 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000442 Objects/tupleobject.o \
443 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000444 Objects/unicodeobject.o \
445 Objects/unicodectype.o \
446 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000447
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000448##########################################################################
449# objects that get linked into the Python library
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200450LIBRARY_OBJS_OMIT_FROZEN= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000451 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000452 $(PARSER_OBJS) \
453 $(OBJECT_OBJS) \
454 $(PYTHON_OBJS) \
455 $(MODULE_OBJS) \
456 $(SIGNAL_OBJS) \
457 $(MODOBJS)
458
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200459LIBRARY_OBJS= \
460 $(LIBRARY_OBJS_OMIT_FROZEN) \
461 Python/frozen.o
462
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000463#########################################################################
464# Rules
465
466# Default target
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000467all: build_all
doko@python.org87421192013-01-26 11:39:31 +0100468build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks Modules/_testembed python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000469
Christian Heimes33fe8092008-04-13 13:53:33 +0000470# Compile a binary with gcc profile guided optimization.
471profile-opt:
472 @echo "Building with support for profile generation:"
473 $(MAKE) clean
474 $(MAKE) build_all_generate_profile
475 @echo "Running benchmark to generate profile data:"
476 $(MAKE) profile-removal
477 $(MAKE) run_profile_task
478 @echo "Rebuilding with profile guided optimizations:"
479 $(MAKE) clean
480 $(MAKE) build_all_use_profile
481
482build_all_generate_profile:
Gregory P. Smith2f90aa62015-02-04 02:11:56 -0800483 $(MAKE) all CFLAGS_NODIST="$(CFLAGS) -fprofile-generate" LDFLAGS="-fprofile-generate" LIBS="$(LIBS) -lgcov"
Christian Heimes33fe8092008-04-13 13:53:33 +0000484
485run_profile_task:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200486 : # FIXME: can't run for a cross build
Antoine Pitrou2d9db1d2012-06-17 00:27:30 +0200487 $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK)
Christian Heimes33fe8092008-04-13 13:53:33 +0000488
489build_all_use_profile:
Gregory P. Smith2f90aa62015-02-04 02:11:56 -0800490 $(MAKE) all CFLAGS_NODIST="$(CFLAGS) -fprofile-use -fprofile-correction"
Christian Heimes33fe8092008-04-13 13:53:33 +0000491
Christian Heimes49e52f92013-07-31 00:55:18 +0200492# Compile and run with gcov
493.PHONY=coverage coverage-lcov coverage-report
Georg Brandlb533e262008-05-25 18:19:30 +0000494coverage:
495 @echo "Building with support for coverage checking:"
Christian Heimes49e52f92013-07-31 00:55:18 +0200496 $(MAKE) clean profile-removal
Georg Brandlb533e262008-05-25 18:19:30 +0000497 $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
498
Christian Heimes49e52f92013-07-31 00:55:18 +0200499coverage-lcov:
500 @echo "Creating Coverage HTML report with LCOV:"
501 @rm -f $(COVERAGE_INFO)
502 @rm -rf $(COVERAGE_REPORT)
503 @lcov --capture --directory $(abs_builddir) \
504 --base-directory $(realpath $(abs_builddir)) \
505 --path $(realpath $(abs_srcdir)) \
506 --output-file $(COVERAGE_INFO)
507 : # remove 3rd party modules and system headers
508 @lcov --remove $(COVERAGE_INFO) \
509 '*/Modules/_ctypes/libffi*/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200510 '*/Modules/_decimal/libmpdec/*' \
511 '*/Modules/expat/*' \
512 '*/Modules/zlib/*' \
513 '*/Include/*' \
514 '/usr/include/*' \
515 '/usr/local/include/*' \
516 --output-file $(COVERAGE_INFO)
517 @genhtml $(COVERAGE_INFO) --output-directory $(COVERAGE_REPORT) \
518 $(COVERAGE_REPORT_OPTIONS)
519 @echo
520 @echo "lcov report at $(COVERAGE_REPORT)/index.html"
521 @echo
522
523coverage-report:
524 : # force rebuilding of parser and importlib
525 @touch $(GRAMMAR_INPUT)
526 @touch $(srcdir)/Lib/importlib/_bootstrap.py
527 : # build with coverage info
528 $(MAKE) coverage
529 : # run tests, ignore failures
530 $(TESTRUNNER) $(TESTOPTS) || true
531 : # build lcov report
532 $(MAKE) coverage-lcov
Georg Brandlb533e262008-05-25 18:19:30 +0000533
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800534# Run "Argument Clinic" over all source files
535# (depends on python having already been built)
536.PHONY=clinic
537clinic: $(BUILDPYTHON)
538 $(RUNSHARED) $(PYTHON_FOR_BUILD) ./Tools/clinic/clinic.py --make
539
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000540# Build the interpreter
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000541$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
Georg Brandl9411eeb2010-08-01 08:46:24 +0000542 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000543
Trent Nelsonc101bf32012-10-16 08:13:12 -0400544platform: $(BUILDPYTHON) pybuilddir.txt
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200545 $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000546
Trent Nelsonc101bf32012-10-16 08:13:12 -0400547# Create build directory and generate the sysconfig build-time data there.
548# pybuilddir.txt contains the name of the build dir and is used for
549# sys.path fixup -- see Modules/getpath.c.
Ned Deilyfcbc2462014-08-22 13:32:49 -0700550# Since this step runs before shared modules are built, try to avoid bootstrap
Ned Deilyec7aaf52014-08-23 18:10:16 -0700551# problems by creating a dummy pybuilddir.txt just to allow interpreter
Ned Deilyfcbc2462014-08-22 13:32:49 -0700552# initialization to succeed. It will be overwritten by generate-posix-vars
553# or removed in case of failure.
Trent Nelsonc101bf32012-10-16 08:13:12 -0400554pybuilddir.txt: $(BUILDPYTHON)
Ned Deilyfcbc2462014-08-22 13:32:49 -0700555 @echo "none" > ./pybuilddir.txt
556 $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\
557 if test $$? -ne 0 ; then \
558 echo "generate-posix-vars failed" ; \
559 rm -f ./pybuilddir.txt ; \
560 exit 1 ; \
561 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000562
563# Build the shared modules
Christian Heimes17ad40e2012-12-02 07:37:35 +0100564# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
Christian Heimes5f381212012-09-07 02:24:58 +0200565# -s, --silent or --quiet is always the first char.
Christian Heimes17ad40e2012-12-02 07:37:35 +0100566# Under BSD make, MAKEFLAGS might be " -s -v x=y".
Trent Nelsonc101bf32012-10-16 08:13:12 -0400567sharedmods: $(BUILDPYTHON) pybuilddir.txt
Christian Heimes5f381212012-09-07 02:24:58 +0200568 @case "$$MAKEFLAGS" in \
Christian Heimes17ad40e2012-12-02 07:37:35 +0100569 *\ -s*|s*) quiet="-q";; \
Christian Heimes5f381212012-09-07 02:24:58 +0200570 *) quiet="";; \
571 esac; \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200572 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
Ned Deilyd819b932013-09-06 01:07:05 -0700573 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
Christian Heimes4e251402012-09-07 02:26:26 +0200574 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000575
576# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000577# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000578$(LIBRARY): $(LIBRARY_OBJS)
579 -rm -f $@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000580 $(AR) $(ARFLAGS) $@ Modules/getbuildinfo.o
581 $(AR) $(ARFLAGS) $@ $(PARSER_OBJS)
582 $(AR) $(ARFLAGS) $@ $(OBJECT_OBJS)
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200583 $(AR) $(ARFLAGS) $@ $(PYTHON_OBJS) Python/frozen.o
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000584 $(AR) $(ARFLAGS) $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
585 $(AR) $(ARFLAGS) $@ $(MODOBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000586 $(RANLIB) $@
587
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000588libpython$(LDVERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000589 if test $(INSTSONAME) != $(LDLIBRARY); then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000590 $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000591 $(LN) -f $(INSTSONAME) $@; \
Georg Brandlb1441c72009-01-03 22:33:39 +0000592 else \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000593 $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000594 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000595
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000596libpython3.so: libpython$(LDVERSION).so
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200597 $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000598
Georg Brandl6e8d17c2011-02-19 08:47:14 +0000599libpython$(LDVERSION).dylib: $(LIBRARY_OBJS)
600 $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Victor Stinner4e314432010-10-07 21:45:39 +0000601
Georg Brandlb1441c72009-01-03 22:33:39 +0000602
Martin v. Löwis1142de32002-03-29 16:28:31 +0000603libpython$(VERSION).sl: $(LIBRARY_OBJS)
Antoine Pitroudbec7802010-10-10 09:37:12 +0000604 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000605
Benjamin Peterson6a6666a2010-04-11 21:49:28 +0000606# Copy up the gdb python hooks into a position where they can be automatically
607# loaded by gdb during Lib/test/test_gdb.py
608#
609# Distributors are likely to want to install this somewhere else e.g. relative
610# to the stripped DWARF data for the shared library.
611gdbhooks: $(BUILDPYTHON)-gdb.py
612
613SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
614$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
615 $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
616
Jack Jansenea0c3822002-08-01 21:57:49 +0000617# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
618# minimal framework (not including the Lib directory and such) in the current
619# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000620RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000621$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
622 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000623 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000624 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Ronald Oussoren42d0f682011-03-14 11:04:34 -0400625 $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \
Ronald Oussoren25032492011-03-14 10:11:59 -0400626 -all_load $(LIBRARY) -Wl,-single_module \
627 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
628 -compatibility_version $(VERSION) \
629 -current_version $(VERSION) \
Victor Stinnerdfb866d2011-09-29 01:12:24 +0200630 -framework CoreFoundation $(LIBS);
Jack Jansenea0c3822002-08-01 21:57:49 +0000631 $(INSTALL) -d -m $(DIRMODE) \
632 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
633 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
634 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000635 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000636 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000637 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000638
Jason Tishler30765592003-09-04 11:04:06 +0000639# This rule builds the Cygwin Python DLL and import library if configured
640# for a shared core library; otherwise, this rule is a noop.
641$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
642 if test -n "$(DLLLIBRARY)"; then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000643 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000644 $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \
Jason Tishler30765592003-09-04 11:04:06 +0000645 else true; \
646 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000647
648
649oldsharedmods: $(SHAREDMODS)
650
651
652Makefile Modules/config.c: Makefile.pre \
653 $(srcdir)/Modules/config.c.in \
654 $(MAKESETUP) \
655 Modules/Setup.config \
656 Modules/Setup \
657 Modules/Setup.local
658 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
659 -s Modules \
660 Modules/Setup.config \
661 Modules/Setup.local \
662 Modules/Setup
663 @mv config.c Modules
664 @echo "The Makefile was updated, you may need to re-run make."
665
666
667Modules/Setup: $(srcdir)/Modules/Setup.dist
668 @if test -f Modules/Setup; then \
669 echo "-----------------------------------------------"; \
670 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
671 echo "check to make sure you have all the updates you"; \
672 echo "need in your Modules/Setup file."; \
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000673 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000674 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000675 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000676
Antoine Pitrou8e605772011-04-25 21:21:07 +0200677Modules/_testembed: Modules/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
678 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200679
Brett Cannonfd074152012-04-14 14:10:13 -0400680############################################################################
681# Importlib
Antoine Pitrou8e605772011-04-25 21:21:07 +0200682
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200683Modules/_freeze_importlib: Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN)
684 $(LINKCC) $(PY_LDFLAGS) -o $@ Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
685
686Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Modules/_freeze_importlib.c
687 $(MAKE) Modules/_freeze_importlib
688 ./Modules/_freeze_importlib \
689 $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h
690
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200691
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000692############################################################################
693# Special rules for object files
694
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000695Modules/getbuildinfo.o: $(PARSER_OBJS) \
696 $(OBJECT_OBJS) \
697 $(PYTHON_OBJS) \
698 $(MODULE_OBJS) \
699 $(SIGNAL_OBJS) \
700 $(MODOBJS) \
701 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl13039c82011-03-06 10:13:00 +0100702 $(CC) -c $(PY_CORE_CFLAGS) \
Georg Brandl1ca2e792011-03-05 20:51:24 +0100703 -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \
704 -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \
705 -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \
706 -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000707
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000708Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000709 $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000710 -DPREFIX='"$(prefix)"' \
711 -DEXEC_PREFIX='"$(exec_prefix)"' \
712 -DVERSION='"$(VERSION)"' \
713 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000714 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000715
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000716Modules/python.o: $(srcdir)/Modules/python.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000717 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000718
Victor Stinner69f55cc2011-10-12 22:09:40 +0200719Modules/_testembed.o: $(srcdir)/Modules/_testembed.c
720 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/_testembed.c
721
Serhiy Storchaka8444ebb2013-10-26 11:18:42 +0300722Modules/_sre.o: $(srcdir)/Modules/_sre.c $(srcdir)/Modules/sre.h $(srcdir)/Modules/sre_constants.h $(srcdir)/Modules/sre_lib.h
723
Serhiy Storchaka7cf55992013-02-10 21:56:49 +0200724Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h
725
726Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h
727
728Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
729
730Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h
731
Barry Warsaw35f3a2c2010-09-03 18:30:30 +0000732Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile
733 $(CC) -c $(PY_CORE_CFLAGS) \
734 -DSOABI='"$(SOABI)"' \
735 -o $@ $(srcdir)/Python/dynload_shlib.c
736
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700737Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile
738 $(CC) -c $(PY_CORE_CFLAGS) \
739 -DSHLIB_EXT='"$(EXT_SUFFIX)"' \
740 -o $@ $(srcdir)/Python/dynload_hpux.c
741
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000742Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile
743 $(CC) -c $(PY_CORE_CFLAGS) \
744 -DABIFLAGS='"$(ABIFLAGS)"' \
745 -o $@ $(srcdir)/Python/sysmodule.c
746
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000747$(IO_OBJS): $(IO_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000748
Matthias Klose93a0ef12012-03-15 18:08:34 +0100749$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS)
750 @$(MKDIR_P) Include
751 $(MAKE) $(PGEN)
Victor Stinnere1c0c7c2010-12-28 23:14:17 +0000752 $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Matthias Klose93a0ef12012-03-15 18:08:34 +0100753$(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS)
754 $(MAKE) $(GRAMMAR_H)
755 touch $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000756
757$(PGEN): $(PGENOBJS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000758 $(CC) $(OPT) $(PY_LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000759
760Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000761 $(srcdir)/Include/token.h \
762 $(srcdir)/Include/grammar.h
763Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
764
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000765Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
Victor Stinner7f2fee32011-04-05 00:39:01 +0200766Parser/parsetok_pgen.o: $(srcdir)/Parser/parsetok.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200767Parser/printgrammar.o: $(srcdir)/Parser/printgrammar.c
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000768
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000769Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
770
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000771$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
Trent Nelsone60ee292012-08-30 14:52:38 +0000772 $(MKDIR_P) $(AST_H_DIR)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000773 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000774
Benjamin Peterson1f918c12012-01-13 08:45:55 -0500775$(AST_C): $(AST_H) $(AST_ASDL) $(ASDLGEN_FILES)
Trent Nelsone60ee292012-08-30 14:52:38 +0000776 $(MKDIR_P) $(AST_C_DIR)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000777 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000778
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000779Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000780
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000781Python/getplatform.o: $(srcdir)/Python/getplatform.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000782 $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000783
784Python/importdl.o: $(srcdir)/Python/importdl.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000785 $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000786
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000787Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
788 $(srcdir)/Objects/unicodetype_db.h
789
Christian Heimesda996832008-03-22 18:37:22 +0000790BYTESTR_DEPS = \
Christian Heimesda996832008-03-22 18:37:22 +0000791 $(srcdir)/Objects/stringlib/count.h \
792 $(srcdir)/Objects/stringlib/ctype.h \
Christian Heimesda996832008-03-22 18:37:22 +0000793 $(srcdir)/Objects/stringlib/fastsearch.h \
794 $(srcdir)/Objects/stringlib/find.h \
Antoine Pitrou74375fc2012-10-18 21:31:22 +0200795 $(srcdir)/Objects/stringlib/join.h \
Christian Heimesda996832008-03-22 18:37:22 +0000796 $(srcdir)/Objects/stringlib/partition.h \
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000797 $(srcdir)/Objects/stringlib/split.h \
Christian Heimesda996832008-03-22 18:37:22 +0000798 $(srcdir)/Objects/stringlib/stringdefs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200799 $(srcdir)/Objects/stringlib/transmogrify.h
Antoine Pitrou3e623242011-11-13 19:37:58 +0100800
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200801UNICODE_DEPS = \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100802 $(srcdir)/Objects/stringlib/asciilib.h \
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100803 $(srcdir)/Objects/stringlib/codecs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200804 $(srcdir)/Objects/stringlib/count.h \
805 $(srcdir)/Objects/stringlib/fastsearch.h \
806 $(srcdir)/Objects/stringlib/find.h \
807 $(srcdir)/Objects/stringlib/find_max_char.h \
808 $(srcdir)/Objects/stringlib/localeutil.h \
809 $(srcdir)/Objects/stringlib/partition.h \
Serhiy Storchakae2cef882013-04-13 22:45:04 +0300810 $(srcdir)/Objects/stringlib/replace.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200811 $(srcdir)/Objects/stringlib/split.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100812 $(srcdir)/Objects/stringlib/ucs1lib.h \
813 $(srcdir)/Objects/stringlib/ucs2lib.h \
814 $(srcdir)/Objects/stringlib/ucs4lib.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200815 $(srcdir)/Objects/stringlib/undef.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100816 $(srcdir)/Objects/stringlib/unicode_format.h \
817 $(srcdir)/Objects/stringlib/unicodedefs.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000818
Benjamin Peterson9ae32202009-01-13 21:53:28 +0000819Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000820
Victor Stinner4e314432010-10-07 21:45:39 +0000821Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000822
Antoine Pitrou3e623242011-11-13 19:37:58 +0100823Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000824
Martin v. Löwis6fb44722011-09-25 17:36:11 +0200825Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h
826Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
827
Antoine Pitroub52ec782009-01-25 16:34:23 +0000828$(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
829 $(OPCODETARGETGEN) $(OPCODETARGETS_H)
830
Victor Stinner69f55cc2011-10-12 22:09:40 +0200831Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000832
Trent Nelson4d4ec652012-10-16 08:51:24 -0400833Python/frozen.o: Python/importlib.h
Antoine Pitroua4932352012-04-16 18:29:28 +0200834
Trent Nelson9effe692012-10-16 08:41:32 -0400835Objects/typeobject.o: Objects/typeslots.inc
836Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py
837 $(PYTHON) $(srcdir)/Objects/typeslots.py < $(srcdir)/Include/typeslots.h > Objects/typeslots.inc
Eric Smith8c663262007-08-25 02:26:07 +0000838
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000839############################################################################
840# Header files
841
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000842PYTHON_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200843 $(srcdir)/Include/Python.h \
844 $(srcdir)/Include/abstract.h \
845 $(srcdir)/Include/accu.h \
846 $(srcdir)/Include/asdl.h \
847 $(srcdir)/Include/ast.h \
848 $(srcdir)/Include/bltinmodule.h \
849 $(srcdir)/Include/bitset.h \
850 $(srcdir)/Include/boolobject.h \
851 $(srcdir)/Include/bytes_methods.h \
852 $(srcdir)/Include/bytearrayobject.h \
853 $(srcdir)/Include/bytesobject.h \
854 $(srcdir)/Include/cellobject.h \
855 $(srcdir)/Include/ceval.h \
856 $(srcdir)/Include/classobject.h \
857 $(srcdir)/Include/code.h \
858 $(srcdir)/Include/codecs.h \
859 $(srcdir)/Include/compile.h \
860 $(srcdir)/Include/complexobject.h \
861 $(srcdir)/Include/descrobject.h \
862 $(srcdir)/Include/dictobject.h \
863 $(srcdir)/Include/dtoa.h \
864 $(srcdir)/Include/dynamic_annotations.h \
865 $(srcdir)/Include/enumobject.h \
866 $(srcdir)/Include/errcode.h \
867 $(srcdir)/Include/eval.h \
868 $(srcdir)/Include/fileobject.h \
869 $(srcdir)/Include/fileutils.h \
870 $(srcdir)/Include/floatobject.h \
871 $(srcdir)/Include/frameobject.h \
872 $(srcdir)/Include/funcobject.h \
873 $(srcdir)/Include/genobject.h \
874 $(srcdir)/Include/import.h \
875 $(srcdir)/Include/intrcheck.h \
876 $(srcdir)/Include/iterobject.h \
877 $(srcdir)/Include/listobject.h \
878 $(srcdir)/Include/longintrepr.h \
879 $(srcdir)/Include/longobject.h \
880 $(srcdir)/Include/marshal.h \
881 $(srcdir)/Include/memoryobject.h \
882 $(srcdir)/Include/metagrammar.h \
883 $(srcdir)/Include/methodobject.h \
884 $(srcdir)/Include/modsupport.h \
885 $(srcdir)/Include/moduleobject.h \
Barry Warsaw409da152012-06-03 16:18:47 -0400886 $(srcdir)/Include/namespaceobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200887 $(srcdir)/Include/node.h \
888 $(srcdir)/Include/object.h \
889 $(srcdir)/Include/objimpl.h \
890 $(srcdir)/Include/opcode.h \
891 $(srcdir)/Include/osdefs.h \
892 $(srcdir)/Include/patchlevel.h \
893 $(srcdir)/Include/pgen.h \
894 $(srcdir)/Include/pgenheaders.h \
895 $(srcdir)/Include/pyarena.h \
896 $(srcdir)/Include/pyatomic.h \
897 $(srcdir)/Include/pycapsule.h \
898 $(srcdir)/Include/pyctype.h \
899 $(srcdir)/Include/pydebug.h \
900 $(srcdir)/Include/pyerrors.h \
901 $(srcdir)/Include/pyfpe.h \
Christian Heimes985ecdc2013-11-20 11:46:18 +0100902 $(srcdir)/Include/pyhash.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200903 $(srcdir)/Include/pymath.h \
904 $(srcdir)/Include/pygetopt.h \
905 $(srcdir)/Include/pymacro.h \
906 $(srcdir)/Include/pymem.h \
907 $(srcdir)/Include/pyport.h \
908 $(srcdir)/Include/pystate.h \
909 $(srcdir)/Include/pystrcmp.h \
910 $(srcdir)/Include/pystrtod.h \
911 $(srcdir)/Include/pythonrun.h \
912 $(srcdir)/Include/pythread.h \
913 $(srcdir)/Include/pytime.h \
914 $(srcdir)/Include/rangeobject.h \
915 $(srcdir)/Include/setobject.h \
916 $(srcdir)/Include/sliceobject.h \
917 $(srcdir)/Include/structmember.h \
918 $(srcdir)/Include/structseq.h \
919 $(srcdir)/Include/symtable.h \
920 $(srcdir)/Include/sysmodule.h \
921 $(srcdir)/Include/traceback.h \
922 $(srcdir)/Include/tupleobject.h \
923 $(srcdir)/Include/ucnhash.h \
924 $(srcdir)/Include/unicodeobject.h \
925 $(srcdir)/Include/warnings.h \
926 $(srcdir)/Include/weakrefobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000927 pyconfig.h \
Charles-François Natali46c686f2013-12-15 19:09:00 +0100928 $(PARSER_HEADERS) \
929 $(AST_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000930
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000931$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000932
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000933
934######################################################################
935
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200936TESTOPTS= $(EXTRATESTOPTS)
937TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS)
938TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py
939TESTTIMEOUT= 3600
940
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200941# Run a basic set of regression tests.
942# This excludes some tests that are particularly resource-intensive.
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000943test: all platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200944 $(TESTRUNNER) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000945
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200946# Run the full test suite twice - once without .pyc files, and once with.
947# In the past, we've had problems where bugs in the marshalling or
948# elsewhere caused bytecode read from .pyc files to behave differently
949# than bytecode generated directly from a .py source file. Sometimes
950# the bytecode read from a .pyc file had the bug, sometimes the directly
951# generated bytecode. This is sometimes a very shy bug needing a lot of
952# sample data.
Skip Montanaro446ad712003-05-06 15:30:20 +0000953testall: all platform
954 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200955 $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +0000956 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200957 -$(TESTRUNNER) -u all $(TESTOPTS)
958 $(TESTRUNNER) -u all $(TESTOPTS)
Skip Montanaro446ad712003-05-06 15:30:20 +0000959
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200960# Run the test suite for both architectures in a Universal build on OSX.
961# Must be run on an Intel box.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000962testuniversal: all platform
963 if [ `arch` != 'i386' ];then \
964 echo "This can only be used on OSX/i386" ;\
965 exit 1 ;\
966 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200967 $(TESTRUNNER) -u all $(TESTOPTS)
968 $(RUNSHARED) /usr/libexec/oah/translate \
969 ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000970
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200971# Like testall, but with only one pass and without multiple processes.
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200972# Run an optional script to include information about the build environment.
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000973buildbottest: all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +0000974 -@if which pybuildbot.identify >/dev/null 2>&1; then \
975 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
976 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200977 $(TESTRUNNER) -j 1 -u all -W --timeout=$(TESTTIMEOUT) $(TESTOPTS)
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000978
Jeremy Hyltonfdd6dee2009-03-27 21:24:45 +0000979QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
980 test_multibytecodec test_urllib2_localnet test_itertools \
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100981 test_multiprocessing_fork test_multiprocessing_spawn \
982 test_multiprocessing_forkserver \
983 test_mailbox test_socket test_poll \
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200984 test_select test_zipfile test_concurrent_futures
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000985quicktest: all platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200986 $(TESTRUNNER) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000987
Barry Warsaw42119252001-03-03 04:14:21 +0000988
Ned Deily322f5ba2013-11-21 23:01:59 -0800989install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@
990 if test "x$(ENSUREPIP)" != "xno" ; then \
991 case $(ENSUREPIP) in \
992 upgrade) ensurepip="--upgrade" ;; \
993 install|*) ensurepip="" ;; \
994 esac; \
995 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
996 $$ensurepip --root=$(DESTDIR)/ ; \
997 fi
Guido van Rossumdc21db32008-04-07 18:37:41 +0000998
Ned Deily322f5ba2013-11-21 23:01:59 -0800999altinstall: commoninstall
1000 if test "x$(ENSUREPIP)" != "xno" ; then \
1001 case $(ENSUREPIP) in \
1002 upgrade) ensurepip="--altinstall --upgrade" ;; \
1003 install|*) ensurepip="--altinstall" ;; \
1004 esac; \
1005 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1006 $$ensurepip --root=$(DESTDIR)/ ; \
1007 fi
1008
1009commoninstall: @FRAMEWORKALTINSTALLFIRST@ \
1010 altbininstall libinstall inclinstall libainstall \
1011 sharedinstall oldsharedinstall altmaninstall \
1012 @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001013
1014# Install shared libraries enabled by Setup
1015DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
1016
1017oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
1018 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +00001019 if test $$i != X; then \
1020 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001021 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +00001022 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001023 done
1024
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001025$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001026 @for i in $(DESTDIRS); \
1027 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001028 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001029 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001030 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001031 else true; \
1032 fi; \
1033 done
1034
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001035# Install the interpreter with $(VERSION) affixed
1036# This goes into $(exec_prefix)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001037altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
Martin v. Löwisd8a20d22002-05-08 08:59:59 +00001038 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001039 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001040 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001041 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001042 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001043 else true; \
1044 fi; \
1045 done
Ned Deilyb8f944f2013-11-21 22:42:25 -08001046 if test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
1047 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1048 else \
1049 $(INSTALL_PROGRAM) $(STRIPFLAG) Mac/pythonw $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1050 fi
Barry Warsaw771d33e2010-12-13 18:04:23 +00001051 -if test "$(VERSION)" != "$(LDVERSION)"; then \
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001052 if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001053 then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1054 fi; \
1055 (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \
Barry Warsawad6f8772010-12-11 21:32:01 +00001056 fi
Ned Deily78094ac2013-07-08 14:33:03 -07001057 if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
Georg Brandl1f01deb2009-01-03 22:47:39 +00001058 if test -n "$(DLLLIBRARY)" ; then \
1059 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001060 else \
Georg Brandlb1441c72009-01-03 22:33:39 +00001061 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
1062 if test $(LDLIBRARY) != $(INSTSONAME); then \
1063 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
Martin v. Löwise3be8602003-11-18 19:54:20 +00001064 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001065 fi; \
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001066 if test -n "$(PY3LIBRARY)"; then \
1067 $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \
1068 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001069 else true; \
1070 fi
Ned Deilyb8f944f2013-11-21 22:42:25 -08001071 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1072 rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
1073 lipo $(LIPO_32BIT_FLAGS) \
1074 -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
1075 $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1076 fi
Benjamin Peterson932073a2009-05-23 16:14:33 +00001077
1078bininstall: altbininstall
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001079 -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
1080 then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001081 else true; \
1082 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001083 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
Barry Warsaw771d33e2010-12-13 18:04:23 +00001084 -if test "$(VERSION)" != "$(LDVERSION)"; then \
1085 rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
1086 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
1087 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
1088 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
1089 fi
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001090 -rm -f $(DESTDIR)$(BINDIR)/python3-config
1091 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
Antoine Pitrou20327222009-05-24 20:39:11 +00001092 -rm -f $(DESTDIR)$(LIBPC)/python3.pc
1093 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc)
Georg Brandlff52f762010-12-28 09:51:43 +00001094 -rm -f $(DESTDIR)$(BINDIR)/idle3
1095 (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3)
1096 -rm -f $(DESTDIR)$(BINDIR)/pydoc3
1097 (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3)
1098 -rm -f $(DESTDIR)$(BINDIR)/2to3
1099 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3)
Vinay Sajip7ded1f02012-05-26 03:45:29 +01001100 -rm -f $(DESTDIR)$(BINDIR)/pyvenv
1101 (cd $(DESTDIR)$(BINDIR); $(LN) -s pyvenv-$(VERSION) pyvenv)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001102 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1103 rm -f $(DESTDIR)$(BINDIR)/python3-32$(EXE); \
1104 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-32$(EXE) python3-32$(EXE)) \
1105 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001106
Ned Deilya48b61f2013-02-08 22:53:51 -08001107# Install the versioned manual page
1108altmaninstall:
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001109 @for i in $(MANDIR) $(MANDIR)/man1; \
1110 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001111 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001112 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001113 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001114 else true; \
1115 fi; \
1116 done
1117 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +00001118 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001119
Ned Deilya48b61f2013-02-08 22:53:51 -08001120# Install the unversioned manual page
1121maninstall: altmaninstall
1122 -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1
1123 (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1)
1124
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001125# Install the library
doko@ubuntu.com1345d202015-04-13 21:59:57 +02001126PLATDIR= @PLATDIR@
doko@ubuntu.comca40e432015-04-30 13:44:18 +02001127MACHDEPS= $(PLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001128XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Benjamin Petersoncb6dbe52010-03-18 21:36:06 +00001129LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
Victor Stinner5b326592011-05-25 01:15:59 +02001130 tkinter/test/test_ttk site-packages test \
Serhiy Storchakac3a9b352013-10-14 21:18:50 +03001131 test/audiodata \
Ned Deilye2d51902011-07-04 19:06:20 -07001132 test/capath test/data \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001133 test/cjkencodings test/decimaltestdata test/xmltestdata \
Ned Deily6bb21c42014-02-02 13:59:49 -08001134 test/imghdrdata \
Ned Deilycdc75d92013-07-30 14:30:15 -07001135 test/subprocessdata test/sndhdrdata test/support \
Alexander Belopolskye8f58322010-10-15 16:28:20 +00001136 test/tracedmodules test/encoded_modules \
Ned Deily490e53b2014-04-08 18:54:49 -07001137 test/test_importlib/namespace_pkgs \
1138 test/test_importlib/namespace_pkgs/both_portions \
1139 test/test_importlib/namespace_pkgs/both_portions/foo \
1140 test/test_importlib/namespace_pkgs/not_a_namespace_pkg \
1141 test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo \
1142 test/test_importlib/namespace_pkgs/portion1 \
1143 test/test_importlib/namespace_pkgs/portion1/foo \
1144 test/test_importlib/namespace_pkgs/portion2 \
1145 test/test_importlib/namespace_pkgs/portion2/foo \
1146 test/test_importlib/namespace_pkgs/project1 \
1147 test/test_importlib/namespace_pkgs/project1/parent \
1148 test/test_importlib/namespace_pkgs/project1/parent/child \
1149 test/test_importlib/namespace_pkgs/project2 \
1150 test/test_importlib/namespace_pkgs/project2/parent \
1151 test/test_importlib/namespace_pkgs/project2/parent/child \
1152 test/test_importlib/namespace_pkgs/project3 \
1153 test/test_importlib/namespace_pkgs/project3/parent \
1154 test/test_importlib/namespace_pkgs/project3/parent/child \
1155 test/test_importlib/namespace_pkgs/module_and_namespace_package \
1156 test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test \
Ned Deily3c97e462013-10-17 18:08:00 -07001157 asyncio \
1158 test/test_asyncio \
Georg Brandl53291232011-02-23 07:30:12 +00001159 collections concurrent concurrent/futures encodings \
R David Murray92cafb82011-06-17 11:41:49 -04001160 email email/mime test/test_email test/test_email/data \
Nick Coghland0cf0632013-11-11 22:11:55 +10001161 ensurepip ensurepip/_bundled \
Ezio Melotti66f2ea02013-08-08 15:03:45 +03001162 html json test/test_json http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001163 sqlite3 sqlite3/test \
Georg Brandl1158a332009-06-04 09:30:30 +00001164 logging csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +00001165 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001166 lib2to3/tests/data lib2to3/tests/data/fixers \
1167 lib2to3/tests/data/fixers/myfixes \
Ned Deilyc3909e52013-11-03 20:08:53 -08001168 ctypes ctypes/test ctypes/macholib \
1169 idlelib idlelib/Icons idlelib/idle_test \
Fred Drakee612c8e2005-01-19 06:24:58 +00001170 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Ned Deilycc409f42012-07-20 13:24:58 -07001171 importlib test/test_importlib test/test_importlib/builtin \
1172 test/test_importlib/extension test/test_importlib/frozen \
1173 test/test_importlib/import_ test/test_importlib/source \
Alexander Belopolskyea13d9d2010-11-01 17:39:37 +00001174 turtledemo \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +00001175 multiprocessing multiprocessing/dummy \
Ned Deilye8b416e2012-03-22 13:34:11 -07001176 unittest unittest/test unittest/test/testmock \
Vinay Sajip7ded1f02012-05-26 03:45:29 +01001177 venv venv/scripts venv/scripts/posix \
Ronald Oussoren69026bb2009-05-19 19:07:43 +00001178 curses pydoc_data $(MACHDEPS)
Ned Deily58f27b22011-06-28 00:42:50 -07001179libinstall: build_all $(srcdir)/Lib/$(PLATDIR) $(srcdir)/Modules/xxmodule.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001180 @for i in $(SCRIPTDIR) $(LIBDEST); \
1181 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001182 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001183 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001184 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001185 else true; \
1186 fi; \
1187 done
1188 @for d in $(LIBSUBDIRS); \
1189 do \
1190 a=$(srcdir)/Lib/$$d; \
1191 if test ! -d $$a; then continue; else true; fi; \
1192 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001193 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001194 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001195 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001196 else true; \
1197 fi; \
1198 done
Trent Nelsonc101bf32012-10-16 08:13:12 -04001199 @for i in $(srcdir)/Lib/*.py `cat pybuilddir.txt`/_sysconfigdata.py; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001200 do \
1201 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001202 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001203 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001204 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001205 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001206 echo $(INSTALL_DATA) $$i $(LIBDEST); \
1207 fi; \
1208 done
1209 @for d in $(LIBSUBDIRS); \
1210 do \
1211 a=$(srcdir)/Lib/$$d; \
1212 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001213 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001214 b=$(LIBDEST)/$$d; \
1215 for i in $$a/*; \
1216 do \
1217 case $$i in \
1218 *CVS) ;; \
1219 *.py[co]) ;; \
1220 *.orig) ;; \
1221 *~) ;; \
1222 *) \
1223 if test -d $$i; then continue; fi; \
1224 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001225 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001226 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001227 else \
1228 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001229 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001230 fi;; \
1231 esac; \
1232 done; \
1233 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001234 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Ned Deily58f27b22011-06-28 00:42:50 -07001235 if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
1236 $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
1237 $(DESTDIR)$(LIBDEST)/distutils/tests ; \
1238 fi
Guido van Rossum827bfd02007-07-15 13:12:42 +00001239 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001240 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001241 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001242 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001243 $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +00001244 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001245 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001246 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001247 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001248 $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001249 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001250 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001251 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001252 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001253 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001254 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001255 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001256 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Ned Deily4725b132012-09-08 19:04:47 -07001257 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1258 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
1259 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1260 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001261
1262# Create the PLATDIR source directory, if one wasn't distributed..
1263$(srcdir)/Lib/$(PLATDIR):
1264 mkdir $(srcdir)/Lib/$(PLATDIR)
1265 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
1266 export PATH; PATH="`pwd`:$$PATH"; \
1267 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001268 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +00001269 export EXE; EXE="$(BUILDEXE)"; \
doko@python.org3e6e2ac2013-01-25 13:12:29 +01001270 if [ -n "$(MULTIARCH)" ]; then export MULTIARCH; MULTIARCH=$(MULTIARCH); fi; \
doko@python.orga10e4a92013-01-25 18:45:12 +01001271 export PYTHON_FOR_BUILD; \
1272 if [ "$(BUILD_GNU_TYPE)" = "$(HOST_GNU_TYPE)" ]; then \
1273 PYTHON_FOR_BUILD="$(BUILDPYTHON)"; \
1274 else \
1275 PYTHON_FOR_BUILD="$(PYTHON_FOR_BUILD)"; \
1276 fi; \
Benjamin Petersonfce25a72008-12-30 18:05:46 +00001277 cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001278
doko@python.org87421192013-01-26 11:39:31 +01001279python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh
Collin Winterbf199072010-03-19 21:17:17 +00001280 # Substitution happens here, as the completely-expanded BINDIR
1281 # is not available in configure
doko@python.org87421192013-01-26 11:39:31 +01001282 sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py
1283 # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR}
1284 sed -e 's,\$$(\([A-Za-z0-9_]*\)),\$$\{\1\},g' < Misc/python-config.sh >python-config
doko@ubuntu.com0df35b02013-08-01 15:32:49 +02001285 # On Darwin, always use the python version of the script, the shell
1286 # version doesn't use the compiler customizations that are provided
1287 # in python (_osx_support.py).
1288 if test `uname -s` = Darwin; then \
1289 cp python-config.py python-config; \
1290 fi
1291
Collin Winterbf199072010-03-19 21:17:17 +00001292
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001293# Install the include files
1294INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
1295inclinstall:
1296 @for i in $(INCLDIRSTOMAKE); \
1297 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001298 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001299 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001300 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001301 else true; \
1302 fi; \
1303 done
1304 @for i in $(srcdir)/Include/*.h; \
1305 do \
1306 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001307 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001308 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001309 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001310
1311# Install the library and miscellaneous stuff needed for extending/embedding
1312# This goes into $(exec_prefix)
doko@ubuntu.com100aa182015-04-13 22:10:21 +02001313LIBPL= @LIBPL@
Antoine Pitrou20327222009-05-24 20:39:11 +00001314
1315# pkgconfig directory
1316LIBPC= $(LIBDIR)/pkgconfig
1317
Collin Winterbf199072010-03-19 21:17:17 +00001318libainstall: all python-config
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001319 @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001320 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001321 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001322 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001323 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001324 else true; \
1325 fi; \
1326 done
Martin v. Löwis1142de32002-03-29 16:28:31 +00001327 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +00001328 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07001329 if test "$(SHLIB_SUFFIX)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001330 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001331 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001332 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
1333 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001334 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001335 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001336 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001337 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001338 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001339 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001340 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001341 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
1342 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
1343 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
1344 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
1345 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
Antoine Pitrou20327222009-05-24 20:39:11 +00001346 $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001347 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
1348 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
doko@python.org87421192013-01-26 11:39:31 +01001349 $(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001350 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001351 @if [ -s Modules/python.exp -a \
1352 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
1353 echo; echo "Installing support files for building shared extension modules on AIX:"; \
1354 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001355 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001356 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001357 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001358 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001359 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001360 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001361 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001362 echo "$(LIBPL)/ld_so_aix"; \
1363 echo; echo "See Misc/AIX-NOTES for details."; \
1364 else true; \
1365 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001366
1367# Install the dynamically loadable modules
1368# This goes into $(exec_prefix)
Benjamin Petersonbbda0c52010-07-17 20:39:23 +00001369sharedinstall: sharedmods
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001370 $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001371 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +00001372 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001373 --install-platlib=$(DESTSHARED) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001374 --root=$(DESTDIR)/
Trent Nelsonc101bf32012-10-16 08:13:12 -04001375 -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata.py
1376 -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001377
Jack Jansencb4321e2002-08-09 00:18:21 +00001378# Here are a couple of targets for MacOSX again, to install a full
1379# framework-based Python. frameworkinstall installs everything, the
1380# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001381# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +00001382#
Thomas Wouters477c8d52006-05-27 19:21:47 +00001383#
1384# This target is here for backward compatiblity, previous versions of Python
1385# hadn't integrated framework installation in the normal install process.
1386frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +00001387
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001388# On install, we re-make the framework
1389# structure in the install location, /Library/Frameworks/ or the argument to
1390# --enable-framework. If --enable-framework has been specified then we have
1391# automatically set prefix to the location deep down in the framework, so we
1392# only have to cater for the structural bits of the framework.
1393
Jack Jansencb4321e2002-08-09 00:18:21 +00001394frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1395
1396frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001397 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001398 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001399 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001400 else true; \
1401 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001402 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001403 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001404 echo "Creating directory $(DESTDIR)$$i"; \
1405 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001406 else true; \
1407 fi; \
1408 done
Ronald Oussoren0499d0b2010-12-07 14:41:05 +00001409 $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001410 sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
Jack Jansen9592fe92003-05-25 22:01:32 +00001411 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001412 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001413 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1414 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001415 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001416
Jack Jansencb4321e2002-08-09 00:18:21 +00001417# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001418# Install a number of symlinks to keep software that expects a normal unix
1419# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001420frameworkinstallmaclib:
Christian Heimesae6275d2013-07-09 14:30:04 +02001421 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).a"
1422 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).dylib"
1423 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).a"
1424 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).dylib"
1425 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib"
1426 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
Jack Jansencb4321e2002-08-09 00:18:21 +00001427
1428# This installs the IDE, the Launcher and other apps into /Applications
1429frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001430 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001431
Ned Deilyb8f944f2013-11-21 22:42:25 -08001432# Build the bootstrap executable that will spawn the interpreter inside
1433# an app bundle within the framework. This allows the interpreter to
1434# run OS X GUI APIs.
1435frameworkpythonw:
1436 cd Mac && $(MAKE) pythonw
1437
1438# This installs the python* and other bin symlinks in $prefix/bin or in
1439# a bin directory relative to the framework root
Jack Jansencb4321e2002-08-09 00:18:21 +00001440frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001441 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1442
1443frameworkaltinstallunixtools:
1444 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001445
Georg Brandl59b44722010-12-30 22:12:40 +00001446# This installs the Tools into the applications directory.
Jack Jansena1b77582003-06-19 22:35:20 +00001447# It is not part of a normal frameworkinstall
1448frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001449 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001450
Skip Montanarodecc6a42003-01-01 20:07:49 +00001451# This installs a few of the useful scripts in Tools/scripts
1452scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001453 SRCDIR=$(srcdir) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001454 $(PYTHON_FOR_BUILD) $(srcdir)/Tools/scripts/setup.py install \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001455 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001456 --install-scripts=$(BINDIR) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001457 --root=$(DESTDIR)/
Skip Montanarodecc6a42003-01-01 20:07:49 +00001458
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001459# Build the toplevel Makefile
Victor Stinner69f55cc2011-10-12 22:09:40 +02001460Makefile.pre: $(srcdir)/Makefile.pre.in config.status
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001461 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1462 $(MAKE) -f Makefile.pre Makefile
1463
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001464# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001465config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001466 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001467
Jack Jansen1999ef42001-12-06 21:47:20 +00001468.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001469
1470# Some make's put the object file in the current directory
1471.c.o:
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +00001472 $(CC) -c $(PY_CORE_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001473
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001474# Run reindent on the library
1475reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001476 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001477
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001478# Rerun configure with the same options as it was run last time,
1479# provided the config.status script exists
1480recheck:
1481 $(SHELL) config.status --recheck
1482 $(SHELL) config.status
1483
Matthias Klose0f4c16e2012-03-14 23:10:15 +01001484# Rebuild the configure script from configure.ac; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001485autoconf:
Matthias Klose80b09d42010-04-25 21:23:32 +00001486 (cd $(srcdir); autoconf -Wall)
1487 (cd $(srcdir); autoheader -Wall)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001488
1489# Create a tags file for vi
1490tags::
1491 cd $(srcdir); \
1492 ctags -w -t Include/*.h; \
1493 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1494 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001495 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001496
1497# Create a tags file for GNU Emacs
1498TAGS::
1499 cd $(srcdir); \
1500 etags Include/*.h; \
1501 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1502
Georg Brandl2a3e3962014-10-06 14:58:17 +02001503# This fixes up the mtimes of checked-in generated files, assuming that they
1504# only *appear* to be outdated because of checkout order.
1505# This is run while preparing a source release tarball, and can be run manually
1506# to avoid bootstrap issues.
Martin v. Loewiscfc1cc22012-04-27 16:10:21 +02001507touch:
Ned Deilya869fd32014-05-11 21:45:13 -07001508 cd $(srcdir); \
Martin v. Loewiscfc1cc22012-04-27 16:10:21 +02001509 hg --config extensions.touch=Tools/hg/hgtouch.py touch -v
1510
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001511# Sanitation targets -- clean leaves libraries, executables and tags
Mark Dickinson067b38e2009-09-24 19:24:44 +00001512# files, which clobber removes as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001513pycremoval:
Petri Lehtinenbc74ee02011-11-05 21:04:24 +02001514 -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
Barry Warsaw5f2347d2010-04-26 16:02:14 +00001515 -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001516
Guido van Rossum77b5e332007-08-29 23:24:02 +00001517rmtestturds:
1518 -rm -f *BAD *GOOD *SKIPPED
1519 -rm -rf OUT
1520 -rm -f *.TXT
1521 -rm -f *.txt
1522 -rm -f gb-18030-2000.xml
1523
Guido van Rossum8188e632007-08-29 23:48:29 +00001524docclean:
1525 -rm -rf Doc/build
1526 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1527
Guido van Rossum5420bc32007-08-29 23:35:30 +00001528clean: pycremoval
Georg Brandl241bdab2010-07-31 22:05:54 +00001529 find . -name '*.[oa]' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001530 find . -name '*.s[ol]' -exec rm -f {} ';'
Georg Brandl241bdab2010-07-31 22:05:54 +00001531 find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
Thomas Heller6ab91482009-04-24 18:27:10 +00001532 find build -name 'fficonfig.h' -exec rm -f {} ';' || true
Trent Nelsonc101bf32012-10-16 08:13:12 -04001533 find build -name '*.py' -exec rm -f {} ';' || true
1534 find build -name '*.py[co]' -exec rm -f {} ';' || true
1535 -rm -f pybuilddir.txt
Ned Deily4725b132012-09-08 19:04:47 -07001536 -rm -f Lib/lib2to3/*Grammar*.pickle
Antoine Pitroue67f48c2012-06-19 22:29:35 +02001537 -rm -f Modules/_testembed Modules/_freeze_importlib
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001538
Christian Heimes33fe8092008-04-13 13:53:33 +00001539profile-removal:
1540 find . -name '*.gc??' -exec rm -f {} ';'
Christian Heimes49e52f92013-07-31 00:55:18 +02001541 rm -f $(COVERAGE_INFO)
1542 rm -rf $(COVERAGE_REPORT)
Christian Heimes33fe8092008-04-13 13:53:33 +00001543
1544clobber: clean profile-removal
Jack Jansen1999ef42001-12-06 21:47:20 +00001545 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Matthias Klose597e6b42012-04-04 13:20:55 +02001546 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001547 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001548 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001549 -rm -rf $(PYTHONFRAMEWORKDIR)
doko@python.org87421192013-01-26 11:39:31 +01001550 -rm -f python-config.py python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001551
1552# Make things extra clean, before making a distribution:
1553# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001554# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001555distclean: clobber
Christian Heimesf8471862013-11-24 03:32:40 +01001556 for file in $(srcdir)/Lib/test/data/* ; do \
1557 if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
Mark Dickinsonde802be2010-08-01 21:33:01 +00001558 done
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001559 -rm -f core Makefile Makefile.pre config.status \
Mark Dickinson9b3d5572009-08-31 14:52:10 +00001560 Modules/Setup Modules/Setup.local Modules/Setup.config \
Georg Brandl9a829be2011-02-15 15:44:51 +00001561 Modules/ld_so_aix Modules/python.exp Misc/python.pc
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001562 -rm -f python*-gdb.py
Eric V. Smithf4c47b52013-07-02 09:06:54 -04001563 find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
1564 -o -name '[@,#]*' -o -name '*.old' \
1565 -o -name '*.orig' -o -name '*.rej' \
1566 -o -name '*.bak' ')' \
1567 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001568
1569# Check for smelly exported symbols (not starting with Py/_Py)
1570smelly: all
1571 nm -p $(LIBRARY) | \
1572 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1573
1574# Find files with funny names
1575funny:
Éric Araujo1c608e32011-08-10 02:01:32 +02001576 find $(SUBDIRS) $(SUBDIRSTOO) \
Éric Araujoe9715b92011-08-10 21:42:23 +02001577 -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001578 -o -name '*.[chs]' \
1579 -o -name '*.py' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001580 -o -name '*.pyw' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001581 -o -name '*.dat' \
1582 -o -name '*.el' \
1583 -o -name '*.fd' \
1584 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001585 -o -name '*.gif' \
1586 -o -name '*.txt' \
1587 -o -name '*.xml' \
1588 -o -name '*.xbm' \
1589 -o -name '*.xpm' \
1590 -o -name '*.uue' \
1591 -o -name '*.decTest' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001592 -o -name '*.tmCommand' \
1593 -o -name '*.tmSnippet' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001594 -o -name 'Setup' \
1595 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001596 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001597 -o -name README \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001598 -o -name NEWS \
1599 -o -name HISTORY \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001600 -o -name Makefile \
1601 -o -name ChangeLog \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001602 -o -name .hgignore \
1603 -o -name .bzrignore \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001604 -o -name MANIFEST \
Éric Araujob5da6e92011-08-16 19:05:56 +02001605 -o -print
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001606
Christian Heimesada8c3b2008-03-18 18:26:33 +00001607# Perform some verification checks on any modified files.
Brett Cannona741ebf2008-09-05 23:01:27 +00001608patchcheck:
Georg Brandlfcaf9102008-07-16 02:17:56 +00001609 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001610
Guido van Rossum9454ad72001-08-18 21:08:22 +00001611# Dependencies
1612
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001613Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001614
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001615# Declare targets that aren't real files
Victor Stinnere0a669e2011-12-15 21:48:39 +01001616.PHONY: all build_all sharedmods oldsharedmods test quicktest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001617.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1618.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1619.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1620.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Victor Stinner4e314432010-10-07 21:45:39 +00001621.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
Ned Deily322f5ba2013-11-21 23:01:59 -08001622.PHONY: smelly funny patchcheck touch altmaninstall commoninstall
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001623.PHONY: gdbhooks
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001624
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001625# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
Barry Warsaw771d33e2010-12-13 18:04:23 +00001626# Local Variables:
1627# mode: makefile
1628# End: