blob: 502317aa0c783a8b29395676b2b46f9919d90872 [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
xdegayec0364fc2017-05-27 18:25:03 +020023MODBUILT_NAMES= _MODBUILT_NAMES_
24MODDISABLED_NAMES= _MODDISABLED_NAMES_
25MODOBJS= _MODOBJS_
26MODLIBS= _MODLIBS_
Neil Schemenauer85515ad2001-01-24 17:11:43 +000027
28# === Variables set by configure
29VERSION= @VERSION@
30srcdir= @srcdir@
31VPATH= @srcdir@
Trent Nelson739fc542012-10-17 04:45:30 -040032abs_srcdir= @abs_srcdir@
33abs_builddir= @abs_builddir@
Trent Nelson9effe692012-10-16 08:41:32 -040034
Neil Schemenauer85515ad2001-01-24 17:11:43 +000035
36CC= @CC@
37CXX= @CXX@
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000038MAINCC= @MAINCC@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000039LINKCC= @LINKCC@
40AR= @AR@
doko@ubuntu.com58844492012-06-30 18:25:32 +020041READELF= @READELF@
Georg Brandl0d169ea2010-09-03 22:14:52 +000042SOABI= @SOABI@
Barry Warsaw8cf4eae2010-10-16 01:04:07 +000043LDVERSION= @LDVERSION@
xdegaye254b3092019-04-29 09:27:40 +020044LIBPYTHON= @LIBPYTHON@
Ned Deily5c4b0d02017-03-04 00:19:55 -050045GITVERSION= @GITVERSION@
46GITTAG= @GITTAG@
47GITBRANCH= @GITBRANCH@
Brett Cannon7188a3e2015-09-18 15:13:44 -070048PGO_PROF_GEN_FLAG=@PGO_PROF_GEN_FLAG@
49PGO_PROF_USE_FLAG=@PGO_PROF_USE_FLAG@
50LLVM_PROF_MERGER=@LLVM_PROF_MERGER@
51LLVM_PROF_FILE=@LLVM_PROF_FILE@
52LLVM_PROF_ERR=@LLVM_PROF_ERR@
Łukasz Langaa785c872016-09-09 17:37:37 -070053DTRACE= @DTRACE@
54DFLAGS= @DFLAGS@
55DTRACE_HEADERS= @DTRACE_HEADERS@
56DTRACE_OBJS= @DTRACE_OBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000057
Georg Brandl0d169ea2010-09-03 22:14:52 +000058GNULD= @GNULD@
Tarek Ziadébe720e02009-05-09 11:55:12 +000059
Neil Schemenauer85515ad2001-01-24 17:11:43 +000060# Shell used by make (some versions default to the login shell, which is bad)
61SHELL= /bin/sh
62
63# Use this to make a link between python$(VERSION) and python in $(BINDIR)
64LN= @LN@
65
66# Portable install script (configure doesn't always guess right)
67INSTALL= @INSTALL@
68INSTALL_PROGRAM=@INSTALL_PROGRAM@
Neil Schemenauer3f5cc202001-04-10 23:03:35 +000069INSTALL_SCRIPT= @INSTALL_SCRIPT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000070INSTALL_DATA= @INSTALL_DATA@
71# Shared libraries must be installed with executable mode on some systems;
72# rather than figuring out exactly which, we always give them executable mode.
jdemeyer25648d02018-12-09 08:46:50 +010073INSTALL_SHARED= ${INSTALL} -m 755
Neil Schemenauer85515ad2001-01-24 17:11:43 +000074
Matthias Klose93a0ef12012-03-15 18:08:34 +010075MKDIR_P= @MKDIR_P@
76
Neil Schemenauer85515ad2001-01-24 17:11:43 +000077MAKESETUP= $(srcdir)/Modules/makesetup
78
79# Compiler options
80OPT= @OPT@
Skip Montanarodecc6a42003-01-01 20:07:49 +000081BASECFLAGS= @BASECFLAGS@
Trent Nelson9effe692012-10-16 08:41:32 -040082BASECPPFLAGS= @BASECPPFLAGS@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000083CONFIGURE_CFLAGS= @CFLAGS@
Benjamin Petersonacb8c522014-08-09 20:01:49 -070084# CFLAGS_NODIST is used for building the interpreter and stdlib C extensions.
85# Use it when a compiler flag should _not_ be part of the distutils CFLAGS
86# once Python is installed (Issue #21121).
87CONFIGURE_CFLAGS_NODIST=@CFLAGS_NODIST@
stratakiscf10a752018-12-19 18:19:01 +010088# LDFLAGS_NODIST is used in the same manner as CFLAGS_NODIST.
89# Use it when a linker flag should _not_ be part of the distutils LDFLAGS
90# once Python is installed (bpo-35257)
91CONFIGURE_LDFLAGS_NODIST=@LDFLAGS_NODIST@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000092CONFIGURE_CPPFLAGS= @CPPFLAGS@
93CONFIGURE_LDFLAGS= @LDFLAGS@
94# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
95# command line to append to these values without stomping the pre-set
96# values.
97PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
Victor Stinner27e2d1f2018-11-01 00:52:28 +010098PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST) -I$(srcdir)/Include/internal
Brett Cannon516592f2004-12-07 00:42:59 +000099# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
100# be able to build extension modules using the directories specified in the
101# environment variables
Martin Panter13419262016-09-13 12:21:47 +0000102PY_CPPFLAGS= $(BASECPPFLAGS) -I. -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000103PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS)
stratakiscf10a752018-12-19 18:19:01 +0100104PY_LDFLAGS_NODIST=$(CONFIGURE_LDFLAGS_NODIST) $(LDFLAGS_NODIST)
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200105NO_AS_NEEDED= @NO_AS_NEEDED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000106SGI_ABI= @SGI_ABI@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000107CCSHARED= @CCSHARED@
Victor Stinnere65f01f2019-04-09 18:12:44 +0200108# LINKFORSHARED are the flags passed to the $(CC) command that links
109# the python executable -- this is only needed for a few systems
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000110LINKFORSHARED= @LINKFORSHARED@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000111ARFLAGS= @ARFLAGS@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000112# Extra C flags added for building the interpreter object files.
113CFLAGSFORSHARED=@CFLAGSFORSHARED@
114# C flags used for building the interpreter object files
xdegaye063db622018-04-20 17:03:49 +0200115PY_STDMODULE_CFLAGS= $(PY_CFLAGS) $(PY_CFLAGS_NODIST) $(PY_CPPFLAGS) $(CFLAGSFORSHARED)
E. M. Brayda324d52018-11-27 03:21:31 +0100116PY_BUILTIN_MODULE_CFLAGS= $(PY_STDMODULE_CFLAGS) -DPy_BUILD_CORE_BUILTIN
xdegaye063db622018-04-20 17:03:49 +0200117PY_CORE_CFLAGS= $(PY_STDMODULE_CFLAGS) -DPy_BUILD_CORE
stratakiscf10a752018-12-19 18:19:01 +0100118# Linker flags used for building the interpreter object files
119PY_CORE_LDFLAGS=$(PY_LDFLAGS) $(PY_LDFLAGS_NODIST)
Victor Stinner826f83f2017-04-28 15:07:10 +0200120# Strict or non-strict aliasing flags used to compile dtoa.c, see above
121CFLAGS_ALIASING=@CFLAGS_ALIASING@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000122
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000123
124# Machine-dependent subdirectories
125MACHDEP= @MACHDEP@
126
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100127# Multiarch directory (may be empty)
128MULTIARCH= @MULTIARCH@
doko@ubuntu.com55532312016-06-14 08:55:19 +0200129MULTIARCH_CPPFLAGS = @MULTIARCH_CPPFLAGS@
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100130
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000131# Install prefix for architecture-independent files
132prefix= @prefix@
133
134# Install prefix for architecture-dependent files
135exec_prefix= @exec_prefix@
136
Thomas Woutersbca54802007-09-10 19:32:14 +0000137# Install prefix for data files
138datarootdir= @datarootdir@
139
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000140# Expanded directories
Antoine Pitrou7a61ba92010-03-21 19:25:26 +0000141BINDIR= @bindir@
142LIBDIR= @libdir@
Martin v. Löwisd429ab62001-08-02 06:20:20 +0000143MANDIR= @mandir@
144INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000145CONFINCLUDEDIR= $(exec_prefix)/include
146SCRIPTDIR= $(prefix)/lib
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000147ABIFLAGS= @ABIFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000148
149# Detailed destination directories
150BINLIBDEST= $(LIBDIR)/python$(VERSION)
151LIBDEST= $(SCRIPTDIR)/python$(VERSION)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000152INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION)
153CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000154
155# Symbols used for using shared libraries
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700156SHLIB_SUFFIX= @SHLIB_SUFFIX@
157EXT_SUFFIX= @EXT_SUFFIX@
Antoine Pitroudbec7802010-10-10 09:37:12 +0000158LDSHARED= @LDSHARED@ $(PY_LDFLAGS)
Ned Deily44a3ee02018-12-23 15:32:48 -0500159BLDSHARED= @BLDSHARED@ $(PY_CORE_LDFLAGS)
Tarek Ziadé03d788d2010-04-03 08:46:49 +0000160LDCXXSHARED= @LDCXXSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000161DESTSHARED= $(BINLIBDEST)/lib-dynload
162
163# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000164EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000165BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000166
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000167# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000168UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000169PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
170PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
171PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
172PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000173# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000174# by distutils. The export statement is needed to ensure that the
175# deployment target is active during build.
176MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
177@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
178
Ned Deilyb8f944f2013-11-21 22:42:25 -0800179# Option to install to strip binaries
180STRIPFLAG=-s
181
182# Flags to lipo to produce a 32-bit-only universal executable
183LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@
184
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000185# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
186OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000187
Martin v. Löwis1142de32002-03-29 16:28:31 +0000188# Environment to run shared python without installed libraries
189RUNSHARED= @RUNSHARED@
190
Ned Deily322f5ba2013-11-21 23:01:59 -0800191# ensurepip options
192ENSUREPIP= @ENSUREPIP@
193
Christian Heimesff5be6e2018-01-20 13:19:21 +0100194# OpenSSL options for setup.py so sysconfig can pick up AC_SUBST() vars.
195OPENSSL_INCLUDES=@OPENSSL_INCLUDES@
196OPENSSL_LIBS=@OPENSSL_LIBS@
197OPENSSL_LDFLAGS=@OPENSSL_LDFLAGS@
198
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000199# Modes for directories, executables and data files created by the
200# install process. Default to user-only-writable for all file types.
201DIRMODE= 755
202EXEMODE= 755
203FILEMODE= 644
204
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000205# configure script arguments
206CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000207
208
209# Subdirectories with code
210SRCDIRS= @SRCDIRS@
211
212# Other subdirectories
Georg Brandl59b44722010-12-30 22:12:40 +0000213SUBDIRSTOO= Include Lib Misc
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000214
215# Files and directories to be distributed
Matthias Klose0f4c16e2012-03-14 23:10:15 +0100216CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
Victor Stinnerd783b012017-02-11 02:21:38 +0100217DISTFILES= README.rst ChangeLog $(CONFIGFILES)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000218DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
219DIST= $(DISTFILES) $(DISTDIRS)
220
221
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000222LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000223LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000224BLDLIBRARY= @BLDLIBRARY@
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000225PY3LIBRARY= @PY3LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000226DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000227LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000228INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000229
230
231LIBS= @LIBS@
232LIBM= @LIBM@
233LIBC= @LIBC@
234SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000235SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000236
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000237DLINCLDIR= @DLINCLDIR@
238DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000239MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000240LIBOBJDIR= Python/
241LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000242
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000243PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000244BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000245
Victor Stinnera5c62a82017-05-03 18:21:48 +0200246PYTHON_FOR_REGEN=@PYTHON_FOR_REGEN@
Antoine Pitroub091bec2017-09-20 23:57:56 +0200247UPDATE_FILE=@PYTHON_FOR_REGEN@ $(srcdir)/Tools/scripts/update_file.py
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200248PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@
249_PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@
doko@python.orga10e4a92013-01-25 18:45:12 +0100250BUILD_GNU_TYPE= @build@
251HOST_GNU_TYPE= @host@
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200252
Ned Deilyd819b932013-09-06 01:07:05 -0700253# Tcl and Tk config info from --with-tcltk-includes and -libs options
254TCLTK_INCLUDES= @TCLTK_INCLUDES@
255TCLTK_LIBS= @TCLTK_LIBS@
256
Gregory P. Smithad45ab82016-04-15 16:45:43 -0700257# The task to run while instrumented when building the profile-opt target.
Miss Islington (bot)24066722019-07-22 13:17:23 -0700258# To speed up profile generation, we don't run the full unit test suite
259# by default. The default is "-m test --pgo". To run more tests, use
260# PROFILE_TASK="-m test --pgo-extended"
261PROFILE_TASK= @PROFILE_TASK@
Christian Heimes33fe8092008-04-13 13:53:33 +0000262
Christian Heimes49e52f92013-07-31 00:55:18 +0200263# report files for gcov / lcov coverage report
264COVERAGE_INFO= $(abs_builddir)/coverage.info
265COVERAGE_REPORT=$(abs_builddir)/lcov-report
266COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report"
267
268
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000269# === Definitions added by makesetup ===
270
271
272##########################################################################
273# Modules
274MODULE_OBJS= \
275 Modules/config.o \
276 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000277 Modules/main.o \
278 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000279
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000280IO_H= Modules/_io/_iomodule.h
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000281
282IO_OBJS= \
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000283 Modules/_io/_iomodule.o \
284 Modules/_io/iobase.o \
285 Modules/_io/fileio.o \
286 Modules/_io/bufferedio.o \
287 Modules/_io/textio.o \
288 Modules/_io/bytesio.o \
289 Modules/_io/stringio.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000290
291##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000292
Benjamin Petersond78735d2010-01-01 16:04:23 +0000293LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
294
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000295##########################################################################
296# Parser
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000297POBJS= \
298 Parser/acceler.o \
299 Parser/grammar1.o \
300 Parser/listnode.o \
301 Parser/node.o \
302 Parser/parser.o \
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200303 Parser/token.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000304
Victor Stinner7f2fee32011-04-05 00:39:01 +0200305PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000306
Georg Brandl86def6c2008-01-21 20:36:10 +0000307PARSER_HEADERS= \
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700308 $(srcdir)/Include/grammar.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200309 $(srcdir)/Include/parsetok.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700310 $(srcdir)/Parser/parser.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200311 $(srcdir)/Parser/tokenizer.h
Georg Brandl86def6c2008-01-21 20:36:10 +0000312
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000313##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000314# Python
Antoine Pitroub52ec782009-01-25 16:34:23 +0000315
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000316PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000317 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000318 Python/Python-ast.o \
319 Python/asdl.o \
320 Python/ast.o \
INADA Naoki7ea143a2017-12-14 16:47:20 +0900321 Python/ast_opt.o \
Guido van Rossum95e4d582018-01-26 08:20:18 -0800322 Python/ast_unparse.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000323 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000324 Python/ceval.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000325 Python/codecs.o \
Victor Stinner6c785c02018-08-01 17:56:14 +0200326 Python/compile.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200327 Python/context.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000328 Python/dynamic_annotations.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329 Python/errors.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000330 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000331 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000332 Python/getargs.o \
333 Python/getcompiler.o \
334 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000335 Python/getplatform.o \
336 Python/getversion.o \
337 Python/graminit.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200338 Python/hamt.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000339 Python/import.o \
340 Python/importdl.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200341 Python/initconfig.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000342 Python/marshal.o \
343 Python/modsupport.o \
Serhiy Storchaka13badcb2017-12-02 21:36:00 +0200344 Python/mysnprintf.o \
Victor Stinner31a83932017-12-04 13:39:15 +0100345 Python/mystrtoul.o \
346 Python/pathconfig.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000347 Python/peephole.o \
Victor Stinner91b9ecf2019-03-01 17:52:56 +0100348 Python/preconfig.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000349 Python/pyarena.o \
Eric Smith6dc46f52009-04-27 20:39:49 +0000350 Python/pyctype.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000351 Python/pyfpe.o \
Christian Heimes985ecdc2013-11-20 11:46:18 +0100352 Python/pyhash.o \
Nick Coghland6009512014-11-20 21:39:37 +1000353 Python/pylifecycle.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000354 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000355 Python/pystate.o \
356 Python/pythonrun.o \
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000357 Python/pytime.o \
Eric Snow6b4be192017-05-22 21:36:03 -0700358 Python/bootstrap_hash.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000359 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000360 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000361 Python/sysmodule.o \
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200362 Python/thread.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000363 Python/traceback.o \
364 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000365 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000366 Python/pystrtod.o \
Gregory P. Smith8cb65692015-04-25 23:22:26 +0000367 Python/pystrhex.o \
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000368 Python/dtoa.o \
Eric Smith8c663262007-08-25 02:26:07 +0000369 Python/formatter_unicode.o \
Victor Stinner4e314432010-10-07 21:45:39 +0000370 Python/fileutils.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000371 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000372 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000373 $(MACHDEP_OBJS) \
Łukasz Langaa785c872016-09-09 17:37:37 -0700374 $(DTRACE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000375
376
377##########################################################################
378# Objects
379OBJECT_OBJS= \
380 Objects/abstract.o \
Antoine Pitroueeb7eea2011-10-06 18:57:27 +0200381 Objects/accu.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000382 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000383 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000384 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000385 Objects/bytesobject.o \
Victor Stinnerc22bfaa2017-02-12 19:27:05 +0100386 Objects/call.o \
Antoine Pitrou91f43802019-05-26 17:10:09 +0200387 Objects/capsule.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000388 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000389 Objects/classobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000390 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000391 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000392 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000393 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000394 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000395 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000396 Objects/fileobject.o \
397 Objects/floatobject.o \
398 Objects/frameobject.o \
399 Objects/funcobject.o \
Eric Snowc11183c2019-03-15 16:35:46 -0600400 Objects/interpreteridobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000401 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000402 Objects/listobject.o \
403 Objects/longobject.o \
404 Objects/dictobject.o \
Eric Snow96c6af92015-05-29 22:21:39 -0600405 Objects/odictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000406 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000407 Objects/methodobject.o \
408 Objects/moduleobject.o \
Barry Warsaw409da152012-06-03 16:18:47 -0400409 Objects/namespaceobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000410 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000411 Objects/obmalloc.o \
Antoine Pitrou91f43802019-05-26 17:10:09 +0200412 Objects/picklebufobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000413 Objects/rangeobject.o \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200414 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000415 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000416 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000417 Objects/tupleobject.o \
418 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000419 Objects/unicodeobject.o \
420 Objects/unicodectype.o \
421 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000422
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000423##########################################################################
424# objects that get linked into the Python library
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200425LIBRARY_OBJS_OMIT_FROZEN= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000426 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000427 $(PARSER_OBJS) \
428 $(OBJECT_OBJS) \
429 $(PYTHON_OBJS) \
430 $(MODULE_OBJS) \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000431 $(MODOBJS)
432
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200433LIBRARY_OBJS= \
434 $(LIBRARY_OBJS_OMIT_FROZEN) \
435 Python/frozen.o
436
Łukasz Langaa785c872016-09-09 17:37:37 -0700437##########################################################################
438# DTrace
439
440# On some systems, object files that reference DTrace probes need to be modified
441# in-place by dtrace(1).
442DTRACE_DEPS = \
Miss Islington (bot)bac6e632019-06-10 08:38:23 -0700443 Python/ceval.o Python/import.o Python/sysmodule.o Modules/gcmodule.o
Łukasz Langaa785c872016-09-09 17:37:37 -0700444
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000445#########################################################################
446# Rules
447
448# Default target
Brett Cannon63d98bc2016-09-06 17:12:40 -0700449all: @DEF_MAKE_ALL_RULE@
xdegaye0de92852017-11-08 16:03:58 +0100450build_all: check-clean-src $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks \
451 Programs/_testembed python-config
452
453# Check that the source is clean when building out of source.
454check-clean-src:
455 @if test -n "$(VPATH)" -a -f "$(srcdir)/Programs/python.o"; then \
456 echo "Error: The source directory ($(srcdir)) is not clean" ; \
457 echo "Building Python out of the source tree (in $(abs_builddir)) requires a clean source tree ($(abs_srcdir))" ; \
458 echo "Try to run: make -C \"$(srcdir)\" clean" ; \
459 exit 1; \
460 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000461
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700462# Profile generation build must start from a clean tree.
463profile-clean-stamp:
464 $(MAKE) clean profile-removal
465 touch $@
466
467# Compile with profile generation enabled.
468profile-gen-stamp: profile-clean-stamp
doko@ubuntu.com3a56b772016-03-23 12:57:29 +0100469 @if [ $(LLVM_PROF_ERR) = yes ]; then \
Brett Cannon7188a3e2015-09-18 15:13:44 -0700470 echo "Error: Cannot perform PGO build because llvm-profdata was not found in PATH" ;\
471 echo "Please add it to PATH and run ./configure again" ;\
472 exit 1;\
473 fi
Christian Heimes33fe8092008-04-13 13:53:33 +0000474 @echo "Building with support for profile generation:"
Brett Cannon7188a3e2015-09-18 15:13:44 -0700475 $(MAKE) build_all_generate_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700476 touch $@
477
478# Run task with profile generation build to create profile information.
479profile-run-stamp:
Brett Cannon7188a3e2015-09-18 15:13:44 -0700480 @echo "Running code to generate profile data (this can take a while):"
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700481 # First, we need to create a clean build with profile generation
482 # enabled.
483 $(MAKE) profile-gen-stamp
484 # Next, run the profile task to generate the profile information.
Christian Heimes33fe8092008-04-13 13:53:33 +0000485 $(MAKE) run_profile_task
Brett Cannon7188a3e2015-09-18 15:13:44 -0700486 $(MAKE) build_all_merge_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700487 # Remove profile generation binary since we are done with it.
Christian Heimes33fe8092008-04-13 13:53:33 +0000488 $(MAKE) clean
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700489 # This is an expensive target to build and it does not have proper
luzpaza5293b42017-11-05 07:37:50 -0600490 # makefile dependency information. So, we create a "stamp" file
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700491 # to record its completion and avoid re-running it.
492 touch $@
Christian Heimes33fe8092008-04-13 13:53:33 +0000493
494build_all_generate_profile:
stratakiscf10a752018-12-19 18:19:01 +0100495 $(MAKE) @DEF_MAKE_RULE@ CFLAGS_NODIST="$(CFLAGS_NODIST) $(PGO_PROF_GEN_FLAG)" LDFLAGS_NODIST="$(LDFLAGS_NODIST) $(PGO_PROF_GEN_FLAG)" LIBS="$(LIBS)"
Christian Heimes33fe8092008-04-13 13:53:33 +0000496
497run_profile_task:
Martin Panteradab00f2016-09-22 09:34:43 +0000498 @ # FIXME: can't run for a cross build
Brett Cannon7188a3e2015-09-18 15:13:44 -0700499 $(LLVM_PROF_FILE) $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) || true
500
501build_all_merge_profile:
502 $(LLVM_PROF_MERGER)
Christian Heimes33fe8092008-04-13 13:53:33 +0000503
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700504# Compile Python binary with profile guided optimization.
505# To force re-running of the profile task, remove the profile-run-stamp file.
506profile-opt: profile-run-stamp
507 @echo "Rebuilding with profile guided optimizations:"
508 -rm -f profile-clean-stamp
stratakiscf10a752018-12-19 18:19:01 +0100509 $(MAKE) @DEF_MAKE_RULE@ CFLAGS_NODIST="$(CFLAGS_NODIST) $(PGO_PROF_USE_FLAG)" LDFLAGS_NODIST="$(LDFLAGS_NODIST)"
Christian Heimes33fe8092008-04-13 13:53:33 +0000510
Christian Heimes49e52f92013-07-31 00:55:18 +0200511# Compile and run with gcov
512.PHONY=coverage coverage-lcov coverage-report
Georg Brandlb533e262008-05-25 18:19:30 +0000513coverage:
514 @echo "Building with support for coverage checking:"
Christian Heimes49e52f92013-07-31 00:55:18 +0200515 $(MAKE) clean profile-removal
Brett Cannon63d98bc2016-09-06 17:12:40 -0700516 $(MAKE) @DEF_MAKE_RULE@ CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
Georg Brandlb533e262008-05-25 18:19:30 +0000517
Christian Heimes49e52f92013-07-31 00:55:18 +0200518coverage-lcov:
519 @echo "Creating Coverage HTML report with LCOV:"
520 @rm -f $(COVERAGE_INFO)
521 @rm -rf $(COVERAGE_REPORT)
522 @lcov --capture --directory $(abs_builddir) \
523 --base-directory $(realpath $(abs_builddir)) \
524 --path $(realpath $(abs_srcdir)) \
525 --output-file $(COVERAGE_INFO)
Martin Panteradab00f2016-09-22 09:34:43 +0000526 @ # remove 3rd party modules, system headers and internal files with
527 @ # debug, test or dummy functions.
Christian Heimes49e52f92013-07-31 00:55:18 +0200528 @lcov --remove $(COVERAGE_INFO) \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200529 '*/Modules/_blake2/impl/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200530 '*/Modules/_ctypes/libffi*/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200531 '*/Modules/_decimal/libmpdec/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200532 '*/Modules/_sha3/kcp/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200533 '*/Modules/expat/*' \
534 '*/Modules/zlib/*' \
535 '*/Include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200536 '*/Modules/xx*.c' \
537 '*/Parser/listnode.c' \
538 '*/Python/pyfpe.c' \
539 '*/Python/pystrcmp.c' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200540 '/usr/include/*' \
541 '/usr/local/include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200542 '/usr/lib/gcc/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200543 --output-file $(COVERAGE_INFO)
544 @genhtml $(COVERAGE_INFO) --output-directory $(COVERAGE_REPORT) \
545 $(COVERAGE_REPORT_OPTIONS)
546 @echo
547 @echo "lcov report at $(COVERAGE_REPORT)/index.html"
548 @echo
549
Victor Stinnera5c62a82017-05-03 18:21:48 +0200550# Force regeneration of parser and importlib
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200551coverage-report: regen-grammar regen-token regen-importlib
Martin Panteradab00f2016-09-22 09:34:43 +0000552 @ # build with coverage info
Christian Heimes49e52f92013-07-31 00:55:18 +0200553 $(MAKE) coverage
Martin Panteradab00f2016-09-22 09:34:43 +0000554 @ # run tests, ignore failures
Christian Heimes49e52f92013-07-31 00:55:18 +0200555 $(TESTRUNNER) $(TESTOPTS) || true
Martin Panteradab00f2016-09-22 09:34:43 +0000556 @ # build lcov report
Christian Heimes49e52f92013-07-31 00:55:18 +0200557 $(MAKE) coverage-lcov
Georg Brandlb533e262008-05-25 18:19:30 +0000558
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800559# Run "Argument Clinic" over all source files
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800560.PHONY=clinic
Zachary Wared6ff8a72018-02-17 17:58:57 -0600561clinic: check-clean-src $(srcdir)/Modules/_blake2/blake2s_impl.c
562 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py --make --srcdir $(srcdir)
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800563
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000564# Build the interpreter
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000565$(BUILDPYTHON): Programs/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
stratakiscf10a752018-12-19 18:19:01 +0100566 $(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000567
Trent Nelsonc101bf32012-10-16 08:13:12 -0400568platform: $(BUILDPYTHON) pybuilddir.txt
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200569 $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print("%s-%d.%d" % (get_platform(), *sys.version_info[:2]))' >platform
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000570
Trent Nelsonc101bf32012-10-16 08:13:12 -0400571# Create build directory and generate the sysconfig build-time data there.
572# pybuilddir.txt contains the name of the build dir and is used for
573# sys.path fixup -- see Modules/getpath.c.
Ned Deilyfcbc2462014-08-22 13:32:49 -0700574# Since this step runs before shared modules are built, try to avoid bootstrap
Ned Deilyec7aaf52014-08-23 18:10:16 -0700575# problems by creating a dummy pybuilddir.txt just to allow interpreter
Ned Deilyfcbc2462014-08-22 13:32:49 -0700576# initialization to succeed. It will be overwritten by generate-posix-vars
577# or removed in case of failure.
Trent Nelsonc101bf32012-10-16 08:13:12 -0400578pybuilddir.txt: $(BUILDPYTHON)
Ned Deilyfcbc2462014-08-22 13:32:49 -0700579 @echo "none" > ./pybuilddir.txt
580 $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\
581 if test $$? -ne 0 ; then \
582 echo "generate-posix-vars failed" ; \
583 rm -f ./pybuilddir.txt ; \
584 exit 1 ; \
585 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000586
Martin Panterc9deece2016-02-03 05:19:44 +0000587# This is shared by the math and cmath modules
588Modules/_math.o: Modules/_math.c Modules/_math.h
589 $(CC) -c $(CCSHARED) $(PY_CORE_CFLAGS) -o $@ $<
590
Christian Heimes121b9482016-09-06 22:03:25 +0200591# blake2s is auto-generated from blake2b
Zachary Wared6ff8a72018-02-17 17:58:57 -0600592$(srcdir)/Modules/_blake2/blake2s_impl.c: $(srcdir)/Modules/_blake2/blake2b_impl.c $(srcdir)/Modules/_blake2/blake2b2s.py
593 $(PYTHON_FOR_REGEN) $(srcdir)/Modules/_blake2/blake2b2s.py
594 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py -f $@
Christian Heimes121b9482016-09-06 22:03:25 +0200595
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000596# Build the shared modules
Christian Heimes17ad40e2012-12-02 07:37:35 +0100597# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
Christian Heimes5f381212012-09-07 02:24:58 +0200598# -s, --silent or --quiet is always the first char.
Christian Heimes17ad40e2012-12-02 07:37:35 +0100599# Under BSD make, MAKEFLAGS might be " -s -v x=y".
Matthias Klose10f715d2018-04-30 20:07:55 +0200600# Ignore macros passed by GNU make, passed after --
Martin Panterc9deece2016-02-03 05:19:44 +0000601sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
Matthias Klose10f715d2018-04-30 20:07:55 +0200602 @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
Christian Heimes17ad40e2012-12-02 07:37:35 +0100603 *\ -s*|s*) quiet="-q";; \
Christian Heimes5f381212012-09-07 02:24:58 +0200604 *) quiet="";; \
605 esac; \
Matthias Klose10f715d2018-04-30 20:07:55 +0200606 echo "$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
607 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
608 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build"; \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200609 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
Ned Deilyd819b932013-09-06 01:07:05 -0700610 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
Christian Heimes4e251402012-09-07 02:26:26 +0200611 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000612
Christian Heimes121b9482016-09-06 22:03:25 +0200613
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000614# Build static library
615$(LIBRARY): $(LIBRARY_OBJS)
616 -rm -f $@
Benjamin Peterson6fb0e4a2017-09-29 09:26:48 -0700617 $(AR) $(ARFLAGS) $@ $(LIBRARY_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000618
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100619libpython$(LDVERSION).so: $(LIBRARY_OBJS) $(DTRACE_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000620 if test $(INSTSONAME) != $(LDLIBRARY); then \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700621 $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000622 $(LN) -f $(INSTSONAME) $@; \
Georg Brandlb1441c72009-01-03 22:33:39 +0000623 else \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700624 $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000625 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000626
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000627libpython3.so: libpython$(LDVERSION).so
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200628 $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000629
Georg Brandl6e8d17c2011-02-19 08:47:14 +0000630libpython$(LDVERSION).dylib: $(LIBRARY_OBJS)
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100631 $(CC) -dynamiclib -Wl,-single_module $(PY_CORE_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(DTRACE_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Victor Stinner4e314432010-10-07 21:45:39 +0000632
Georg Brandlb1441c72009-01-03 22:33:39 +0000633
Martin v. Löwis1142de32002-03-29 16:28:31 +0000634libpython$(VERSION).sl: $(LIBRARY_OBJS)
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700635 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000636
Benjamin Peterson6a6666a2010-04-11 21:49:28 +0000637# Copy up the gdb python hooks into a position where they can be automatically
638# loaded by gdb during Lib/test/test_gdb.py
639#
640# Distributors are likely to want to install this somewhere else e.g. relative
641# to the stripped DWARF data for the shared library.
642gdbhooks: $(BUILDPYTHON)-gdb.py
643
644SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
645$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
646 $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
647
Jack Jansenea0c3822002-08-01 21:57:49 +0000648# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
649# minimal framework (not including the Lib directory and such) in the current
650# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000651RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000652$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
653 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000654 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000655 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
stratakiscf10a752018-12-19 18:19:01 +0100656 $(CC) -o $(LDLIBRARY) $(PY_CORE_LDFLAGS) -dynamiclib \
Ronald Oussoren25032492011-03-14 10:11:59 -0400657 -all_load $(LIBRARY) -Wl,-single_module \
658 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
659 -compatibility_version $(VERSION) \
660 -current_version $(VERSION) \
Victor Stinnerdfb866d2011-09-29 01:12:24 +0200661 -framework CoreFoundation $(LIBS);
Jack Jansenea0c3822002-08-01 21:57:49 +0000662 $(INSTALL) -d -m $(DIRMODE) \
663 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
664 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
665 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000666 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000667 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000668 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000669
Jason Tishler30765592003-09-04 11:04:06 +0000670# This rule builds the Cygwin Python DLL and import library if configured
671# for a shared core library; otherwise, this rule is a noop.
Zachary Ware3839d992016-10-01 16:15:09 -0500672$(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)
Jason Tishler30765592003-09-04 11:04:06 +0000673 if test -n "$(DLLLIBRARY)"; then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000674 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700675 $(LIBS) $(MODLIBS) $(SYSLIBS); \
Jason Tishler30765592003-09-04 11:04:06 +0000676 else true; \
677 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000678
679
680oldsharedmods: $(SHAREDMODS)
681
682
683Makefile Modules/config.c: Makefile.pre \
684 $(srcdir)/Modules/config.c.in \
685 $(MAKESETUP) \
Antoine Pitrou961d54c2018-07-16 19:03:03 +0200686 $(srcdir)/Modules/Setup \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000687 Modules/Setup.local
688 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
689 -s Modules \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000690 Modules/Setup.local \
Antoine Pitrou961d54c2018-07-16 19:03:03 +0200691 $(srcdir)/Modules/Setup
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000692 @mv config.c Modules
693 @echo "The Makefile was updated, you may need to re-run make."
694
695
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000696Programs/_testembed: Programs/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
stratakiscf10a752018-12-19 18:19:01 +0100697 $(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200698
Brett Cannonfd074152012-04-14 14:10:13 -0400699############################################################################
700# Importlib
Antoine Pitrou8e605772011-04-25 21:21:07 +0200701
Nick Coghlan8d11ccc2015-04-13 11:30:49 -0400702Programs/_freeze_importlib.o: Programs/_freeze_importlib.c Makefile
Antoine Pitrou895ce142014-09-21 00:21:58 +0200703
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000704Programs/_freeze_importlib: Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN)
stratakiscf10a752018-12-19 18:19:01 +0100705 $(LINKCC) $(PY_CORE_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS)
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200706
Victor Stinnera5c62a82017-05-03 18:21:48 +0200707.PHONY: regen-importlib
708regen-importlib: Programs/_freeze_importlib
709 # Regenerate Python/importlib_external.h
710 # from Lib/importlib/_bootstrap_external.py using _freeze_importlib
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300711 ./Programs/_freeze_importlib importlib._bootstrap_external \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200712 $(srcdir)/Lib/importlib/_bootstrap_external.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200713 $(srcdir)/Python/importlib_external.h.new
714 $(UPDATE_FILE) $(srcdir)/Python/importlib_external.h $(srcdir)/Python/importlib_external.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200715 # Regenerate Python/importlib.h from Lib/importlib/_bootstrap.py
716 # using _freeze_importlib
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300717 ./Programs/_freeze_importlib importlib._bootstrap \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200718 $(srcdir)/Lib/importlib/_bootstrap.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200719 $(srcdir)/Python/importlib.h.new
720 $(UPDATE_FILE) $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib.h.new
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300721 # Regenerate Python/importlib_zipimport.h from Lib/zipimport.py
722 # using _freeze_importlib
723 ./Programs/_freeze_importlib zipimport \
724 $(srcdir)/Lib/zipimport.py \
725 $(srcdir)/Python/importlib_zipimport.h.new
726 $(UPDATE_FILE) $(srcdir)/Python/importlib_zipimport.h $(srcdir)/Python/importlib_zipimport.h.new
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200727
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200728
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000729############################################################################
Victor Stinnera5c62a82017-05-03 18:21:48 +0200730# Regenerate all generated files
731
Zachary Wared6ff8a72018-02-17 17:58:57 -0600732regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar \
Pablo Galindo91759d92019-03-25 22:01:12 +0000733 regen-token regen-keyword regen-symbol regen-ast regen-importlib clinic
Victor Stinnera5c62a82017-05-03 18:21:48 +0200734
735############################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000736# Special rules for object files
737
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000738Modules/getbuildinfo.o: $(PARSER_OBJS) \
739 $(OBJECT_OBJS) \
740 $(PYTHON_OBJS) \
741 $(MODULE_OBJS) \
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000742 $(MODOBJS) \
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100743 $(DTRACE_OBJS) \
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000744 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl13039c82011-03-06 10:13:00 +0100745 $(CC) -c $(PY_CORE_CFLAGS) \
Ned Deily5c4b0d02017-03-04 00:19:55 -0500746 -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
747 -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
748 -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
Georg Brandl1ca2e792011-03-05 20:51:24 +0100749 -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000750
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000751Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000752 $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000753 -DPREFIX='"$(prefix)"' \
754 -DEXEC_PREFIX='"$(exec_prefix)"' \
755 -DVERSION='"$(VERSION)"' \
756 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000757 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000758
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000759Programs/python.o: $(srcdir)/Programs/python.c
760 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000761
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000762Programs/_testembed.o: $(srcdir)/Programs/_testembed.c
763 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/_testembed.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200764
Serhiy Storchaka8444ebb2013-10-26 11:18:42 +0300765Modules/_sre.o: $(srcdir)/Modules/_sre.c $(srcdir)/Modules/sre.h $(srcdir)/Modules/sre_constants.h $(srcdir)/Modules/sre_lib.h
766
Serhiy Storchaka7cf55992013-02-10 21:56:49 +0200767Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h
768
769Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h
770
771Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
772
773Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h
774
Barry Warsaw35f3a2c2010-09-03 18:30:30 +0000775Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile
776 $(CC) -c $(PY_CORE_CFLAGS) \
777 -DSOABI='"$(SOABI)"' \
778 -o $@ $(srcdir)/Python/dynload_shlib.c
779
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700780Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile
781 $(CC) -c $(PY_CORE_CFLAGS) \
782 -DSHLIB_EXT='"$(EXT_SUFFIX)"' \
783 -o $@ $(srcdir)/Python/dynload_hpux.c
784
Miss Islington (bot)bac6e632019-06-10 08:38:23 -0700785Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile $(srcdir)/Include/pydtrace.h
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000786 $(CC) -c $(PY_CORE_CFLAGS) \
787 -DABIFLAGS='"$(ABIFLAGS)"' \
doko@ubuntu.com55532312016-06-14 08:55:19 +0200788 $(MULTIARCH_CPPFLAGS) \
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000789 -o $@ $(srcdir)/Python/sysmodule.c
790
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000791$(IO_OBJS): $(IO_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000792
Victor Stinnera5c62a82017-05-03 18:21:48 +0200793.PHONY: regen-grammar
Pablo Galindo1f24a712019-03-01 15:34:44 -0800794regen-grammar: regen-token
Victor Stinnera5c62a82017-05-03 18:21:48 +0200795 # Regenerate Include/graminit.h and Python/graminit.c
796 # from Grammar/Grammar using pgen
797 @$(MKDIR_P) Include
Victor Stinner06d04e72019-04-26 13:09:47 +0200798 PYTHONPATH=$(srcdir) $(PYTHON_FOR_REGEN) -m Parser.pgen $(srcdir)/Grammar/Grammar \
Pablo Galindo1f24a712019-03-01 15:34:44 -0800799 $(srcdir)/Grammar/Tokens \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200800 $(srcdir)/Include/graminit.h.new \
801 $(srcdir)/Python/graminit.c.new
802 $(UPDATE_FILE) $(srcdir)/Include/graminit.h $(srcdir)/Include/graminit.h.new
803 $(UPDATE_FILE) $(srcdir)/Python/graminit.c $(srcdir)/Python/graminit.c.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200804
Victor Stinnera5c62a82017-05-03 18:21:48 +0200805.PHONY=regen-ast
806regen-ast:
807 # Regenerate Include/Python-ast.h using Parser/asdl_c.py -h
808 $(MKDIR_P) $(srcdir)/Include
809 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200810 -h $(srcdir)/Include/Python-ast.h.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200811 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200812 $(UPDATE_FILE) $(srcdir)/Include/Python-ast.h $(srcdir)/Include/Python-ast.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200813 # Regenerate Python/Python-ast.c using Parser/asdl_c.py -c
814 $(MKDIR_P) $(srcdir)/Python
815 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200816 -c $(srcdir)/Python/Python-ast.c.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200817 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200818 $(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000819
Victor Stinnera5c62a82017-05-03 18:21:48 +0200820.PHONY: regen-opcode
821regen-opcode:
822 # Regenerate Include/opcode.h from Lib/opcode.py
823 # using Tools/scripts/generate_opcode_h.py
824 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_opcode_h.py \
825 $(srcdir)/Lib/opcode.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200826 $(srcdir)/Include/opcode.h.new
827 $(UPDATE_FILE) $(srcdir)/Include/opcode.h $(srcdir)/Include/opcode.h.new
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000828
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200829.PHONY: regen-token
830regen-token:
831 # Regenerate Doc/library/token-list.inc from Grammar/Tokens
832 # using Tools/scripts/generate_token.py
833 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py rst \
834 $(srcdir)/Grammar/Tokens \
835 $(srcdir)/Doc/library/token-list.inc
836 # Regenerate Include/token.h from Grammar/Tokens
837 # using Tools/scripts/generate_token.py
838 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py h \
839 $(srcdir)/Grammar/Tokens \
840 $(srcdir)/Include/token.h
841 # Regenerate Parser/token.c from Grammar/Tokens
842 # using Tools/scripts/generate_token.py
843 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py c \
844 $(srcdir)/Grammar/Tokens \
845 $(srcdir)/Parser/token.c
846 # Regenerate Lib/token.py from Grammar/Tokens
847 # using Tools/scripts/generate_token.py
848 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py py \
849 $(srcdir)/Grammar/Tokens \
850 $(srcdir)/Lib/token.py
851
Pablo Galindo91759d92019-03-25 22:01:12 +0000852.PHONY: regen-keyword
853regen-keyword:
854 # Regenerate Lib/keyword.py from Grammar/Grammar and Grammar/Tokens
855 # using Parser/pgen
Victor Stinner06d04e72019-04-26 13:09:47 +0200856 PYTHONPATH=$(srcdir) $(PYTHON_FOR_REGEN) -m Parser.pgen.keywordgen $(srcdir)/Grammar/Grammar \
Pablo Galindo91759d92019-03-25 22:01:12 +0000857 $(srcdir)/Grammar/Tokens \
858 $(srcdir)/Lib/keyword.py.new
859 $(UPDATE_FILE) $(srcdir)/Lib/keyword.py $(srcdir)/Lib/keyword.py.new
860
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200861.PHONY: regen-symbol
862regen-symbol: $(srcdir)/Include/graminit.h
863 # Regenerate Lib/symbol.py from Include/graminit.h
864 # using Tools/scripts/generate_symbol_py.py
865 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_symbol_py.py \
866 $(srcdir)/Include/graminit.h \
867 $(srcdir)/Lib/symbol.py
868
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700869Python/compile.o Python/symtable.o Python/ast_unparse.o Python/ast.o Python/future.o Parser/parsetok.o: $(srcdir)/Include/graminit.h $(srcdir)/Include/Python-ast.h
Neil Schemenauer40417742001-02-27 02:45:36 +0000870
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000871Python/getplatform.o: $(srcdir)/Python/getplatform.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000872 $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000873
874Python/importdl.o: $(srcdir)/Python/importdl.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000875 $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000876
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000877Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
878 $(srcdir)/Objects/unicodetype_db.h
879
Christian Heimesda996832008-03-22 18:37:22 +0000880BYTESTR_DEPS = \
Christian Heimesda996832008-03-22 18:37:22 +0000881 $(srcdir)/Objects/stringlib/count.h \
882 $(srcdir)/Objects/stringlib/ctype.h \
Christian Heimesda996832008-03-22 18:37:22 +0000883 $(srcdir)/Objects/stringlib/fastsearch.h \
884 $(srcdir)/Objects/stringlib/find.h \
Antoine Pitrou74375fc2012-10-18 21:31:22 +0200885 $(srcdir)/Objects/stringlib/join.h \
Christian Heimesda996832008-03-22 18:37:22 +0000886 $(srcdir)/Objects/stringlib/partition.h \
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000887 $(srcdir)/Objects/stringlib/split.h \
Christian Heimesda996832008-03-22 18:37:22 +0000888 $(srcdir)/Objects/stringlib/stringdefs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200889 $(srcdir)/Objects/stringlib/transmogrify.h
Antoine Pitrou3e623242011-11-13 19:37:58 +0100890
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200891UNICODE_DEPS = \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100892 $(srcdir)/Objects/stringlib/asciilib.h \
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100893 $(srcdir)/Objects/stringlib/codecs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200894 $(srcdir)/Objects/stringlib/count.h \
895 $(srcdir)/Objects/stringlib/fastsearch.h \
896 $(srcdir)/Objects/stringlib/find.h \
897 $(srcdir)/Objects/stringlib/find_max_char.h \
898 $(srcdir)/Objects/stringlib/localeutil.h \
899 $(srcdir)/Objects/stringlib/partition.h \
Serhiy Storchakae2cef882013-04-13 22:45:04 +0300900 $(srcdir)/Objects/stringlib/replace.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200901 $(srcdir)/Objects/stringlib/split.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100902 $(srcdir)/Objects/stringlib/ucs1lib.h \
903 $(srcdir)/Objects/stringlib/ucs2lib.h \
904 $(srcdir)/Objects/stringlib/ucs4lib.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200905 $(srcdir)/Objects/stringlib/undef.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100906 $(srcdir)/Objects/stringlib/unicode_format.h \
907 $(srcdir)/Objects/stringlib/unicodedefs.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000908
Xiang Zhang3d40e372016-12-15 16:41:12 +0800909Objects/bytes_methods.o: $(srcdir)/Objects/bytes_methods.c $(BYTESTR_DEPS)
Benjamin Peterson9ae32202009-01-13 21:53:28 +0000910Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Victor Stinner4e314432010-10-07 21:45:39 +0000911Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000912
Antoine Pitrou3e623242011-11-13 19:37:58 +0100913Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000914
Benjamin Peterson41356f92016-09-08 13:19:14 -0700915Objects/odictobject.o: $(srcdir)/Objects/dict-common.h
916Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h $(srcdir)/Objects/dict-common.h
Martin v. Löwis6fb44722011-09-25 17:36:11 +0200917Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
918
Victor Stinnera5c62a82017-05-03 18:21:48 +0200919.PHONY: regen-opcode-targets
920regen-opcode-targets:
921 # Regenerate Python/opcode_targets.h from Lib/opcode.py
922 # using Python/makeopcodetargets.py
923 $(PYTHON_FOR_REGEN) $(srcdir)/Python/makeopcodetargets.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200924 $(srcdir)/Python/opcode_targets.h.new
925 $(UPDATE_FILE) $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/opcode_targets.h.new
Antoine Pitroub52ec782009-01-25 16:34:23 +0000926
Inada Naoki001fee12019-02-20 10:00:09 +0900927Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/ceval_gil.h \
928 $(srcdir)/Python/condvar.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000929
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300930Python/frozen.o: $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib_external.h \
931 $(srcdir)/Python/importlib_zipimport.h
Antoine Pitroua4932352012-04-16 18:29:28 +0200932
Łukasz Langaa785c872016-09-09 17:37:37 -0700933# Generate DTrace probe macros, then rename them (PYTHON_ -> PyDTrace_) to
934# follow our naming conventions. dtrace(1) uses the output filename to generate
935# an include guard, so we can't use a pipeline to transform its output.
936Include/pydtrace_probes.h: $(srcdir)/Include/pydtrace.d
stratakisf6eae5b2017-05-10 17:08:15 +0200937 $(MKDIR_P) Include
Łukasz Langaa785c872016-09-09 17:37:37 -0700938 $(DTRACE) $(DFLAGS) -o $@ -h -s $<
939 : sed in-place edit with POSIX-only tools
940 sed 's/PYTHON_/PyDTrace_/' $@ > $@.tmp
941 mv $@.tmp $@
942
Miss Islington (bot)bac6e632019-06-10 08:38:23 -0700943Python/ceval.o: $(srcdir)/Include/pydtrace.h
944Python/import.o: $(srcdir)/Include/pydtrace.h
945Modules/gcmodule.o: $(srcdir)/Include/pydtrace.h
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100946
Łukasz Langaa785c872016-09-09 17:37:37 -0700947Python/pydtrace.o: $(srcdir)/Include/pydtrace.d $(DTRACE_DEPS)
948 $(DTRACE) $(DFLAGS) -o $@ -G -s $< $(DTRACE_DEPS)
949
Trent Nelson9effe692012-10-16 08:41:32 -0400950Objects/typeobject.o: Objects/typeslots.inc
Victor Stinnera5c62a82017-05-03 18:21:48 +0200951
952.PHONY: regen-typeslots
953regen-typeslots:
954 # Regenerate Objects/typeslots.inc from Include/typeslotsh
955 # using Objects/typeslots.py
956 $(PYTHON_FOR_REGEN) $(srcdir)/Objects/typeslots.py \
957 < $(srcdir)/Include/typeslots.h \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200958 $(srcdir)/Objects/typeslots.inc.new
959 $(UPDATE_FILE) $(srcdir)/Objects/typeslots.inc $(srcdir)/Objects/typeslots.inc.new
Eric Smith8c663262007-08-25 02:26:07 +0000960
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000961############################################################################
962# Header files
963
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000964PYTHON_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200965 $(srcdir)/Include/Python.h \
966 $(srcdir)/Include/abstract.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200967 $(srcdir)/Include/asdl.h \
968 $(srcdir)/Include/ast.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200969 $(srcdir)/Include/bitset.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700970 $(srcdir)/Include/bltinmodule.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200971 $(srcdir)/Include/boolobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200972 $(srcdir)/Include/bytearrayobject.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700973 $(srcdir)/Include/bytes_methods.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200974 $(srcdir)/Include/bytesobject.h \
975 $(srcdir)/Include/cellobject.h \
976 $(srcdir)/Include/ceval.h \
977 $(srcdir)/Include/classobject.h \
978 $(srcdir)/Include/code.h \
979 $(srcdir)/Include/codecs.h \
980 $(srcdir)/Include/compile.h \
981 $(srcdir)/Include/complexobject.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -0700982 $(srcdir)/Include/context.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200983 $(srcdir)/Include/descrobject.h \
984 $(srcdir)/Include/dictobject.h \
985 $(srcdir)/Include/dtoa.h \
986 $(srcdir)/Include/dynamic_annotations.h \
987 $(srcdir)/Include/enumobject.h \
988 $(srcdir)/Include/errcode.h \
989 $(srcdir)/Include/eval.h \
990 $(srcdir)/Include/fileobject.h \
991 $(srcdir)/Include/fileutils.h \
992 $(srcdir)/Include/floatobject.h \
993 $(srcdir)/Include/frameobject.h \
994 $(srcdir)/Include/funcobject.h \
995 $(srcdir)/Include/genobject.h \
996 $(srcdir)/Include/import.h \
Eric Snowc11183c2019-03-15 16:35:46 -0600997 $(srcdir)/Include/interpreteridobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200998 $(srcdir)/Include/intrcheck.h \
999 $(srcdir)/Include/iterobject.h \
1000 $(srcdir)/Include/listobject.h \
1001 $(srcdir)/Include/longintrepr.h \
1002 $(srcdir)/Include/longobject.h \
1003 $(srcdir)/Include/marshal.h \
1004 $(srcdir)/Include/memoryobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001005 $(srcdir)/Include/methodobject.h \
1006 $(srcdir)/Include/modsupport.h \
1007 $(srcdir)/Include/moduleobject.h \
Barry Warsaw409da152012-06-03 16:18:47 -04001008 $(srcdir)/Include/namespaceobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001009 $(srcdir)/Include/node.h \
1010 $(srcdir)/Include/object.h \
1011 $(srcdir)/Include/objimpl.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -07001012 $(srcdir)/Include/odictobject.h \
Victor Stinnera5c62a82017-05-03 18:21:48 +02001013 $(srcdir)/Include/opcode.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001014 $(srcdir)/Include/osdefs.h \
Brett Cannon82029ac2016-06-12 13:21:22 -07001015 $(srcdir)/Include/osmodule.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001016 $(srcdir)/Include/patchlevel.h \
Antoine Pitrou91f43802019-05-26 17:10:09 +02001017 $(srcdir)/Include/picklebufobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001018 $(srcdir)/Include/pyarena.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001019 $(srcdir)/Include/pycapsule.h \
1020 $(srcdir)/Include/pyctype.h \
1021 $(srcdir)/Include/pydebug.h \
Łukasz Langaa785c872016-09-09 17:37:37 -07001022 $(srcdir)/Include/pydtrace.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001023 $(srcdir)/Include/pyerrors.h \
1024 $(srcdir)/Include/pyfpe.h \
Christian Heimes985ecdc2013-11-20 11:46:18 +01001025 $(srcdir)/Include/pyhash.h \
Nick Coghland6009512014-11-20 21:39:37 +10001026 $(srcdir)/Include/pylifecycle.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -07001027 $(srcdir)/Include/pymacconfig.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001028 $(srcdir)/Include/pymacro.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -07001029 $(srcdir)/Include/pymath.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001030 $(srcdir)/Include/pymem.h \
1031 $(srcdir)/Include/pyport.h \
1032 $(srcdir)/Include/pystate.h \
1033 $(srcdir)/Include/pystrcmp.h \
Gregory P. Smith8cb65692015-04-25 23:22:26 +00001034 $(srcdir)/Include/pystrhex.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -07001035 $(srcdir)/Include/pystrtod.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001036 $(srcdir)/Include/pythonrun.h \
1037 $(srcdir)/Include/pythread.h \
1038 $(srcdir)/Include/pytime.h \
1039 $(srcdir)/Include/rangeobject.h \
1040 $(srcdir)/Include/setobject.h \
1041 $(srcdir)/Include/sliceobject.h \
1042 $(srcdir)/Include/structmember.h \
1043 $(srcdir)/Include/structseq.h \
1044 $(srcdir)/Include/symtable.h \
1045 $(srcdir)/Include/sysmodule.h \
Miss Islington (bot)248387f2019-09-09 06:28:07 -07001046 $(srcdir)/Include/token.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001047 $(srcdir)/Include/traceback.h \
Victor Stinner6279c1c2018-10-25 15:54:13 +02001048 $(srcdir)/Include/tracemalloc.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001049 $(srcdir)/Include/tupleobject.h \
1050 $(srcdir)/Include/ucnhash.h \
1051 $(srcdir)/Include/unicodeobject.h \
1052 $(srcdir)/Include/warnings.h \
1053 $(srcdir)/Include/weakrefobject.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001054 \
Georg Brandl86def6c2008-01-21 20:36:10 +00001055 pyconfig.h \
Charles-François Natali46c686f2013-12-15 19:09:00 +01001056 $(PARSER_HEADERS) \
Victor Stinnera5c62a82017-05-03 18:21:48 +02001057 $(srcdir)/Include/Python-ast.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001058 \
Victor Stinner54ba5562018-11-28 13:01:32 +01001059 $(srcdir)/Include/cpython/abstract.h \
1060 $(srcdir)/Include/cpython/dictobject.h \
Steve Dowerb82e17e2019-05-23 08:45:22 -07001061 $(srcdir)/Include/cpython/fileobject.h \
Victor Stinner331a6a52019-05-27 16:39:22 +02001062 $(srcdir)/Include/cpython/initconfig.h \
Eric Snowc11183c2019-03-15 16:35:46 -06001063 $(srcdir)/Include/cpython/interpreteridobject.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001064 $(srcdir)/Include/cpython/object.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001065 $(srcdir)/Include/cpython/objimpl.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001066 $(srcdir)/Include/cpython/pyerrors.h \
1067 $(srcdir)/Include/cpython/pylifecycle.h \
Victor Stinneraba7d662019-04-15 17:29:31 +02001068 $(srcdir)/Include/cpython/pymem.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001069 $(srcdir)/Include/cpython/pystate.h \
Steve Dowerb82e17e2019-05-23 08:45:22 -07001070 $(srcdir)/Include/cpython/sysmodule.h \
Victor Stinnerfd1e0e92019-05-20 02:22:32 +02001071 $(srcdir)/Include/cpython/traceback.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001072 $(srcdir)/Include/cpython/tupleobject.h \
1073 $(srcdir)/Include/cpython/unicodeobject.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001074 \
Victor Stinnere281f7d2018-11-01 02:30:36 +01001075 $(srcdir)/Include/internal/pycore_accu.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001076 $(srcdir)/Include/internal/pycore_atomic.h \
1077 $(srcdir)/Include/internal/pycore_ceval.h \
Inada Naoki91234a12019-06-03 21:30:58 +09001078 $(srcdir)/Include/internal/pycore_code.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001079 $(srcdir)/Include/internal/pycore_condvar.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001080 $(srcdir)/Include/internal/pycore_context.h \
Victor Stinner984061e2018-11-23 12:30:40 +01001081 $(srcdir)/Include/internal/pycore_fileutils.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001082 $(srcdir)/Include/internal/pycore_getopt.h \
1083 $(srcdir)/Include/internal/pycore_gil.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001084 $(srcdir)/Include/internal/pycore_hamt.h \
Victor Stinner331a6a52019-05-27 16:39:22 +02001085 $(srcdir)/Include/internal/pycore_initconfig.h \
Victor Stinner984061e2018-11-23 12:30:40 +01001086 $(srcdir)/Include/internal/pycore_object.h \
Victor Stinnera1c249c2018-11-01 03:15:58 +01001087 $(srcdir)/Include/internal/pycore_pathconfig.h \
Victor Stinner438a12d2019-05-24 17:01:38 +02001088 $(srcdir)/Include/internal/pycore_pyerrors.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001089 $(srcdir)/Include/internal/pycore_pyhash.h \
1090 $(srcdir)/Include/internal/pycore_pylifecycle.h \
1091 $(srcdir)/Include/internal/pycore_pymem.h \
1092 $(srcdir)/Include/internal/pycore_pystate.h \
Victor Stinnerfd1e0e92019-05-20 02:22:32 +02001093 $(srcdir)/Include/internal/pycore_traceback.h \
Victor Stinnerec13b932018-11-25 23:56:17 +01001094 $(srcdir)/Include/internal/pycore_tupleobject.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001095 $(srcdir)/Include/internal/pycore_warnings.h \
Łukasz Langaa785c872016-09-09 17:37:37 -07001096 $(DTRACE_HEADERS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001097
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001098$(LIBRARY_OBJS) $(MODOBJS) Programs/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +00001099
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001100
1101######################################################################
1102
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001103TESTOPTS= $(EXTRATESTOPTS)
1104TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS)
1105TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py
Victor Stinner2f462a62016-09-12 13:04:17 +02001106TESTTIMEOUT= 1200
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001107
Victor Stinnera3a01a22017-08-18 11:31:52 +02001108.PHONY: test testall testuniversal buildbottest pythoninfo
1109
Victor Stinner2ec45452019-06-24 12:51:47 +02001110# Remove "test_python_*" directories of previous failed test jobs.
1111# Pass TESTOPTS options because it can contain --tempdir option.
1112cleantest: build_all
1113 $(TESTRUNNER) $(TESTOPTS) --cleanup
1114
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001115# Run a basic set of regression tests.
1116# This excludes some tests that are particularly resource-intensive.
torsavaa1054c32017-05-05 17:35:50 +02001117test: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001118 $(TESTRUNNER) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001119
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001120# Run the full test suite twice - once without .pyc files, and once with.
1121# In the past, we've had problems where bugs in the marshalling or
1122# elsewhere caused bytecode read from .pyc files to behave differently
1123# than bytecode generated directly from a .py source file. Sometimes
1124# the bytecode read from a .pyc file had the bug, sometimes the directly
1125# generated bytecode. This is sometimes a very shy bug needing a lot of
1126# sample data.
torsavaa1054c32017-05-05 17:35:50 +02001127testall: @DEF_MAKE_RULE@ platform
Skip Montanaro446ad712003-05-06 15:30:20 +00001128 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001129 $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +00001130 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001131 -$(TESTRUNNER) -u all $(TESTOPTS)
1132 $(TESTRUNNER) -u all $(TESTOPTS)
Skip Montanaro446ad712003-05-06 15:30:20 +00001133
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001134# Run the test suite for both architectures in a Universal build on OSX.
1135# Must be run on an Intel box.
torsavaa1054c32017-05-05 17:35:50 +02001136testuniversal: @DEF_MAKE_RULE@ platform
Martin Panteradab00f2016-09-22 09:34:43 +00001137 @if [ `arch` != 'i386' ]; then \
Thomas Wouters477c8d52006-05-27 19:21:47 +00001138 echo "This can only be used on OSX/i386" ;\
1139 exit 1 ;\
1140 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001141 $(TESTRUNNER) -u all $(TESTOPTS)
1142 $(RUNSHARED) /usr/libexec/oah/translate \
1143 ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001144
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001145# Like testall, but with only one pass and without multiple processes.
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001146# Run an optional script to include information about the build environment.
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)255295f2016-09-09 12:22:49 -07001147buildbottest: build_all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +00001148 -@if which pybuildbot.identify >/dev/null 2>&1; then \
1149 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
1150 fi
Victor Stinner00561182017-06-30 16:44:08 +02001151 $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --timeout=$(TESTTIMEOUT) $(TESTOPTS)
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +00001152
Victor Stinnera3a01a22017-08-18 11:31:52 +02001153pythoninfo: build_all
1154 $(RUNSHARED) ./$(BUILDPYTHON) -m test.pythoninfo
1155
Jeremy Hyltonfdd6dee2009-03-27 21:24:45 +00001156QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
1157 test_multibytecodec test_urllib2_localnet test_itertools \
Richard Oudkerk84ed9a62013-08-14 15:35:41 +01001158 test_multiprocessing_fork test_multiprocessing_spawn \
1159 test_multiprocessing_forkserver \
1160 test_mailbox test_socket test_poll \
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001161 test_select test_zipfile test_concurrent_futures
torsavaa1054c32017-05-05 17:35:50 +02001162quicktest: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001163 $(TESTRUNNER) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +00001164
Christian Heimesd3b9f972017-09-06 18:59:22 -07001165# SSL tests
1166.PHONY: multisslcompile multissltest
1167multisslcompile: build_all
Christian Heimesced9cb52018-01-16 21:02:26 +01001168 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py --steps=modules
Christian Heimesd3b9f972017-09-06 18:59:22 -07001169
1170multissltest: build_all
1171 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py
Barry Warsaw42119252001-03-03 04:14:21 +00001172
Ned Deily322f5ba2013-11-21 23:01:59 -08001173install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@
1174 if test "x$(ENSUREPIP)" != "xno" ; then \
1175 case $(ENSUREPIP) in \
1176 upgrade) ensurepip="--upgrade" ;; \
1177 install|*) ensurepip="" ;; \
1178 esac; \
1179 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1180 $$ensurepip --root=$(DESTDIR)/ ; \
1181 fi
Guido van Rossumdc21db32008-04-07 18:37:41 +00001182
Ned Deily322f5ba2013-11-21 23:01:59 -08001183altinstall: commoninstall
1184 if test "x$(ENSUREPIP)" != "xno" ; then \
1185 case $(ENSUREPIP) in \
1186 upgrade) ensurepip="--altinstall --upgrade" ;; \
1187 install|*) ensurepip="--altinstall" ;; \
1188 esac; \
1189 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1190 $$ensurepip --root=$(DESTDIR)/ ; \
1191 fi
1192
xdegaye0de92852017-11-08 16:03:58 +01001193commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \
Ned Deily322f5ba2013-11-21 23:01:59 -08001194 altbininstall libinstall inclinstall libainstall \
1195 sharedinstall oldsharedinstall altmaninstall \
1196 @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001197
1198# Install shared libraries enabled by Setup
1199DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
1200
1201oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
1202 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +00001203 if test $$i != X; then \
1204 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001205 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +00001206 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001207 done
1208
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001209$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001210 @for i in $(DESTDIRS); \
1211 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001212 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001213 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001214 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001215 else true; \
1216 fi; \
1217 done
1218
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001219# Install the interpreter with $(VERSION) affixed
1220# This goes into $(exec_prefix)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001221altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
Martin v. Löwisd8a20d22002-05-08 08:59:59 +00001222 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001223 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001224 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001225 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001226 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001227 else true; \
1228 fi; \
1229 done
Ned Deilyb8f944f2013-11-21 22:42:25 -08001230 if test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
1231 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1232 else \
1233 $(INSTALL_PROGRAM) $(STRIPFLAG) Mac/pythonw $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1234 fi
Barry Warsaw771d33e2010-12-13 18:04:23 +00001235 -if test "$(VERSION)" != "$(LDVERSION)"; then \
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001236 if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001237 then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1238 fi; \
1239 (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \
Barry Warsawad6f8772010-12-11 21:32:01 +00001240 fi
Ned Deily78094ac2013-07-08 14:33:03 -07001241 if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
Georg Brandl1f01deb2009-01-03 22:47:39 +00001242 if test -n "$(DLLLIBRARY)" ; then \
1243 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001244 else \
Georg Brandlb1441c72009-01-03 22:33:39 +00001245 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
1246 if test $(LDLIBRARY) != $(INSTSONAME); then \
1247 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
Martin v. Löwise3be8602003-11-18 19:54:20 +00001248 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001249 fi; \
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001250 if test -n "$(PY3LIBRARY)"; then \
1251 $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \
1252 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001253 else true; \
1254 fi
Ned Deilyb8f944f2013-11-21 22:42:25 -08001255 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1256 rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
1257 lipo $(LIPO_32BIT_FLAGS) \
1258 -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
1259 $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1260 fi
Benjamin Peterson932073a2009-05-23 16:14:33 +00001261
1262bininstall: altbininstall
Victor Stinner8de795f2015-12-13 21:26:17 +01001263 if test ! -d $(DESTDIR)$(LIBPC); then \
Victor Stinnerc2021552015-12-13 21:20:36 +01001264 echo "Creating directory $(LIBPC)"; \
1265 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \
1266 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001267 -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
1268 then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001269 else true; \
1270 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001271 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
Barry Warsaw771d33e2010-12-13 18:04:23 +00001272 -if test "$(VERSION)" != "$(LDVERSION)"; then \
1273 rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
1274 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
1275 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
1276 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
Victor Stinnerbc66fac2019-05-24 18:27:13 +02001277 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION)-embed.pc; \
1278 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python-$(LDVERSION)-embed.pc); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001279 fi
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001280 -rm -f $(DESTDIR)$(BINDIR)/python3-config
1281 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
Antoine Pitrou20327222009-05-24 20:39:11 +00001282 -rm -f $(DESTDIR)$(LIBPC)/python3.pc
1283 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc)
Victor Stinner0a8e5722019-05-23 03:30:23 +02001284 -rm -f $(DESTDIR)$(LIBPC)/python3-embed.pc
1285 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python3-embed.pc)
Georg Brandlff52f762010-12-28 09:51:43 +00001286 -rm -f $(DESTDIR)$(BINDIR)/idle3
1287 (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3)
1288 -rm -f $(DESTDIR)$(BINDIR)/pydoc3
1289 (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3)
1290 -rm -f $(DESTDIR)$(BINDIR)/2to3
1291 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001292 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1293 rm -f $(DESTDIR)$(BINDIR)/python3-32$(EXE); \
1294 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-32$(EXE) python3-32$(EXE)) \
1295 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001296
Ned Deilya48b61f2013-02-08 22:53:51 -08001297# Install the versioned manual page
1298altmaninstall:
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001299 @for i in $(MANDIR) $(MANDIR)/man1; \
1300 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001301 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001302 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001303 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001304 else true; \
1305 fi; \
1306 done
1307 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +00001308 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001309
Ned Deilya48b61f2013-02-08 22:53:51 -08001310# Install the unversioned manual page
1311maninstall: altmaninstall
1312 -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1
1313 (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1)
1314
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001315# Install the library
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001316XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Benjamin Petersoncb6dbe52010-03-18 21:36:06 +00001317LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
Victor Stinner5b326592011-05-25 01:15:59 +02001318 tkinter/test/test_ttk site-packages test \
Serhiy Storchakac3a9b352013-10-14 21:18:50 +03001319 test/audiodata \
Ned Deilye2d51902011-07-04 19:06:20 -07001320 test/capath test/data \
Stefan Behnel0d5864f2019-05-02 10:35:02 +02001321 test/cjkencodings test/decimaltestdata \
1322 test/xmltestdata test/xmltestdata/c14n-20 \
Łukasz Langaa785c872016-09-09 17:37:37 -07001323 test/dtracedata \
Ned Deily914db0f2015-02-08 15:48:40 +11001324 test/eintrdata \
Ned Deily6bb21c42014-02-02 13:59:49 -08001325 test/imghdrdata \
Victor Stinnerdc096552015-11-22 15:18:40 +01001326 test/libregrtest \
Ned Deilycdc75d92013-07-30 14:30:15 -07001327 test/subprocessdata test/sndhdrdata test/support \
Alexander Belopolskye8f58322010-10-15 16:28:20 +00001328 test/tracedmodules test/encoded_modules \
Ned Deily7c562f62014-12-13 02:05:15 -08001329 test/test_import \
1330 test/test_import/data \
1331 test/test_import/data/circular_imports \
1332 test/test_import/data/circular_imports/subpkg \
Serhiy Storchakad5ed47d2017-07-27 12:24:36 +03001333 test/test_import/data/package \
1334 test/test_import/data/package2 \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001335 importlib \
Chih-Hsuan Yenc3738cf2019-05-25 16:09:35 +08001336 importlib/metadata \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001337 test/test_importlib \
1338 test/test_importlib/builtin \
Jason R. Coombsf7fba6c2019-05-25 10:00:21 -04001339 test/test_importlib/data \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001340 test/test_importlib/data01 \
1341 test/test_importlib/data01/subdirectory \
1342 test/test_importlib/data02 \
1343 test/test_importlib/data02/one \
1344 test/test_importlib/data02/two \
1345 test/test_importlib/data03 \
1346 test/test_importlib/data03/namespace \
1347 test/test_importlib/data03/namespace/portion1 \
1348 test/test_importlib/data03/namespace/portion2 \
1349 test/test_importlib/extension \
1350 test/test_importlib/frozen \
1351 test/test_importlib/import_ \
Ned Deily490e53b2014-04-08 18:54:49 -07001352 test/test_importlib/namespace_pkgs \
1353 test/test_importlib/namespace_pkgs/both_portions \
1354 test/test_importlib/namespace_pkgs/both_portions/foo \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001355 test/test_importlib/namespace_pkgs/module_and_namespace_package \
1356 test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test \
Ned Deily490e53b2014-04-08 18:54:49 -07001357 test/test_importlib/namespace_pkgs/not_a_namespace_pkg \
1358 test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo \
1359 test/test_importlib/namespace_pkgs/portion1 \
1360 test/test_importlib/namespace_pkgs/portion1/foo \
1361 test/test_importlib/namespace_pkgs/portion2 \
1362 test/test_importlib/namespace_pkgs/portion2/foo \
1363 test/test_importlib/namespace_pkgs/project1 \
1364 test/test_importlib/namespace_pkgs/project1/parent \
1365 test/test_importlib/namespace_pkgs/project1/parent/child \
1366 test/test_importlib/namespace_pkgs/project2 \
1367 test/test_importlib/namespace_pkgs/project2/parent \
1368 test/test_importlib/namespace_pkgs/project2/parent/child \
1369 test/test_importlib/namespace_pkgs/project3 \
1370 test/test_importlib/namespace_pkgs/project3/parent \
1371 test/test_importlib/namespace_pkgs/project3/parent/child \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001372 test/test_importlib/source \
1373 test/test_importlib/zipdata01 \
1374 test/test_importlib/zipdata02 \
Miss Islington (bot)7acb22e2019-09-11 04:09:53 -07001375 test/ziptestdata \
Ned Deily3c97e462013-10-17 18:08:00 -07001376 asyncio \
1377 test/test_asyncio \
Georg Brandl53291232011-02-23 07:30:12 +00001378 collections concurrent concurrent/futures encodings \
R David Murray92cafb82011-06-17 11:41:49 -04001379 email email/mime test/test_email test/test_email/data \
Nick Coghland0cf0632013-11-11 22:11:55 +10001380 ensurepip ensurepip/_bundled \
Ezio Melotti66f2ea02013-08-08 15:03:45 +03001381 html json test/test_json http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001382 sqlite3 sqlite3/test \
Georg Brandl1158a332009-06-04 09:30:30 +00001383 logging csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +00001384 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001385 lib2to3/tests/data lib2to3/tests/data/fixers \
1386 lib2to3/tests/data/fixers/myfixes \
Ned Deilyc3909e52013-11-03 20:08:53 -08001387 ctypes ctypes/test ctypes/macholib \
1388 idlelib idlelib/Icons idlelib/idle_test \
Fred Drakee612c8e2005-01-19 06:24:58 +00001389 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Zachary Warede354bc2016-08-30 02:12:27 -05001390 test/test_tools test/test_warnings test/test_warnings/data \
Alexander Belopolskyea13d9d2010-11-01 17:39:37 +00001391 turtledemo \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +00001392 multiprocessing multiprocessing/dummy \
Ned Deilye8b416e2012-03-22 13:34:11 -07001393 unittest unittest/test unittest/test/testmock \
Vinay Sajip5fd832b2017-01-13 19:08:47 +00001394 venv venv/scripts venv/scripts/common venv/scripts/posix \
Zachary Warec4b53af2016-09-09 17:59:49 -07001395 curses pydoc_data
1396libinstall: build_all $(srcdir)/Modules/xxmodule.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001397 @for i in $(SCRIPTDIR) $(LIBDEST); \
1398 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001399 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001400 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001401 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001402 else true; \
1403 fi; \
1404 done
1405 @for d in $(LIBSUBDIRS); \
1406 do \
1407 a=$(srcdir)/Lib/$$d; \
1408 if test ! -d $$a; then continue; else true; fi; \
1409 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001410 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001411 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001412 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001413 else true; \
1414 fi; \
1415 done
doko@ubuntu.com55532312016-06-14 08:55:19 +02001416 @for i in $(srcdir)/Lib/*.py; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001417 do \
1418 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001419 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001420 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001421 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001422 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001423 echo $(INSTALL_DATA) $$i $(LIBDEST); \
1424 fi; \
1425 done
1426 @for d in $(LIBSUBDIRS); \
1427 do \
1428 a=$(srcdir)/Lib/$$d; \
1429 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001430 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001431 b=$(LIBDEST)/$$d; \
1432 for i in $$a/*; \
1433 do \
1434 case $$i in \
1435 *CVS) ;; \
1436 *.py[co]) ;; \
1437 *.orig) ;; \
1438 *~) ;; \
1439 *) \
1440 if test -d $$i; then continue; fi; \
1441 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001442 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001443 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001444 else \
1445 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001446 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001447 fi;; \
1448 esac; \
1449 done; \
1450 done
Zachary Warec4b53af2016-09-09 17:59:49 -07001451 $(INSTALL_DATA) `cat pybuilddir.txt`/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py \
1452 $(DESTDIR)$(LIBDEST); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001453 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Ned Deily58f27b22011-06-28 00:42:50 -07001454 if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
1455 $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
1456 $(DESTDIR)$(LIBDEST)/distutils/tests ; \
1457 fi
Guido van Rossum827bfd02007-07-15 13:12:42 +00001458 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001459 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001460 -j0 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001461 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001462 $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +00001463 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001464 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001465 -j0 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001466 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001467 $(DESTDIR)$(LIBDEST)
Brett Cannonf299abd2015-04-13 14:21:02 -04001468 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1469 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001470 -j0 -d $(LIBDEST) -f \
Brett Cannonf299abd2015-04-13 14:21:02 -04001471 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
1472 $(DESTDIR)$(LIBDEST)
1473 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001474 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001475 -j0 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001476 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001477 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001478 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001479 -j0 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001480 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Ned Deily4725b132012-09-08 19:04:47 -07001481 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Brett Cannonf299abd2015-04-13 14:21:02 -04001482 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001483 -j0 -d $(LIBDEST)/site-packages -f \
Brett Cannonf299abd2015-04-13 14:21:02 -04001484 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
1485 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Ned Deily4725b132012-09-08 19:04:47 -07001486 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
1487 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1488 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001489
Victor Stinner01f073f2019-04-26 17:55:17 +02001490# bpo-21536: Misc/python-config.sh is generated in the build directory
1491# from $(srcdir)Misc/python-config.sh.in.
1492python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh
Martin Panteradab00f2016-09-22 09:34:43 +00001493 @ # Substitution happens here, as the completely-expanded BINDIR
1494 @ # is not available in configure
doko@python.org87421192013-01-26 11:39:31 +01001495 sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py
Martin Panteradab00f2016-09-22 09:34:43 +00001496 @ # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR}
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001497 LC_ALL=C sed -e 's,\$$(\([A-Za-z0-9_]*\)),\$$\{\1\},g' < Misc/python-config.sh >python-config
Martin Panteradab00f2016-09-22 09:34:43 +00001498 @ # On Darwin, always use the python version of the script, the shell
1499 @ # version doesn't use the compiler customizations that are provided
1500 @ # in python (_osx_support.py).
1501 @if test `uname -s` = Darwin; then \
doko@ubuntu.com0df35b02013-08-01 15:32:49 +02001502 cp python-config.py python-config; \
1503 fi
1504
Collin Winterbf199072010-03-19 21:17:17 +00001505
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001506# Install the include files
1507INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
1508inclinstall:
1509 @for i in $(INCLDIRSTOMAKE); \
1510 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001511 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001512 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001513 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001514 else true; \
1515 fi; \
1516 done
Victor Stinnere4211062018-11-23 17:00:00 +01001517 @if test ! -d $(DESTDIR)$(INCLUDEPY)/cpython; then \
1518 echo "Creating directory $(DESTDIR)$(INCLUDEPY)/cpython"; \
1519 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/cpython; \
1520 else true; \
1521 fi
Victor Stinnerf653fd42018-11-23 16:30:12 +01001522 @if test ! -d $(DESTDIR)$(INCLUDEPY)/internal; then \
1523 echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal"; \
1524 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
1525 else true; \
1526 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001527 @for i in $(srcdir)/Include/*.h; \
1528 do \
1529 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001530 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001531 done
Victor Stinnere4211062018-11-23 17:00:00 +01001532 @for i in $(srcdir)/Include/cpython/*.h; \
1533 do \
1534 echo $(INSTALL_DATA) $$i $(INCLUDEPY)/cpython; \
1535 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/cpython; \
1536 done
Victor Stinnerf653fd42018-11-23 16:30:12 +01001537 @for i in $(srcdir)/Include/internal/*.h; \
1538 do \
1539 echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
1540 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
1541 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001542 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001543
1544# Install the library and miscellaneous stuff needed for extending/embedding
1545# This goes into $(exec_prefix)
doko@ubuntu.com100aa182015-04-13 22:10:21 +02001546LIBPL= @LIBPL@
Antoine Pitrou20327222009-05-24 20:39:11 +00001547
1548# pkgconfig directory
1549LIBPC= $(LIBDIR)/pkgconfig
1550
torsavaa1054c32017-05-05 17:35:50 +02001551libainstall: @DEF_MAKE_RULE@ python-config
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001552 @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001553 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001554 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001555 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001556 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001557 else true; \
1558 fi; \
1559 done
Martin v. Löwis1142de32002-03-29 16:28:31 +00001560 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +00001561 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07001562 if test "$(SHLIB_SUFFIX)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001563 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001564 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001565 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001566 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001567 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001568 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001569 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001570 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001571 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001572 $(INSTALL_DATA) Programs/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001573 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
1574 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
Antoine Pitrou961d54c2018-07-16 19:03:03 +02001575 $(INSTALL_DATA) $(srcdir)/Modules/Setup $(DESTDIR)$(LIBPL)/Setup
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001576 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
Antoine Pitrou20327222009-05-24 20:39:11 +00001577 $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
Victor Stinner0a8e5722019-05-23 03:30:23 +02001578 $(INSTALL_DATA) Misc/python-embed.pc $(DESTDIR)$(LIBPC)/python-$(VERSION)-embed.pc
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001579 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
1580 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
doko@python.org87421192013-01-26 11:39:31 +01001581 $(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001582 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Martin Panter5401e872016-08-12 13:21:05 +00001583 @if [ -s Modules/python.exp -a \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001584 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
1585 echo; echo "Installing support files for building shared extension modules on AIX:"; \
Martin Panter5401e872016-08-12 13:21:05 +00001586 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001587 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001588 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001589 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001590 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001591 echo "$(LIBPL)/makexp_aix"; \
Martin Panter395733d2016-11-20 07:56:37 +00001592 $(INSTALL_SCRIPT) Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001593 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001594 echo "$(LIBPL)/ld_so_aix"; \
1595 echo; echo "See Misc/AIX-NOTES for details."; \
1596 else true; \
1597 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001598
1599# Install the dynamically loadable modules
1600# This goes into $(exec_prefix)
Benjamin Petersonbbda0c52010-07-17 20:39:23 +00001601sharedinstall: sharedmods
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001602 $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001603 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +00001604 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001605 --install-platlib=$(DESTSHARED) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001606 --root=$(DESTDIR)/
Xavier de Gaye1c17e7f2016-10-28 11:22:05 +02001607 -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py
Trent Nelsonc101bf32012-10-16 08:13:12 -04001608 -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001609
Jack Jansencb4321e2002-08-09 00:18:21 +00001610# Here are a couple of targets for MacOSX again, to install a full
1611# framework-based Python. frameworkinstall installs everything, the
1612# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001613# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +00001614#
Thomas Wouters477c8d52006-05-27 19:21:47 +00001615#
Martin Panter46f50722016-05-26 05:35:26 +00001616# This target is here for backward compatibility, previous versions of Python
Thomas Wouters477c8d52006-05-27 19:21:47 +00001617# hadn't integrated framework installation in the normal install process.
1618frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +00001619
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001620# On install, we re-make the framework
1621# structure in the install location, /Library/Frameworks/ or the argument to
1622# --enable-framework. If --enable-framework has been specified then we have
1623# automatically set prefix to the location deep down in the framework, so we
1624# only have to cater for the structural bits of the framework.
1625
Jack Jansencb4321e2002-08-09 00:18:21 +00001626frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1627
1628frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001629 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001630 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001631 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001632 else true; \
1633 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001634 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001635 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001636 echo "Creating directory $(DESTDIR)$$i"; \
1637 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001638 else true; \
1639 fi; \
1640 done
Ronald Oussoren0499d0b2010-12-07 14:41:05 +00001641 $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001642 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 +00001643 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001644 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001645 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1646 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001647 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001648
Jack Jansencb4321e2002-08-09 00:18:21 +00001649# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001650# Install a number of symlinks to keep software that expects a normal unix
1651# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001652frameworkinstallmaclib:
Ned Deilyb8d3e402016-06-18 15:58:52 -04001653 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).a"
1654 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).dylib"
1655 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).a"
1656 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).dylib"
Christian Heimesae6275d2013-07-09 14:30:04 +02001657 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib"
1658 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
Jack Jansencb4321e2002-08-09 00:18:21 +00001659
1660# This installs the IDE, the Launcher and other apps into /Applications
1661frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001662 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001663
Ned Deilyb8f944f2013-11-21 22:42:25 -08001664# Build the bootstrap executable that will spawn the interpreter inside
1665# an app bundle within the framework. This allows the interpreter to
1666# run OS X GUI APIs.
1667frameworkpythonw:
1668 cd Mac && $(MAKE) pythonw
1669
1670# This installs the python* and other bin symlinks in $prefix/bin or in
1671# a bin directory relative to the framework root
Jack Jansencb4321e2002-08-09 00:18:21 +00001672frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001673 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1674
1675frameworkaltinstallunixtools:
1676 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001677
Georg Brandl59b44722010-12-30 22:12:40 +00001678# This installs the Tools into the applications directory.
Jack Jansena1b77582003-06-19 22:35:20 +00001679# It is not part of a normal frameworkinstall
1680frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001681 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001682
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001683# Build the toplevel Makefile
Victor Stinner69f55cc2011-10-12 22:09:40 +02001684Makefile.pre: $(srcdir)/Makefile.pre.in config.status
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001685 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1686 $(MAKE) -f Makefile.pre Makefile
1687
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001688# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001689config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001690 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001691
Jack Jansen1999ef42001-12-06 21:47:20 +00001692.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001693
1694# Some make's put the object file in the current directory
1695.c.o:
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +00001696 $(CC) -c $(PY_CORE_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001697
Victor Stinner826f83f2017-04-28 15:07:10 +02001698# bpo-30104: dtoa.c uses union to cast double to unsigned long[2]. clang 4.0
1699# with -O2 or higher and strict aliasing miscompiles the ratio() function
1700# causing rounding issues. Compile dtoa.c using -fno-strict-aliasing on clang.
1701# https://bugs.llvm.org//show_bug.cgi?id=31928
1702Python/dtoa.o: Python/dtoa.c
1703 $(CC) -c $(PY_CORE_CFLAGS) $(CFLAGS_ALIASING) -o $@ $<
1704
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001705# Run reindent on the library
1706reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001707 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001708
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001709# Rerun configure with the same options as it was run last time,
1710# provided the config.status script exists
1711recheck:
1712 $(SHELL) config.status --recheck
1713 $(SHELL) config.status
1714
Victor Stinnera5c62a82017-05-03 18:21:48 +02001715# Regenerate configure and pyconfig.h.in
1716.PHONY: autoconf
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001717autoconf:
Victor Stinnera5c62a82017-05-03 18:21:48 +02001718 # Regenerate the configure script from configure.ac using autoconf
Matthias Klose80b09d42010-04-25 21:23:32 +00001719 (cd $(srcdir); autoconf -Wall)
Victor Stinnera5c62a82017-05-03 18:21:48 +02001720 # Regenerate pyconfig.h.in from configure.ac using autoheader
Matthias Klose80b09d42010-04-25 21:23:32 +00001721 (cd $(srcdir); autoheader -Wall)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001722
1723# Create a tags file for vi
1724tags::
Victor Stinner48083382018-11-27 12:42:25 +01001725 ctags -w $(srcdir)/Include/*.h $(srcdir)/Include/cpython/*.h $(srcdir)/Include/internal/*.h
Victor Stinner3be3b972017-11-30 22:49:10 +01001726 for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
1727 ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
Victor Stinnercf0ac6a2016-08-17 13:58:12 +02001728 LC_ALL=C sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001729
1730# Create a tags file for GNU Emacs
1731TAGS::
1732 cd $(srcdir); \
Victor Stinner48083382018-11-27 12:42:25 +01001733 etags Include/*.h Include/cpython/*.h Include/internal/*.h; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001734 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1735
1736# Sanitation targets -- clean leaves libraries, executables and tags
Mark Dickinson067b38e2009-09-24 19:24:44 +00001737# files, which clobber removes as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001738pycremoval:
Petri Lehtinenbc74ee02011-11-05 21:04:24 +02001739 -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
Barry Warsaw5f2347d2010-04-26 16:02:14 +00001740 -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001741
Guido van Rossum77b5e332007-08-29 23:24:02 +00001742rmtestturds:
1743 -rm -f *BAD *GOOD *SKIPPED
1744 -rm -rf OUT
1745 -rm -f *.TXT
1746 -rm -f *.txt
1747 -rm -f gb-18030-2000.xml
1748
Guido van Rossum8188e632007-08-29 23:48:29 +00001749docclean:
1750 -rm -rf Doc/build
1751 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1752
Guido van Rossum5420bc32007-08-29 23:35:30 +00001753clean: pycremoval
Georg Brandl241bdab2010-07-31 22:05:54 +00001754 find . -name '*.[oa]' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001755 find . -name '*.s[ol]' -exec rm -f {} ';'
Georg Brandl241bdab2010-07-31 22:05:54 +00001756 find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
Thomas Heller6ab91482009-04-24 18:27:10 +00001757 find build -name 'fficonfig.h' -exec rm -f {} ';' || true
Trent Nelsonc101bf32012-10-16 08:13:12 -04001758 find build -name '*.py' -exec rm -f {} ';' || true
1759 find build -name '*.py[co]' -exec rm -f {} ';' || true
1760 -rm -f pybuilddir.txt
Ned Deily4725b132012-09-08 19:04:47 -07001761 -rm -f Lib/lib2to3/*Grammar*.pickle
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001762 -rm -f Programs/_testembed Programs/_freeze_importlib
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)653c8502016-09-06 23:56:54 +00001763 -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';'
Łukasz Langaa785c872016-09-09 17:37:37 -07001764 -rm -f Include/pydtrace_probes.h
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001765 -rm -f profile-gen-stamp
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001766
Christian Heimes33fe8092008-04-13 13:53:33 +00001767profile-removal:
1768 find . -name '*.gc??' -exec rm -f {} ';'
Brett Cannon7188a3e2015-09-18 15:13:44 -07001769 find . -name '*.profclang?' -exec rm -f {} ';'
Zachary Ware5af85642015-12-21 12:09:17 -06001770 find . -name '*.dyn' -exec rm -f {} ';'
Christian Heimes49e52f92013-07-31 00:55:18 +02001771 rm -f $(COVERAGE_INFO)
1772 rm -rf $(COVERAGE_REPORT)
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001773 rm -f profile-run-stamp
Christian Heimes33fe8092008-04-13 13:53:33 +00001774
1775clobber: clean profile-removal
Pablo Galindo1f24a712019-03-01 15:34:44 -08001776 -rm -f $(BUILDPYTHON) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Matthias Klose597e6b42012-04-04 13:20:55 +02001777 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001778 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001779 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001780 -rm -rf $(PYTHONFRAMEWORKDIR)
doko@python.org87421192013-01-26 11:39:31 +01001781 -rm -f python-config.py python-config
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001782 -rm -f profile-gen-stamp profile-clean-stamp
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001783
1784# Make things extra clean, before making a distribution:
1785# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001786# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001787distclean: clobber
Christian Heimesf8471862013-11-24 03:32:40 +01001788 for file in $(srcdir)/Lib/test/data/* ; do \
1789 if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
Mark Dickinsonde802be2010-08-01 21:33:01 +00001790 done
Antoine Pitrou961d54c2018-07-16 19:03:03 +02001791 -rm -f core Makefile Makefile.pre config.status Modules/Setup.local \
Xiang Zhangfa5abac2017-05-09 10:32:13 +08001792 Modules/ld_so_aix Modules/python.exp Misc/python.pc \
Victor Stinner0a8e5722019-05-23 03:30:23 +02001793 Misc/python-embed.pc Misc/python-config.sh
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001794 -rm -f python*-gdb.py
Victor Stinner8d50d622016-09-29 22:31:06 +02001795 # Issue #28258: set LC_ALL to avoid issues with Estonian locale.
1796 # Expansion is performed here by shell (spawned by make) itself before
1797 # arguments are passed to find. So LC_ALL=C must be set as a separate
1798 # command.
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001799 LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
Eric V. Smithf4c47b52013-07-02 09:06:54 -04001800 -o -name '[@,#]*' -o -name '*.old' \
1801 -o -name '*.orig' -o -name '*.rej' \
1802 -o -name '*.bak' ')' \
1803 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001804
Victor Stinner87d332d2017-10-24 01:29:53 -07001805# Check that all symbols exported by libpython start with "Py" or "_Py"
torsavaa1054c32017-05-05 17:35:50 +02001806smelly: @DEF_MAKE_RULE@
Victor Stinner87d332d2017-10-24 01:29:53 -07001807 $(RUNSHARED) ./$(BUILDPYTHON) Tools/scripts/smelly.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001808
1809# Find files with funny names
1810funny:
Éric Araujo1c608e32011-08-10 02:01:32 +02001811 find $(SUBDIRS) $(SUBDIRSTOO) \
Éric Araujoe9715b92011-08-10 21:42:23 +02001812 -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001813 -o -name '*.[chs]' \
1814 -o -name '*.py' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001815 -o -name '*.pyw' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001816 -o -name '*.dat' \
1817 -o -name '*.el' \
1818 -o -name '*.fd' \
1819 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001820 -o -name '*.gif' \
1821 -o -name '*.txt' \
1822 -o -name '*.xml' \
1823 -o -name '*.xbm' \
1824 -o -name '*.xpm' \
1825 -o -name '*.uue' \
1826 -o -name '*.decTest' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001827 -o -name '*.tmCommand' \
1828 -o -name '*.tmSnippet' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001829 -o -name 'Setup' \
1830 -o -name 'Setup.*' \
1831 -o -name README \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001832 -o -name NEWS \
1833 -o -name HISTORY \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001834 -o -name Makefile \
1835 -o -name ChangeLog \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001836 -o -name .hgignore \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001837 -o -name MANIFEST \
Éric Araujob5da6e92011-08-16 19:05:56 +02001838 -o -print
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001839
Christian Heimesada8c3b2008-03-18 18:26:33 +00001840# Perform some verification checks on any modified files.
torsavaa1054c32017-05-05 17:35:50 +02001841patchcheck: @DEF_MAKE_RULE@
Georg Brandlfcaf9102008-07-16 02:17:56 +00001842 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001843
Guido van Rossum9454ad72001-08-18 21:08:22 +00001844# Dependencies
1845
Inada Naoki001fee12019-02-20 10:00:09 +09001846Python/thread.o: @THREADHEADERS@ $(srcdir)/Python/condvar.h
Guido van Rossum9454ad72001-08-18 21:08:22 +00001847
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001848# Declare targets that aren't real files
xdegaye0de92852017-11-08 16:03:58 +01001849.PHONY: all build_all sharedmods check-clean-src oldsharedmods test quicktest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001850.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1851.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1852.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1853.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Victor Stinnera5c62a82017-05-03 18:21:48 +02001854.PHONY: frameworkaltinstallunixtools recheck clean clobber distclean
Ned Deily322f5ba2013-11-21 23:01:59 -08001855.PHONY: smelly funny patchcheck touch altmaninstall commoninstall
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001856.PHONY: gdbhooks
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001857
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001858# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
Barry Warsaw771d33e2010-12-13 18:04:23 +00001859# Local Variables:
1860# mode: makefile
1861# End: