blob: 4511e607d89aad10a725633870f509a9a58caa76 [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
Victor Stinner8510f432020-03-10 09:53:09 +0100146PLATLIBDIR= @PLATLIBDIR@
147SCRIPTDIR= $(prefix)/$(PLATLIBDIR)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000148ABIFLAGS= @ABIFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000149
150# Detailed destination directories
151BINLIBDEST= $(LIBDIR)/python$(VERSION)
152LIBDEST= $(SCRIPTDIR)/python$(VERSION)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000153INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION)
154CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000155
156# Symbols used for using shared libraries
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700157SHLIB_SUFFIX= @SHLIB_SUFFIX@
158EXT_SUFFIX= @EXT_SUFFIX@
Antoine Pitroudbec7802010-10-10 09:37:12 +0000159LDSHARED= @LDSHARED@ $(PY_LDFLAGS)
Ned Deily44a3ee02018-12-23 15:32:48 -0500160BLDSHARED= @BLDSHARED@ $(PY_CORE_LDFLAGS)
Tarek Ziadé03d788d2010-04-03 08:46:49 +0000161LDCXXSHARED= @LDCXXSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000162DESTSHARED= $(BINLIBDEST)/lib-dynload
163
164# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000165EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000166BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000167
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000168# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000169UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000170PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
171PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
172PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
173PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000174# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000175# by distutils. The export statement is needed to ensure that the
176# deployment target is active during build.
177MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
178@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
179
Ned Deilyb8f944f2013-11-21 22:42:25 -0800180# Option to install to strip binaries
181STRIPFLAG=-s
182
183# Flags to lipo to produce a 32-bit-only universal executable
184LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@
185
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000186# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
187OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000188
Martin v. Löwis1142de32002-03-29 16:28:31 +0000189# Environment to run shared python without installed libraries
190RUNSHARED= @RUNSHARED@
191
Ned Deily322f5ba2013-11-21 23:01:59 -0800192# ensurepip options
193ENSUREPIP= @ENSUREPIP@
194
Christian Heimesff5be6e2018-01-20 13:19:21 +0100195# OpenSSL options for setup.py so sysconfig can pick up AC_SUBST() vars.
196OPENSSL_INCLUDES=@OPENSSL_INCLUDES@
197OPENSSL_LIBS=@OPENSSL_LIBS@
198OPENSSL_LDFLAGS=@OPENSSL_LDFLAGS@
199
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000200# Modes for directories, executables and data files created by the
201# install process. Default to user-only-writable for all file types.
202DIRMODE= 755
203EXEMODE= 755
204FILEMODE= 644
205
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000206# configure script arguments
207CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000208
209
210# Subdirectories with code
211SRCDIRS= @SRCDIRS@
212
213# Other subdirectories
Georg Brandl59b44722010-12-30 22:12:40 +0000214SUBDIRSTOO= Include Lib Misc
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000215
216# Files and directories to be distributed
Matthias Klose0f4c16e2012-03-14 23:10:15 +0100217CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
Victor Stinnerd783b012017-02-11 02:21:38 +0100218DISTFILES= README.rst ChangeLog $(CONFIGFILES)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000219DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
220DIST= $(DISTFILES) $(DISTDIRS)
221
222
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000223LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000224LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000225BLDLIBRARY= @BLDLIBRARY@
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000226PY3LIBRARY= @PY3LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000227DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000228LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000229INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000230
231
232LIBS= @LIBS@
233LIBM= @LIBM@
234LIBC= @LIBC@
235SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000236SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000237
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000238DLINCLDIR= @DLINCLDIR@
239DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000240MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000241LIBOBJDIR= Python/
242LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000243
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000244PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000245BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000246
Victor Stinnera5c62a82017-05-03 18:21:48 +0200247PYTHON_FOR_REGEN=@PYTHON_FOR_REGEN@
Antoine Pitroub091bec2017-09-20 23:57:56 +0200248UPDATE_FILE=@PYTHON_FOR_REGEN@ $(srcdir)/Tools/scripts/update_file.py
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200249PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@
250_PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@
doko@python.orga10e4a92013-01-25 18:45:12 +0100251BUILD_GNU_TYPE= @build@
252HOST_GNU_TYPE= @host@
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200253
Ned Deilyd819b932013-09-06 01:07:05 -0700254# Tcl and Tk config info from --with-tcltk-includes and -libs options
255TCLTK_INCLUDES= @TCLTK_INCLUDES@
256TCLTK_LIBS= @TCLTK_LIBS@
257
Gregory P. Smithad45ab82016-04-15 16:45:43 -0700258# The task to run while instrumented when building the profile-opt target.
Neil Schemenauer4e16a4a2019-07-22 12:54:25 -0700259# To speed up profile generation, we don't run the full unit test suite
260# by default. The default is "-m test --pgo". To run more tests, use
261# PROFILE_TASK="-m test --pgo-extended"
262PROFILE_TASK= @PROFILE_TASK@
Christian Heimes33fe8092008-04-13 13:53:33 +0000263
Christian Heimes49e52f92013-07-31 00:55:18 +0200264# report files for gcov / lcov coverage report
265COVERAGE_INFO= $(abs_builddir)/coverage.info
266COVERAGE_REPORT=$(abs_builddir)/lcov-report
267COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report"
268
269
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000270# === Definitions added by makesetup ===
271
272
273##########################################################################
274# Modules
275MODULE_OBJS= \
276 Modules/config.o \
277 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000278 Modules/main.o \
279 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000280
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000281IO_H= Modules/_io/_iomodule.h
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000282
283IO_OBJS= \
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000284 Modules/_io/_iomodule.o \
285 Modules/_io/iobase.o \
286 Modules/_io/fileio.o \
287 Modules/_io/bufferedio.o \
288 Modules/_io/textio.o \
289 Modules/_io/bytesio.o \
290 Modules/_io/stringio.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000291
292##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000293
Benjamin Petersond78735d2010-01-01 16:04:23 +0000294LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
295
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000296##########################################################################
297# Parser
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000298POBJS= \
299 Parser/acceler.o \
300 Parser/grammar1.o \
301 Parser/listnode.o \
302 Parser/node.o \
303 Parser/parser.o \
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200304 Parser/token.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000305
Victor Stinner7f2fee32011-04-05 00:39:01 +0200306PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000307
Georg Brandl86def6c2008-01-21 20:36:10 +0000308PARSER_HEADERS= \
T. Woutersb4612f52019-09-09 05:17:18 -0700309 $(srcdir)/Include/grammar.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200310 $(srcdir)/Include/parsetok.h \
T. Woutersb4612f52019-09-09 05:17:18 -0700311 $(srcdir)/Parser/parser.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200312 $(srcdir)/Parser/tokenizer.h
Georg Brandl86def6c2008-01-21 20:36:10 +0000313
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000314##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000315# Python
Antoine Pitroub52ec782009-01-25 16:34:23 +0000316
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000317PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000318 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000319 Python/Python-ast.o \
320 Python/asdl.o \
321 Python/ast.o \
INADA Naoki7ea143a2017-12-14 16:47:20 +0900322 Python/ast_opt.o \
Guido van Rossum95e4d582018-01-26 08:20:18 -0800323 Python/ast_unparse.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000324 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000325 Python/ceval.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000326 Python/codecs.o \
Victor Stinner6c785c02018-08-01 17:56:14 +0200327 Python/compile.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200328 Python/context.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000329 Python/dynamic_annotations.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000330 Python/errors.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000331 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000332 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000333 Python/getargs.o \
334 Python/getcompiler.o \
335 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000336 Python/getplatform.o \
337 Python/getversion.o \
338 Python/graminit.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200339 Python/hamt.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000340 Python/import.o \
341 Python/importdl.o \
Victor Stinner331a6a52019-05-27 16:39:22 +0200342 Python/initconfig.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000343 Python/marshal.o \
344 Python/modsupport.o \
Serhiy Storchaka13badcb2017-12-02 21:36:00 +0200345 Python/mysnprintf.o \
Victor Stinner31a83932017-12-04 13:39:15 +0100346 Python/mystrtoul.o \
347 Python/pathconfig.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000348 Python/peephole.o \
Victor Stinner91b9ecf2019-03-01 17:52:56 +0100349 Python/preconfig.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000350 Python/pyarena.o \
Eric Smith6dc46f52009-04-27 20:39:49 +0000351 Python/pyctype.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000352 Python/pyfpe.o \
Christian Heimes985ecdc2013-11-20 11:46:18 +0100353 Python/pyhash.o \
Nick Coghland6009512014-11-20 21:39:37 +1000354 Python/pylifecycle.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000355 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000356 Python/pystate.o \
357 Python/pythonrun.o \
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000358 Python/pytime.o \
Eric Snow6b4be192017-05-22 21:36:03 -0700359 Python/bootstrap_hash.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000360 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000361 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000362 Python/sysmodule.o \
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200363 Python/thread.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000364 Python/traceback.o \
365 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000366 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000367 Python/pystrtod.o \
Gregory P. Smith8cb65692015-04-25 23:22:26 +0000368 Python/pystrhex.o \
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000369 Python/dtoa.o \
Eric Smith8c663262007-08-25 02:26:07 +0000370 Python/formatter_unicode.o \
Victor Stinner4e314432010-10-07 21:45:39 +0000371 Python/fileutils.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000372 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000373 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000374 $(MACHDEP_OBJS) \
Łukasz Langaa785c872016-09-09 17:37:37 -0700375 $(DTRACE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000376
377
378##########################################################################
379# Objects
380OBJECT_OBJS= \
381 Objects/abstract.o \
Antoine Pitroueeb7eea2011-10-06 18:57:27 +0200382 Objects/accu.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000383 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000384 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000385 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000386 Objects/bytesobject.o \
Victor Stinnerc22bfaa2017-02-12 19:27:05 +0100387 Objects/call.o \
Antoine Pitrou91f43802019-05-26 17:10:09 +0200388 Objects/capsule.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000389 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000390 Objects/classobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000391 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000392 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000393 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000394 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000395 Objects/exceptions.o \
Guido van Rossum48b069a2020-04-07 09:50:06 -0700396 Objects/genericaliasobject.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000397 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000398 Objects/fileobject.o \
399 Objects/floatobject.o \
400 Objects/frameobject.o \
401 Objects/funcobject.o \
Eric Snowc11183c2019-03-15 16:35:46 -0600402 Objects/interpreteridobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000403 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000404 Objects/listobject.o \
405 Objects/longobject.o \
406 Objects/dictobject.o \
Eric Snow96c6af92015-05-29 22:21:39 -0600407 Objects/odictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000408 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000409 Objects/methodobject.o \
410 Objects/moduleobject.o \
Barry Warsaw409da152012-06-03 16:18:47 -0400411 Objects/namespaceobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000412 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000413 Objects/obmalloc.o \
Antoine Pitrou91f43802019-05-26 17:10:09 +0200414 Objects/picklebufobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000415 Objects/rangeobject.o \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200416 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000417 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000418 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000419 Objects/tupleobject.o \
420 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000421 Objects/unicodeobject.o \
422 Objects/unicodectype.o \
423 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000424
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000425##########################################################################
426# objects that get linked into the Python library
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200427LIBRARY_OBJS_OMIT_FROZEN= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000428 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000429 $(PARSER_OBJS) \
430 $(OBJECT_OBJS) \
431 $(PYTHON_OBJS) \
432 $(MODULE_OBJS) \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000433 $(MODOBJS)
434
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200435LIBRARY_OBJS= \
436 $(LIBRARY_OBJS_OMIT_FROZEN) \
437 Python/frozen.o
438
Łukasz Langaa785c872016-09-09 17:37:37 -0700439##########################################################################
440# DTrace
441
442# On some systems, object files that reference DTrace probes need to be modified
443# in-place by dtrace(1).
444DTRACE_DEPS = \
Christian Heimes8a8b59c2019-06-10 17:19:48 +0200445 Python/ceval.o Python/import.o Python/sysmodule.o Modules/gcmodule.o
Łukasz Langaa785c872016-09-09 17:37:37 -0700446
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000447#########################################################################
448# Rules
449
450# Default target
Brett Cannon63d98bc2016-09-06 17:12:40 -0700451all: @DEF_MAKE_ALL_RULE@
xdegaye0de92852017-11-08 16:03:58 +0100452build_all: check-clean-src $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks \
453 Programs/_testembed python-config
454
455# Check that the source is clean when building out of source.
456check-clean-src:
457 @if test -n "$(VPATH)" -a -f "$(srcdir)/Programs/python.o"; then \
458 echo "Error: The source directory ($(srcdir)) is not clean" ; \
459 echo "Building Python out of the source tree (in $(abs_builddir)) requires a clean source tree ($(abs_srcdir))" ; \
460 echo "Try to run: make -C \"$(srcdir)\" clean" ; \
461 exit 1; \
462 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000463
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700464# Profile generation build must start from a clean tree.
465profile-clean-stamp:
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -0700466 $(MAKE) clean
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700467 touch $@
468
469# Compile with profile generation enabled.
470profile-gen-stamp: profile-clean-stamp
doko@ubuntu.com3a56b772016-03-23 12:57:29 +0100471 @if [ $(LLVM_PROF_ERR) = yes ]; then \
Brett Cannon7188a3e2015-09-18 15:13:44 -0700472 echo "Error: Cannot perform PGO build because llvm-profdata was not found in PATH" ;\
473 echo "Please add it to PATH and run ./configure again" ;\
474 exit 1;\
475 fi
Christian Heimes33fe8092008-04-13 13:53:33 +0000476 @echo "Building with support for profile generation:"
Brett Cannon7188a3e2015-09-18 15:13:44 -0700477 $(MAKE) build_all_generate_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700478 touch $@
479
480# Run task with profile generation build to create profile information.
481profile-run-stamp:
Brett Cannon7188a3e2015-09-18 15:13:44 -0700482 @echo "Running code to generate profile data (this can take a while):"
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700483 # First, we need to create a clean build with profile generation
484 # enabled.
485 $(MAKE) profile-gen-stamp
486 # Next, run the profile task to generate the profile information.
Christian Heimes33fe8092008-04-13 13:53:33 +0000487 $(MAKE) run_profile_task
Brett Cannon7188a3e2015-09-18 15:13:44 -0700488 $(MAKE) build_all_merge_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700489 # Remove profile generation binary since we are done with it.
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -0700490 $(MAKE) clean-retain-profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700491 # This is an expensive target to build and it does not have proper
luzpaza5293b42017-11-05 07:37:50 -0600492 # makefile dependency information. So, we create a "stamp" file
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700493 # to record its completion and avoid re-running it.
494 touch $@
Christian Heimes33fe8092008-04-13 13:53:33 +0000495
496build_all_generate_profile:
stratakiscf10a752018-12-19 18:19:01 +0100497 $(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 +0000498
499run_profile_task:
Martin Panteradab00f2016-09-22 09:34:43 +0000500 @ # FIXME: can't run for a cross build
Brett Cannon7188a3e2015-09-18 15:13:44 -0700501 $(LLVM_PROF_FILE) $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) || true
502
503build_all_merge_profile:
504 $(LLVM_PROF_MERGER)
Christian Heimes33fe8092008-04-13 13:53:33 +0000505
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700506# Compile Python binary with profile guided optimization.
507# To force re-running of the profile task, remove the profile-run-stamp file.
508profile-opt: profile-run-stamp
509 @echo "Rebuilding with profile guided optimizations:"
510 -rm -f profile-clean-stamp
stratakiscf10a752018-12-19 18:19:01 +0100511 $(MAKE) @DEF_MAKE_RULE@ CFLAGS_NODIST="$(CFLAGS_NODIST) $(PGO_PROF_USE_FLAG)" LDFLAGS_NODIST="$(LDFLAGS_NODIST)"
Christian Heimes33fe8092008-04-13 13:53:33 +0000512
Christian Heimes49e52f92013-07-31 00:55:18 +0200513# Compile and run with gcov
514.PHONY=coverage coverage-lcov coverage-report
Georg Brandlb533e262008-05-25 18:19:30 +0000515coverage:
516 @echo "Building with support for coverage checking:"
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -0700517 $(MAKE) clean
Fangrui Song9a978dd2020-02-07 15:46:29 -0800518 $(MAKE) @DEF_MAKE_RULE@ CFLAGS="$(CFLAGS) -O0 -pg --coverage" LIBS="$(LIBS) --coverage"
Georg Brandlb533e262008-05-25 18:19:30 +0000519
Christian Heimes49e52f92013-07-31 00:55:18 +0200520coverage-lcov:
521 @echo "Creating Coverage HTML report with LCOV:"
522 @rm -f $(COVERAGE_INFO)
523 @rm -rf $(COVERAGE_REPORT)
524 @lcov --capture --directory $(abs_builddir) \
525 --base-directory $(realpath $(abs_builddir)) \
526 --path $(realpath $(abs_srcdir)) \
527 --output-file $(COVERAGE_INFO)
Martin Panteradab00f2016-09-22 09:34:43 +0000528 @ # remove 3rd party modules, system headers and internal files with
529 @ # debug, test or dummy functions.
Christian Heimes49e52f92013-07-31 00:55:18 +0200530 @lcov --remove $(COVERAGE_INFO) \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200531 '*/Modules/_blake2/impl/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200532 '*/Modules/_ctypes/libffi*/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200533 '*/Modules/_decimal/libmpdec/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200534 '*/Modules/_sha3/kcp/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200535 '*/Modules/expat/*' \
536 '*/Modules/zlib/*' \
537 '*/Include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200538 '*/Modules/xx*.c' \
539 '*/Parser/listnode.c' \
540 '*/Python/pyfpe.c' \
541 '*/Python/pystrcmp.c' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200542 '/usr/include/*' \
543 '/usr/local/include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200544 '/usr/lib/gcc/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200545 --output-file $(COVERAGE_INFO)
546 @genhtml $(COVERAGE_INFO) --output-directory $(COVERAGE_REPORT) \
547 $(COVERAGE_REPORT_OPTIONS)
548 @echo
549 @echo "lcov report at $(COVERAGE_REPORT)/index.html"
550 @echo
551
Victor Stinnera5c62a82017-05-03 18:21:48 +0200552# Force regeneration of parser and importlib
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200553coverage-report: regen-grammar regen-token regen-importlib
Martin Panteradab00f2016-09-22 09:34:43 +0000554 @ # build with coverage info
Christian Heimes49e52f92013-07-31 00:55:18 +0200555 $(MAKE) coverage
Martin Panteradab00f2016-09-22 09:34:43 +0000556 @ # run tests, ignore failures
Christian Heimes49e52f92013-07-31 00:55:18 +0200557 $(TESTRUNNER) $(TESTOPTS) || true
Martin Panteradab00f2016-09-22 09:34:43 +0000558 @ # build lcov report
Christian Heimes49e52f92013-07-31 00:55:18 +0200559 $(MAKE) coverage-lcov
Georg Brandlb533e262008-05-25 18:19:30 +0000560
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800561# Run "Argument Clinic" over all source files
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800562.PHONY=clinic
Zachary Wared6ff8a72018-02-17 17:58:57 -0600563clinic: check-clean-src $(srcdir)/Modules/_blake2/blake2s_impl.c
564 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py --make --srcdir $(srcdir)
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800565
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000566# Build the interpreter
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000567$(BUILDPYTHON): Programs/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
stratakiscf10a752018-12-19 18:19:01 +0100568 $(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000569
Trent Nelsonc101bf32012-10-16 08:13:12 -0400570platform: $(BUILDPYTHON) pybuilddir.txt
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200571 $(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 +0000572
Trent Nelsonc101bf32012-10-16 08:13:12 -0400573# Create build directory and generate the sysconfig build-time data there.
574# pybuilddir.txt contains the name of the build dir and is used for
575# sys.path fixup -- see Modules/getpath.c.
Ned Deilyfcbc2462014-08-22 13:32:49 -0700576# Since this step runs before shared modules are built, try to avoid bootstrap
Ned Deilyec7aaf52014-08-23 18:10:16 -0700577# problems by creating a dummy pybuilddir.txt just to allow interpreter
Ned Deilyfcbc2462014-08-22 13:32:49 -0700578# initialization to succeed. It will be overwritten by generate-posix-vars
579# or removed in case of failure.
Trent Nelsonc101bf32012-10-16 08:13:12 -0400580pybuilddir.txt: $(BUILDPYTHON)
Ned Deilyfcbc2462014-08-22 13:32:49 -0700581 @echo "none" > ./pybuilddir.txt
582 $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\
583 if test $$? -ne 0 ; then \
584 echo "generate-posix-vars failed" ; \
585 rm -f ./pybuilddir.txt ; \
586 exit 1 ; \
587 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000588
Martin Panterc9deece2016-02-03 05:19:44 +0000589# This is shared by the math and cmath modules
590Modules/_math.o: Modules/_math.c Modules/_math.h
591 $(CC) -c $(CCSHARED) $(PY_CORE_CFLAGS) -o $@ $<
592
Christian Heimes121b9482016-09-06 22:03:25 +0200593# blake2s is auto-generated from blake2b
Zachary Wared6ff8a72018-02-17 17:58:57 -0600594$(srcdir)/Modules/_blake2/blake2s_impl.c: $(srcdir)/Modules/_blake2/blake2b_impl.c $(srcdir)/Modules/_blake2/blake2b2s.py
595 $(PYTHON_FOR_REGEN) $(srcdir)/Modules/_blake2/blake2b2s.py
596 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py -f $@
Christian Heimes121b9482016-09-06 22:03:25 +0200597
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000598# Build the shared modules
Christian Heimes17ad40e2012-12-02 07:37:35 +0100599# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
Christian Heimes5f381212012-09-07 02:24:58 +0200600# -s, --silent or --quiet is always the first char.
Christian Heimes17ad40e2012-12-02 07:37:35 +0100601# Under BSD make, MAKEFLAGS might be " -s -v x=y".
Matthias Klose10f715d2018-04-30 20:07:55 +0200602# Ignore macros passed by GNU make, passed after --
Martin Panterc9deece2016-02-03 05:19:44 +0000603sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
Matthias Klose10f715d2018-04-30 20:07:55 +0200604 @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
Christian Heimes17ad40e2012-12-02 07:37:35 +0100605 *\ -s*|s*) quiet="-q";; \
Christian Heimes5f381212012-09-07 02:24:58 +0200606 *) quiet="";; \
607 esac; \
Matthias Klose10f715d2018-04-30 20:07:55 +0200608 echo "$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
609 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
610 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build"; \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200611 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
Ned Deilyd819b932013-09-06 01:07:05 -0700612 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
Christian Heimes4e251402012-09-07 02:26:26 +0200613 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000614
Christian Heimes121b9482016-09-06 22:03:25 +0200615
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000616# Build static library
617$(LIBRARY): $(LIBRARY_OBJS)
618 -rm -f $@
Benjamin Peterson6fb0e4a2017-09-29 09:26:48 -0700619 $(AR) $(ARFLAGS) $@ $(LIBRARY_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000620
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100621libpython$(LDVERSION).so: $(LIBRARY_OBJS) $(DTRACE_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000622 if test $(INSTSONAME) != $(LDLIBRARY); then \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700623 $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000624 $(LN) -f $(INSTSONAME) $@; \
Georg Brandlb1441c72009-01-03 22:33:39 +0000625 else \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700626 $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000627 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000628
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000629libpython3.so: libpython$(LDVERSION).so
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200630 $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000631
Georg Brandl6e8d17c2011-02-19 08:47:14 +0000632libpython$(LDVERSION).dylib: $(LIBRARY_OBJS)
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100633 $(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 +0000634
Georg Brandlb1441c72009-01-03 22:33:39 +0000635
Martin v. Löwis1142de32002-03-29 16:28:31 +0000636libpython$(VERSION).sl: $(LIBRARY_OBJS)
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700637 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000638
Benjamin Peterson6a6666a2010-04-11 21:49:28 +0000639# Copy up the gdb python hooks into a position where they can be automatically
640# loaded by gdb during Lib/test/test_gdb.py
641#
642# Distributors are likely to want to install this somewhere else e.g. relative
643# to the stripped DWARF data for the shared library.
644gdbhooks: $(BUILDPYTHON)-gdb.py
645
646SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
647$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
648 $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
649
Jack Jansenea0c3822002-08-01 21:57:49 +0000650# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
651# minimal framework (not including the Lib directory and such) in the current
652# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000653RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000654$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
655 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000656 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000657 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
stratakiscf10a752018-12-19 18:19:01 +0100658 $(CC) -o $(LDLIBRARY) $(PY_CORE_LDFLAGS) -dynamiclib \
Ronald Oussoren25032492011-03-14 10:11:59 -0400659 -all_load $(LIBRARY) -Wl,-single_module \
660 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
661 -compatibility_version $(VERSION) \
662 -current_version $(VERSION) \
Victor Stinnerdfb866d2011-09-29 01:12:24 +0200663 -framework CoreFoundation $(LIBS);
Jack Jansenea0c3822002-08-01 21:57:49 +0000664 $(INSTALL) -d -m $(DIRMODE) \
665 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
666 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
667 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000668 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000669 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000670 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000671
Jason Tishler30765592003-09-04 11:04:06 +0000672# This rule builds the Cygwin Python DLL and import library if configured
673# for a shared core library; otherwise, this rule is a noop.
Zachary Ware3839d992016-10-01 16:15:09 -0500674$(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)
Jason Tishler30765592003-09-04 11:04:06 +0000675 if test -n "$(DLLLIBRARY)"; then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000676 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
Benjamin Peterson65ed12c2018-10-03 19:23:24 -0700677 $(LIBS) $(MODLIBS) $(SYSLIBS); \
Jason Tishler30765592003-09-04 11:04:06 +0000678 else true; \
679 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000680
681
682oldsharedmods: $(SHAREDMODS)
683
684
685Makefile Modules/config.c: Makefile.pre \
686 $(srcdir)/Modules/config.c.in \
687 $(MAKESETUP) \
Antoine Pitrou961d54c2018-07-16 19:03:03 +0200688 $(srcdir)/Modules/Setup \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000689 Modules/Setup.local
690 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
691 -s Modules \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000692 Modules/Setup.local \
Antoine Pitrou961d54c2018-07-16 19:03:03 +0200693 $(srcdir)/Modules/Setup
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000694 @mv config.c Modules
695 @echo "The Makefile was updated, you may need to re-run make."
696
697
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000698Programs/_testembed: Programs/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
stratakiscf10a752018-12-19 18:19:01 +0100699 $(LINKCC) $(PY_CORE_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS)
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200700
Brett Cannonfd074152012-04-14 14:10:13 -0400701############################################################################
702# Importlib
Antoine Pitrou8e605772011-04-25 21:21:07 +0200703
Nick Coghlan8d11ccc2015-04-13 11:30:49 -0400704Programs/_freeze_importlib.o: Programs/_freeze_importlib.c Makefile
Antoine Pitrou895ce142014-09-21 00:21:58 +0200705
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000706Programs/_freeze_importlib: Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN)
stratakiscf10a752018-12-19 18:19:01 +0100707 $(LINKCC) $(PY_CORE_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS)
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200708
Victor Stinnera5c62a82017-05-03 18:21:48 +0200709.PHONY: regen-importlib
710regen-importlib: Programs/_freeze_importlib
711 # Regenerate Python/importlib_external.h
712 # from Lib/importlib/_bootstrap_external.py using _freeze_importlib
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300713 ./Programs/_freeze_importlib importlib._bootstrap_external \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200714 $(srcdir)/Lib/importlib/_bootstrap_external.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200715 $(srcdir)/Python/importlib_external.h.new
716 $(UPDATE_FILE) $(srcdir)/Python/importlib_external.h $(srcdir)/Python/importlib_external.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200717 # Regenerate Python/importlib.h from Lib/importlib/_bootstrap.py
718 # using _freeze_importlib
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300719 ./Programs/_freeze_importlib importlib._bootstrap \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200720 $(srcdir)/Lib/importlib/_bootstrap.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200721 $(srcdir)/Python/importlib.h.new
722 $(UPDATE_FILE) $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib.h.new
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300723 # Regenerate Python/importlib_zipimport.h from Lib/zipimport.py
724 # using _freeze_importlib
725 ./Programs/_freeze_importlib zipimport \
726 $(srcdir)/Lib/zipimport.py \
727 $(srcdir)/Python/importlib_zipimport.h.new
728 $(UPDATE_FILE) $(srcdir)/Python/importlib_zipimport.h $(srcdir)/Python/importlib_zipimport.h.new
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200729
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200730
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000731############################################################################
Victor Stinnera5c62a82017-05-03 18:21:48 +0200732# Regenerate all generated files
733
Zachary Wared6ff8a72018-02-17 17:58:57 -0600734regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar \
Pablo Galindo91759d92019-03-25 22:01:12 +0000735 regen-token regen-keyword regen-symbol regen-ast regen-importlib clinic
Victor Stinnera5c62a82017-05-03 18:21:48 +0200736
737############################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000738# Special rules for object files
739
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000740Modules/getbuildinfo.o: $(PARSER_OBJS) \
741 $(OBJECT_OBJS) \
742 $(PYTHON_OBJS) \
743 $(MODULE_OBJS) \
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000744 $(MODOBJS) \
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100745 $(DTRACE_OBJS) \
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000746 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl13039c82011-03-06 10:13:00 +0100747 $(CC) -c $(PY_CORE_CFLAGS) \
Ned Deily5c4b0d02017-03-04 00:19:55 -0500748 -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
749 -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
750 -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
Georg Brandl1ca2e792011-03-05 20:51:24 +0100751 -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000752
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000753Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000754 $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000755 -DPREFIX='"$(prefix)"' \
756 -DEXEC_PREFIX='"$(exec_prefix)"' \
757 -DVERSION='"$(VERSION)"' \
758 -DVPATH='"$(VPATH)"' \
Victor Stinner8510f432020-03-10 09:53:09 +0100759 -DPLATLIBDIR='"$(PLATLIBDIR)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000760 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000761
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000762Programs/python.o: $(srcdir)/Programs/python.c
763 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000764
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000765Programs/_testembed.o: $(srcdir)/Programs/_testembed.c
766 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/_testembed.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200767
Serhiy Storchaka8444ebb2013-10-26 11:18:42 +0300768Modules/_sre.o: $(srcdir)/Modules/_sre.c $(srcdir)/Modules/sre.h $(srcdir)/Modules/sre_constants.h $(srcdir)/Modules/sre_lib.h
769
Serhiy Storchaka7cf55992013-02-10 21:56:49 +0200770Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h
771
772Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h
773
774Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
775
776Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h
777
Barry Warsaw35f3a2c2010-09-03 18:30:30 +0000778Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile
779 $(CC) -c $(PY_CORE_CFLAGS) \
780 -DSOABI='"$(SOABI)"' \
781 -o $@ $(srcdir)/Python/dynload_shlib.c
782
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700783Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile
784 $(CC) -c $(PY_CORE_CFLAGS) \
785 -DSHLIB_EXT='"$(EXT_SUFFIX)"' \
786 -o $@ $(srcdir)/Python/dynload_hpux.c
787
Christian Heimes8a8b59c2019-06-10 17:19:48 +0200788Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile $(srcdir)/Include/pydtrace.h
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000789 $(CC) -c $(PY_CORE_CFLAGS) \
790 -DABIFLAGS='"$(ABIFLAGS)"' \
Victor Stinner8510f432020-03-10 09:53:09 +0100791 -DPLATLIBDIR='"$(PLATLIBDIR)"' \
doko@ubuntu.com55532312016-06-14 08:55:19 +0200792 $(MULTIARCH_CPPFLAGS) \
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000793 -o $@ $(srcdir)/Python/sysmodule.c
794
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000795$(IO_OBJS): $(IO_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000796
Victor Stinnera5c62a82017-05-03 18:21:48 +0200797.PHONY: regen-grammar
Pablo Galindo1f24a712019-03-01 15:34:44 -0800798regen-grammar: regen-token
Victor Stinnera5c62a82017-05-03 18:21:48 +0200799 # Regenerate Include/graminit.h and Python/graminit.c
800 # from Grammar/Grammar using pgen
801 @$(MKDIR_P) Include
Victor Stinner06d04e72019-04-26 13:09:47 +0200802 PYTHONPATH=$(srcdir) $(PYTHON_FOR_REGEN) -m Parser.pgen $(srcdir)/Grammar/Grammar \
Pablo Galindo1f24a712019-03-01 15:34:44 -0800803 $(srcdir)/Grammar/Tokens \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200804 $(srcdir)/Include/graminit.h.new \
805 $(srcdir)/Python/graminit.c.new
806 $(UPDATE_FILE) $(srcdir)/Include/graminit.h $(srcdir)/Include/graminit.h.new
807 $(UPDATE_FILE) $(srcdir)/Python/graminit.c $(srcdir)/Python/graminit.c.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200808
Victor Stinnera5c62a82017-05-03 18:21:48 +0200809.PHONY=regen-ast
810regen-ast:
811 # Regenerate Include/Python-ast.h using Parser/asdl_c.py -h
812 $(MKDIR_P) $(srcdir)/Include
813 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200814 -h $(srcdir)/Include/Python-ast.h.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200815 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200816 $(UPDATE_FILE) $(srcdir)/Include/Python-ast.h $(srcdir)/Include/Python-ast.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200817 # Regenerate Python/Python-ast.c using Parser/asdl_c.py -c
818 $(MKDIR_P) $(srcdir)/Python
819 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200820 -c $(srcdir)/Python/Python-ast.c.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200821 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200822 $(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000823
Victor Stinnera5c62a82017-05-03 18:21:48 +0200824.PHONY: regen-opcode
825regen-opcode:
826 # Regenerate Include/opcode.h from Lib/opcode.py
827 # using Tools/scripts/generate_opcode_h.py
828 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_opcode_h.py \
829 $(srcdir)/Lib/opcode.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200830 $(srcdir)/Include/opcode.h.new
831 $(UPDATE_FILE) $(srcdir)/Include/opcode.h $(srcdir)/Include/opcode.h.new
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000832
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200833.PHONY: regen-token
834regen-token:
835 # Regenerate Doc/library/token-list.inc from Grammar/Tokens
836 # using Tools/scripts/generate_token.py
837 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py rst \
838 $(srcdir)/Grammar/Tokens \
839 $(srcdir)/Doc/library/token-list.inc
840 # Regenerate Include/token.h from Grammar/Tokens
841 # using Tools/scripts/generate_token.py
842 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py h \
843 $(srcdir)/Grammar/Tokens \
844 $(srcdir)/Include/token.h
845 # Regenerate Parser/token.c from Grammar/Tokens
846 # using Tools/scripts/generate_token.py
847 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py c \
848 $(srcdir)/Grammar/Tokens \
849 $(srcdir)/Parser/token.c
850 # Regenerate Lib/token.py from Grammar/Tokens
851 # using Tools/scripts/generate_token.py
852 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_token.py py \
853 $(srcdir)/Grammar/Tokens \
854 $(srcdir)/Lib/token.py
855
Pablo Galindo91759d92019-03-25 22:01:12 +0000856.PHONY: regen-keyword
857regen-keyword:
858 # Regenerate Lib/keyword.py from Grammar/Grammar and Grammar/Tokens
859 # using Parser/pgen
Victor Stinner06d04e72019-04-26 13:09:47 +0200860 PYTHONPATH=$(srcdir) $(PYTHON_FOR_REGEN) -m Parser.pgen.keywordgen $(srcdir)/Grammar/Grammar \
Pablo Galindo91759d92019-03-25 22:01:12 +0000861 $(srcdir)/Grammar/Tokens \
862 $(srcdir)/Lib/keyword.py.new
863 $(UPDATE_FILE) $(srcdir)/Lib/keyword.py $(srcdir)/Lib/keyword.py.new
864
Serhiy Storchaka8ac65812018-12-22 11:18:40 +0200865.PHONY: regen-symbol
866regen-symbol: $(srcdir)/Include/graminit.h
867 # Regenerate Lib/symbol.py from Include/graminit.h
868 # using Tools/scripts/generate_symbol_py.py
869 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_symbol_py.py \
870 $(srcdir)/Include/graminit.h \
871 $(srcdir)/Lib/symbol.py
872
T. Woutersb4612f52019-09-09 05:17:18 -0700873Python/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 +0000874
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000875Python/getplatform.o: $(srcdir)/Python/getplatform.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000876 $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000877
878Python/importdl.o: $(srcdir)/Python/importdl.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000879 $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000880
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000881Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
882 $(srcdir)/Objects/unicodetype_db.h
883
Christian Heimesda996832008-03-22 18:37:22 +0000884BYTESTR_DEPS = \
Christian Heimesda996832008-03-22 18:37:22 +0000885 $(srcdir)/Objects/stringlib/count.h \
886 $(srcdir)/Objects/stringlib/ctype.h \
Christian Heimesda996832008-03-22 18:37:22 +0000887 $(srcdir)/Objects/stringlib/fastsearch.h \
888 $(srcdir)/Objects/stringlib/find.h \
Antoine Pitrou74375fc2012-10-18 21:31:22 +0200889 $(srcdir)/Objects/stringlib/join.h \
Christian Heimesda996832008-03-22 18:37:22 +0000890 $(srcdir)/Objects/stringlib/partition.h \
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000891 $(srcdir)/Objects/stringlib/split.h \
Christian Heimesda996832008-03-22 18:37:22 +0000892 $(srcdir)/Objects/stringlib/stringdefs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200893 $(srcdir)/Objects/stringlib/transmogrify.h
Antoine Pitrou3e623242011-11-13 19:37:58 +0100894
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200895UNICODE_DEPS = \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100896 $(srcdir)/Objects/stringlib/asciilib.h \
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100897 $(srcdir)/Objects/stringlib/codecs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200898 $(srcdir)/Objects/stringlib/count.h \
899 $(srcdir)/Objects/stringlib/fastsearch.h \
900 $(srcdir)/Objects/stringlib/find.h \
901 $(srcdir)/Objects/stringlib/find_max_char.h \
902 $(srcdir)/Objects/stringlib/localeutil.h \
903 $(srcdir)/Objects/stringlib/partition.h \
Serhiy Storchakae2cef882013-04-13 22:45:04 +0300904 $(srcdir)/Objects/stringlib/replace.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200905 $(srcdir)/Objects/stringlib/split.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100906 $(srcdir)/Objects/stringlib/ucs1lib.h \
907 $(srcdir)/Objects/stringlib/ucs2lib.h \
908 $(srcdir)/Objects/stringlib/ucs4lib.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200909 $(srcdir)/Objects/stringlib/undef.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100910 $(srcdir)/Objects/stringlib/unicode_format.h \
911 $(srcdir)/Objects/stringlib/unicodedefs.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000912
Xiang Zhang3d40e372016-12-15 16:41:12 +0800913Objects/bytes_methods.o: $(srcdir)/Objects/bytes_methods.c $(BYTESTR_DEPS)
Benjamin Peterson9ae32202009-01-13 21:53:28 +0000914Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Victor Stinner4e314432010-10-07 21:45:39 +0000915Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000916
Antoine Pitrou3e623242011-11-13 19:37:58 +0100917Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000918
Benjamin Peterson41356f92016-09-08 13:19:14 -0700919Objects/odictobject.o: $(srcdir)/Objects/dict-common.h
920Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h $(srcdir)/Objects/dict-common.h
Martin v. Löwis6fb44722011-09-25 17:36:11 +0200921Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
922
Victor Stinnera5c62a82017-05-03 18:21:48 +0200923.PHONY: regen-opcode-targets
924regen-opcode-targets:
925 # Regenerate Python/opcode_targets.h from Lib/opcode.py
926 # using Python/makeopcodetargets.py
927 $(PYTHON_FOR_REGEN) $(srcdir)/Python/makeopcodetargets.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200928 $(srcdir)/Python/opcode_targets.h.new
929 $(UPDATE_FILE) $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/opcode_targets.h.new
Antoine Pitroub52ec782009-01-25 16:34:23 +0000930
Inada Naoki001fee12019-02-20 10:00:09 +0900931Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/ceval_gil.h \
932 $(srcdir)/Python/condvar.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000933
Serhiy Storchaka79d1c2e2018-09-18 22:22:29 +0300934Python/frozen.o: $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib_external.h \
935 $(srcdir)/Python/importlib_zipimport.h
Antoine Pitroua4932352012-04-16 18:29:28 +0200936
Łukasz Langaa785c872016-09-09 17:37:37 -0700937# Generate DTrace probe macros, then rename them (PYTHON_ -> PyDTrace_) to
938# follow our naming conventions. dtrace(1) uses the output filename to generate
939# an include guard, so we can't use a pipeline to transform its output.
940Include/pydtrace_probes.h: $(srcdir)/Include/pydtrace.d
stratakisf6eae5b2017-05-10 17:08:15 +0200941 $(MKDIR_P) Include
Łukasz Langaa785c872016-09-09 17:37:37 -0700942 $(DTRACE) $(DFLAGS) -o $@ -h -s $<
943 : sed in-place edit with POSIX-only tools
944 sed 's/PYTHON_/PyDTrace_/' $@ > $@.tmp
945 mv $@.tmp $@
946
Christian Heimes8a8b59c2019-06-10 17:19:48 +0200947Python/ceval.o: $(srcdir)/Include/pydtrace.h
948Python/import.o: $(srcdir)/Include/pydtrace.h
949Modules/gcmodule.o: $(srcdir)/Include/pydtrace.h
Jakub Kulík5c8f5372019-01-24 18:29:48 +0100950
Łukasz Langaa785c872016-09-09 17:37:37 -0700951Python/pydtrace.o: $(srcdir)/Include/pydtrace.d $(DTRACE_DEPS)
952 $(DTRACE) $(DFLAGS) -o $@ -G -s $< $(DTRACE_DEPS)
953
Trent Nelson9effe692012-10-16 08:41:32 -0400954Objects/typeobject.o: Objects/typeslots.inc
Victor Stinnera5c62a82017-05-03 18:21:48 +0200955
956.PHONY: regen-typeslots
957regen-typeslots:
958 # Regenerate Objects/typeslots.inc from Include/typeslotsh
959 # using Objects/typeslots.py
960 $(PYTHON_FOR_REGEN) $(srcdir)/Objects/typeslots.py \
961 < $(srcdir)/Include/typeslots.h \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200962 $(srcdir)/Objects/typeslots.inc.new
963 $(UPDATE_FILE) $(srcdir)/Objects/typeslots.inc $(srcdir)/Objects/typeslots.inc.new
Eric Smith8c663262007-08-25 02:26:07 +0000964
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000965############################################################################
966# Header files
967
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000968PYTHON_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200969 $(srcdir)/Include/Python.h \
970 $(srcdir)/Include/abstract.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200971 $(srcdir)/Include/asdl.h \
972 $(srcdir)/Include/ast.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200973 $(srcdir)/Include/bitset.h \
T. Woutersb4612f52019-09-09 05:17:18 -0700974 $(srcdir)/Include/bltinmodule.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200975 $(srcdir)/Include/boolobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200976 $(srcdir)/Include/bytearrayobject.h \
977 $(srcdir)/Include/bytesobject.h \
978 $(srcdir)/Include/cellobject.h \
979 $(srcdir)/Include/ceval.h \
980 $(srcdir)/Include/classobject.h \
981 $(srcdir)/Include/code.h \
982 $(srcdir)/Include/codecs.h \
983 $(srcdir)/Include/compile.h \
984 $(srcdir)/Include/complexobject.h \
T. Woutersb4612f52019-09-09 05:17:18 -0700985 $(srcdir)/Include/context.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200986 $(srcdir)/Include/descrobject.h \
987 $(srcdir)/Include/dictobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200988 $(srcdir)/Include/dynamic_annotations.h \
989 $(srcdir)/Include/enumobject.h \
990 $(srcdir)/Include/errcode.h \
991 $(srcdir)/Include/eval.h \
992 $(srcdir)/Include/fileobject.h \
993 $(srcdir)/Include/fileutils.h \
994 $(srcdir)/Include/floatobject.h \
995 $(srcdir)/Include/frameobject.h \
996 $(srcdir)/Include/funcobject.h \
997 $(srcdir)/Include/genobject.h \
998 $(srcdir)/Include/import.h \
Eric Snowc11183c2019-03-15 16:35:46 -0600999 $(srcdir)/Include/interpreteridobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001000 $(srcdir)/Include/intrcheck.h \
1001 $(srcdir)/Include/iterobject.h \
1002 $(srcdir)/Include/listobject.h \
1003 $(srcdir)/Include/longintrepr.h \
1004 $(srcdir)/Include/longobject.h \
1005 $(srcdir)/Include/marshal.h \
1006 $(srcdir)/Include/memoryobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001007 $(srcdir)/Include/methodobject.h \
1008 $(srcdir)/Include/modsupport.h \
1009 $(srcdir)/Include/moduleobject.h \
Barry Warsaw409da152012-06-03 16:18:47 -04001010 $(srcdir)/Include/namespaceobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001011 $(srcdir)/Include/node.h \
1012 $(srcdir)/Include/object.h \
1013 $(srcdir)/Include/objimpl.h \
T. Woutersb4612f52019-09-09 05:17:18 -07001014 $(srcdir)/Include/odictobject.h \
Victor Stinnera5c62a82017-05-03 18:21:48 +02001015 $(srcdir)/Include/opcode.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001016 $(srcdir)/Include/osdefs.h \
Brett Cannon82029ac2016-06-12 13:21:22 -07001017 $(srcdir)/Include/osmodule.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001018 $(srcdir)/Include/patchlevel.h \
Antoine Pitrou91f43802019-05-26 17:10:09 +02001019 $(srcdir)/Include/picklebufobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001020 $(srcdir)/Include/pyarena.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001021 $(srcdir)/Include/pycapsule.h \
1022 $(srcdir)/Include/pyctype.h \
1023 $(srcdir)/Include/pydebug.h \
Łukasz Langaa785c872016-09-09 17:37:37 -07001024 $(srcdir)/Include/pydtrace.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001025 $(srcdir)/Include/pyerrors.h \
1026 $(srcdir)/Include/pyfpe.h \
Christian Heimes985ecdc2013-11-20 11:46:18 +01001027 $(srcdir)/Include/pyhash.h \
Nick Coghland6009512014-11-20 21:39:37 +10001028 $(srcdir)/Include/pylifecycle.h \
T. Woutersb4612f52019-09-09 05:17:18 -07001029 $(srcdir)/Include/pymacconfig.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001030 $(srcdir)/Include/pymacro.h \
T. Woutersb4612f52019-09-09 05:17:18 -07001031 $(srcdir)/Include/pymath.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001032 $(srcdir)/Include/pymem.h \
1033 $(srcdir)/Include/pyport.h \
1034 $(srcdir)/Include/pystate.h \
1035 $(srcdir)/Include/pystrcmp.h \
Gregory P. Smith8cb65692015-04-25 23:22:26 +00001036 $(srcdir)/Include/pystrhex.h \
T. Woutersb4612f52019-09-09 05:17:18 -07001037 $(srcdir)/Include/pystrtod.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001038 $(srcdir)/Include/pythonrun.h \
1039 $(srcdir)/Include/pythread.h \
1040 $(srcdir)/Include/pytime.h \
1041 $(srcdir)/Include/rangeobject.h \
1042 $(srcdir)/Include/setobject.h \
1043 $(srcdir)/Include/sliceobject.h \
1044 $(srcdir)/Include/structmember.h \
1045 $(srcdir)/Include/structseq.h \
1046 $(srcdir)/Include/symtable.h \
1047 $(srcdir)/Include/sysmodule.h \
T. Woutersb4612f52019-09-09 05:17:18 -07001048 $(srcdir)/Include/token.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001049 $(srcdir)/Include/traceback.h \
Victor Stinner6279c1c2018-10-25 15:54:13 +02001050 $(srcdir)/Include/tracemalloc.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001051 $(srcdir)/Include/tupleobject.h \
1052 $(srcdir)/Include/ucnhash.h \
1053 $(srcdir)/Include/unicodeobject.h \
1054 $(srcdir)/Include/warnings.h \
1055 $(srcdir)/Include/weakrefobject.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001056 \
Georg Brandl86def6c2008-01-21 20:36:10 +00001057 pyconfig.h \
Charles-François Natali46c686f2013-12-15 19:09:00 +01001058 $(PARSER_HEADERS) \
Victor Stinnera5c62a82017-05-03 18:21:48 +02001059 $(srcdir)/Include/Python-ast.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001060 \
Victor Stinner54ba5562018-11-28 13:01:32 +01001061 $(srcdir)/Include/cpython/abstract.h \
Victor Stinner98921ae2020-02-12 23:54:31 +01001062 $(srcdir)/Include/cpython/bytearrayobject.h \
1063 $(srcdir)/Include/cpython/bytesobject.h \
Victor Stinnerf4b1e3d2019-11-04 19:48:34 +01001064 $(srcdir)/Include/cpython/ceval.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001065 $(srcdir)/Include/cpython/dictobject.h \
Steve Dowerb82e17e2019-05-23 08:45:22 -07001066 $(srcdir)/Include/cpython/fileobject.h \
Victor Stinner8c3aee62020-02-12 23:55:09 +01001067 $(srcdir)/Include/cpython/fileutils.h \
Victor Stinner01b63ec2019-06-19 00:48:09 +02001068 $(srcdir)/Include/cpython/import.h \
Victor Stinner331a6a52019-05-27 16:39:22 +02001069 $(srcdir)/Include/cpython/initconfig.h \
Eric Snowc11183c2019-03-15 16:35:46 -06001070 $(srcdir)/Include/cpython/interpreteridobject.h \
Victor Stinnerbec41862020-02-07 09:20:22 +01001071 $(srcdir)/Include/cpython/listobject.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001072 $(srcdir)/Include/cpython/object.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001073 $(srcdir)/Include/cpython/objimpl.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001074 $(srcdir)/Include/cpython/pyerrors.h \
1075 $(srcdir)/Include/cpython/pylifecycle.h \
Victor Stinneraba7d662019-04-15 17:29:31 +02001076 $(srcdir)/Include/cpython/pymem.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001077 $(srcdir)/Include/cpython/pystate.h \
Steve Dowerb82e17e2019-05-23 08:45:22 -07001078 $(srcdir)/Include/cpython/sysmodule.h \
Victor Stinnerfd1e0e92019-05-20 02:22:32 +02001079 $(srcdir)/Include/cpython/traceback.h \
Victor Stinner54ba5562018-11-28 13:01:32 +01001080 $(srcdir)/Include/cpython/tupleobject.h \
1081 $(srcdir)/Include/cpython/unicodeobject.h \
Victor Stinnere4211062018-11-23 17:00:00 +01001082 \
Victor Stinnera15e2602020-04-08 02:01:56 +02001083 $(srcdir)/Include/internal/pycore_abstract.h \
Victor Stinnere281f7d2018-11-01 02:30:36 +01001084 $(srcdir)/Include/internal/pycore_accu.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001085 $(srcdir)/Include/internal/pycore_atomic.h \
Victor Stinner1ae035b2020-04-17 17:47:20 +02001086 $(srcdir)/Include/internal/pycore_byteswap.h \
Victor Stinner45876a92020-02-12 22:32:34 +01001087 $(srcdir)/Include/internal/pycore_bytes_methods.h \
Victor Stinner4d231bc2019-11-14 13:36:21 +01001088 $(srcdir)/Include/internal/pycore_call.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001089 $(srcdir)/Include/internal/pycore_ceval.h \
Inada Naoki91234a12019-06-03 21:30:58 +09001090 $(srcdir)/Include/internal/pycore_code.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001091 $(srcdir)/Include/internal/pycore_condvar.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001092 $(srcdir)/Include/internal/pycore_context.h \
Victor Stinnere9e7d282020-02-12 22:54:42 +01001093 $(srcdir)/Include/internal/pycore_dtoa.h \
Victor Stinner984061e2018-11-23 12:30:40 +01001094 $(srcdir)/Include/internal/pycore_fileutils.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001095 $(srcdir)/Include/internal/pycore_getopt.h \
1096 $(srcdir)/Include/internal/pycore_gil.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001097 $(srcdir)/Include/internal/pycore_hamt.h \
Victor Stinner01b63ec2019-06-19 00:48:09 +02001098 $(srcdir)/Include/internal/pycore_import.h \
Victor Stinner331a6a52019-05-27 16:39:22 +02001099 $(srcdir)/Include/internal/pycore_initconfig.h \
Victor Stinner0c13e1f2020-04-13 12:47:17 +02001100 $(srcdir)/Include/internal/pycore_interp.h \
Victor Stinner984061e2018-11-23 12:30:40 +01001101 $(srcdir)/Include/internal/pycore_object.h \
Victor Stinnera1c249c2018-11-01 03:15:58 +01001102 $(srcdir)/Include/internal/pycore_pathconfig.h \
Victor Stinner438a12d2019-05-24 17:01:38 +02001103 $(srcdir)/Include/internal/pycore_pyerrors.h \
Victor Stinner621cebe2018-11-12 16:53:38 +01001104 $(srcdir)/Include/internal/pycore_pyhash.h \
1105 $(srcdir)/Include/internal/pycore_pylifecycle.h \
1106 $(srcdir)/Include/internal/pycore_pymem.h \
1107 $(srcdir)/Include/internal/pycore_pystate.h \
Victor Stinner1c4cbdf2020-04-13 11:45:21 +02001108 $(srcdir)/Include/internal/pycore_runtime.h \
Victor Stinner08faf002020-03-26 18:57:32 +01001109 $(srcdir)/Include/internal/pycore_sysmodule.h \
Victor Stinnerfd1e0e92019-05-20 02:22:32 +02001110 $(srcdir)/Include/internal/pycore_traceback.h \
Victor Stinnerec13b932018-11-25 23:56:17 +01001111 $(srcdir)/Include/internal/pycore_tupleobject.h \
Victor Stinner27e2d1f2018-11-01 00:52:28 +01001112 $(srcdir)/Include/internal/pycore_warnings.h \
Łukasz Langaa785c872016-09-09 17:37:37 -07001113 $(DTRACE_HEADERS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001114
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001115$(LIBRARY_OBJS) $(MODOBJS) Programs/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +00001116
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001117
1118######################################################################
1119
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001120TESTOPTS= $(EXTRATESTOPTS)
1121TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS)
1122TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py
Victor Stinner2f462a62016-09-12 13:04:17 +02001123TESTTIMEOUT= 1200
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001124
Victor Stinnera3a01a22017-08-18 11:31:52 +02001125.PHONY: test testall testuniversal buildbottest pythoninfo
1126
Victor Stinner47fbc4e2019-06-24 12:03:00 +02001127# Remove "test_python_*" directories of previous failed test jobs.
1128# Pass TESTOPTS options because it can contain --tempdir option.
1129cleantest: build_all
1130 $(TESTRUNNER) $(TESTOPTS) --cleanup
1131
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001132# Run a basic set of regression tests.
1133# This excludes some tests that are particularly resource-intensive.
torsavaa1054c32017-05-05 17:35:50 +02001134test: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001135 $(TESTRUNNER) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001136
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001137# Run the full test suite twice - once without .pyc files, and once with.
1138# In the past, we've had problems where bugs in the marshalling or
1139# elsewhere caused bytecode read from .pyc files to behave differently
1140# than bytecode generated directly from a .py source file. Sometimes
1141# the bytecode read from a .pyc file had the bug, sometimes the directly
1142# generated bytecode. This is sometimes a very shy bug needing a lot of
1143# sample data.
torsavaa1054c32017-05-05 17:35:50 +02001144testall: @DEF_MAKE_RULE@ platform
Skip Montanaro446ad712003-05-06 15:30:20 +00001145 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001146 $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +00001147 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001148 -$(TESTRUNNER) -u all $(TESTOPTS)
1149 $(TESTRUNNER) -u all $(TESTOPTS)
Skip Montanaro446ad712003-05-06 15:30:20 +00001150
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001151# Run the test suite for both architectures in a Universal build on OSX.
1152# Must be run on an Intel box.
torsavaa1054c32017-05-05 17:35:50 +02001153testuniversal: @DEF_MAKE_RULE@ platform
Martin Panteradab00f2016-09-22 09:34:43 +00001154 @if [ `arch` != 'i386' ]; then \
Thomas Wouters477c8d52006-05-27 19:21:47 +00001155 echo "This can only be used on OSX/i386" ;\
1156 exit 1 ;\
1157 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001158 $(TESTRUNNER) -u all $(TESTOPTS)
1159 $(RUNSHARED) /usr/libexec/oah/translate \
1160 ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001161
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001162# Like testall, but with only one pass and without multiple processes.
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001163# 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 -07001164buildbottest: build_all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +00001165 -@if which pybuildbot.identify >/dev/null 2>&1; then \
1166 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
1167 fi
Victor Stinner00561182017-06-30 16:44:08 +02001168 $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --timeout=$(TESTTIMEOUT) $(TESTOPTS)
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +00001169
Victor Stinnera3a01a22017-08-18 11:31:52 +02001170pythoninfo: build_all
1171 $(RUNSHARED) ./$(BUILDPYTHON) -m test.pythoninfo
1172
Jeremy Hyltonfdd6dee2009-03-27 21:24:45 +00001173QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
1174 test_multibytecodec test_urllib2_localnet test_itertools \
Richard Oudkerk84ed9a62013-08-14 15:35:41 +01001175 test_multiprocessing_fork test_multiprocessing_spawn \
1176 test_multiprocessing_forkserver \
1177 test_mailbox test_socket test_poll \
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001178 test_select test_zipfile test_concurrent_futures
torsavaa1054c32017-05-05 17:35:50 +02001179quicktest: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001180 $(TESTRUNNER) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +00001181
Christian Heimesd3b9f972017-09-06 18:59:22 -07001182# SSL tests
1183.PHONY: multisslcompile multissltest
1184multisslcompile: build_all
Christian Heimesced9cb52018-01-16 21:02:26 +01001185 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py --steps=modules
Christian Heimesd3b9f972017-09-06 18:59:22 -07001186
1187multissltest: build_all
1188 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py
Barry Warsaw42119252001-03-03 04:14:21 +00001189
Ned Deily322f5ba2013-11-21 23:01:59 -08001190install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@
1191 if test "x$(ENSUREPIP)" != "xno" ; then \
1192 case $(ENSUREPIP) in \
1193 upgrade) ensurepip="--upgrade" ;; \
1194 install|*) ensurepip="" ;; \
1195 esac; \
1196 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1197 $$ensurepip --root=$(DESTDIR)/ ; \
1198 fi
Guido van Rossumdc21db32008-04-07 18:37:41 +00001199
Ned Deily322f5ba2013-11-21 23:01:59 -08001200altinstall: commoninstall
1201 if test "x$(ENSUREPIP)" != "xno" ; then \
1202 case $(ENSUREPIP) in \
1203 upgrade) ensurepip="--altinstall --upgrade" ;; \
1204 install|*) ensurepip="--altinstall" ;; \
1205 esac; \
1206 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1207 $$ensurepip --root=$(DESTDIR)/ ; \
1208 fi
1209
xdegaye0de92852017-11-08 16:03:58 +01001210commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \
Ned Deily322f5ba2013-11-21 23:01:59 -08001211 altbininstall libinstall inclinstall libainstall \
1212 sharedinstall oldsharedinstall altmaninstall \
1213 @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001214
1215# Install shared libraries enabled by Setup
1216DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
1217
1218oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
1219 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +00001220 if test $$i != X; then \
1221 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001222 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +00001223 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001224 done
1225
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001226$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001227 @for i in $(DESTDIRS); \
1228 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001229 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001230 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001231 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001232 else true; \
1233 fi; \
1234 done
1235
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001236# Install the interpreter with $(VERSION) affixed
1237# This goes into $(exec_prefix)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001238altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
Martin v. Löwisd8a20d22002-05-08 08:59:59 +00001239 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001240 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001241 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001242 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001243 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001244 else true; \
1245 fi; \
1246 done
Ned Deilyb8f944f2013-11-21 22:42:25 -08001247 if test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
1248 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1249 else \
1250 $(INSTALL_PROGRAM) $(STRIPFLAG) Mac/pythonw $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1251 fi
Barry Warsaw771d33e2010-12-13 18:04:23 +00001252 -if test "$(VERSION)" != "$(LDVERSION)"; then \
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001253 if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001254 then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1255 fi; \
1256 (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \
Barry Warsawad6f8772010-12-11 21:32:01 +00001257 fi
Ned Deily78094ac2013-07-08 14:33:03 -07001258 if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
Georg Brandl1f01deb2009-01-03 22:47:39 +00001259 if test -n "$(DLLLIBRARY)" ; then \
1260 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001261 else \
Georg Brandlb1441c72009-01-03 22:33:39 +00001262 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
1263 if test $(LDLIBRARY) != $(INSTSONAME); then \
1264 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
Martin v. Löwise3be8602003-11-18 19:54:20 +00001265 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001266 fi; \
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001267 if test -n "$(PY3LIBRARY)"; then \
1268 $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \
1269 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001270 else true; \
1271 fi
Ned Deilyb8f944f2013-11-21 22:42:25 -08001272 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1273 rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
1274 lipo $(LIPO_32BIT_FLAGS) \
1275 -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
1276 $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1277 fi
Benjamin Peterson932073a2009-05-23 16:14:33 +00001278
1279bininstall: altbininstall
Victor Stinner8de795f2015-12-13 21:26:17 +01001280 if test ! -d $(DESTDIR)$(LIBPC); then \
Victor Stinnerc2021552015-12-13 21:20:36 +01001281 echo "Creating directory $(LIBPC)"; \
1282 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \
1283 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001284 -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
1285 then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001286 else true; \
1287 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001288 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
Barry Warsaw771d33e2010-12-13 18:04:23 +00001289 -if test "$(VERSION)" != "$(LDVERSION)"; then \
1290 rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
1291 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
1292 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
1293 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
Victor Stinnerbc66fac2019-05-24 18:27:13 +02001294 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION)-embed.pc; \
1295 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python-$(LDVERSION)-embed.pc); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001296 fi
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001297 -rm -f $(DESTDIR)$(BINDIR)/python3-config
1298 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
Antoine Pitrou20327222009-05-24 20:39:11 +00001299 -rm -f $(DESTDIR)$(LIBPC)/python3.pc
1300 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc)
Victor Stinner0a8e5722019-05-23 03:30:23 +02001301 -rm -f $(DESTDIR)$(LIBPC)/python3-embed.pc
1302 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION)-embed.pc python3-embed.pc)
Georg Brandlff52f762010-12-28 09:51:43 +00001303 -rm -f $(DESTDIR)$(BINDIR)/idle3
1304 (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3)
1305 -rm -f $(DESTDIR)$(BINDIR)/pydoc3
1306 (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3)
1307 -rm -f $(DESTDIR)$(BINDIR)/2to3
1308 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001309 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1310 rm -f $(DESTDIR)$(BINDIR)/python3-32$(EXE); \
1311 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-32$(EXE) python3-32$(EXE)) \
1312 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001313
Ned Deilya48b61f2013-02-08 22:53:51 -08001314# Install the versioned manual page
1315altmaninstall:
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001316 @for i in $(MANDIR) $(MANDIR)/man1; \
1317 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001318 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001319 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001320 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001321 else true; \
1322 fi; \
1323 done
1324 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +00001325 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001326
Ned Deilya48b61f2013-02-08 22:53:51 -08001327# Install the unversioned manual page
1328maninstall: altmaninstall
1329 -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1
1330 (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1)
1331
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001332# Install the library
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001333XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Benjamin Petersoncb6dbe52010-03-18 21:36:06 +00001334LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
Victor Stinner5b326592011-05-25 01:15:59 +02001335 tkinter/test/test_ttk site-packages test \
Serhiy Storchakac3a9b352013-10-14 21:18:50 +03001336 test/audiodata \
Ned Deilye2d51902011-07-04 19:06:20 -07001337 test/capath test/data \
Stefan Behnel0d5864f2019-05-02 10:35:02 +02001338 test/cjkencodings test/decimaltestdata \
1339 test/xmltestdata test/xmltestdata/c14n-20 \
Łukasz Langaa785c872016-09-09 17:37:37 -07001340 test/dtracedata \
Ned Deily914db0f2015-02-08 15:48:40 +11001341 test/eintrdata \
Ned Deily6bb21c42014-02-02 13:59:49 -08001342 test/imghdrdata \
Victor Stinnerdc096552015-11-22 15:18:40 +01001343 test/libregrtest \
Ned Deilycdc75d92013-07-30 14:30:15 -07001344 test/subprocessdata test/sndhdrdata test/support \
Alexander Belopolskye8f58322010-10-15 16:28:20 +00001345 test/tracedmodules test/encoded_modules \
Ned Deily7c562f62014-12-13 02:05:15 -08001346 test/test_import \
1347 test/test_import/data \
1348 test/test_import/data/circular_imports \
1349 test/test_import/data/circular_imports/subpkg \
Serhiy Storchakad5ed47d2017-07-27 12:24:36 +03001350 test/test_import/data/package \
1351 test/test_import/data/package2 \
Dino Viehland2528a6c2020-01-27 14:04:56 -08001352 test/test_import/data/unwritable \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001353 importlib \
Chih-Hsuan Yenc3738cf2019-05-25 16:09:35 +08001354 importlib/metadata \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001355 test/test_importlib \
1356 test/test_importlib/builtin \
Jason R. Coombsf7fba6c2019-05-25 10:00:21 -04001357 test/test_importlib/data \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001358 test/test_importlib/data01 \
1359 test/test_importlib/data01/subdirectory \
1360 test/test_importlib/data02 \
1361 test/test_importlib/data02/one \
1362 test/test_importlib/data02/two \
1363 test/test_importlib/data03 \
1364 test/test_importlib/data03/namespace \
1365 test/test_importlib/data03/namespace/portion1 \
1366 test/test_importlib/data03/namespace/portion2 \
1367 test/test_importlib/extension \
1368 test/test_importlib/frozen \
1369 test/test_importlib/import_ \
Ned Deily490e53b2014-04-08 18:54:49 -07001370 test/test_importlib/namespace_pkgs \
1371 test/test_importlib/namespace_pkgs/both_portions \
1372 test/test_importlib/namespace_pkgs/both_portions/foo \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001373 test/test_importlib/namespace_pkgs/module_and_namespace_package \
1374 test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test \
Ned Deily490e53b2014-04-08 18:54:49 -07001375 test/test_importlib/namespace_pkgs/not_a_namespace_pkg \
1376 test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo \
1377 test/test_importlib/namespace_pkgs/portion1 \
1378 test/test_importlib/namespace_pkgs/portion1/foo \
1379 test/test_importlib/namespace_pkgs/portion2 \
1380 test/test_importlib/namespace_pkgs/portion2/foo \
1381 test/test_importlib/namespace_pkgs/project1 \
1382 test/test_importlib/namespace_pkgs/project1/parent \
1383 test/test_importlib/namespace_pkgs/project1/parent/child \
1384 test/test_importlib/namespace_pkgs/project2 \
1385 test/test_importlib/namespace_pkgs/project2/parent \
1386 test/test_importlib/namespace_pkgs/project2/parent/child \
1387 test/test_importlib/namespace_pkgs/project3 \
1388 test/test_importlib/namespace_pkgs/project3/parent \
1389 test/test_importlib/namespace_pkgs/project3/parent/child \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001390 test/test_importlib/source \
1391 test/test_importlib/zipdata01 \
1392 test/test_importlib/zipdata02 \
Gregory P. Smithc3744742019-09-11 05:31:37 -05001393 test/ziptestdata \
Ned Deily3c97e462013-10-17 18:08:00 -07001394 asyncio \
1395 test/test_asyncio \
Georg Brandl53291232011-02-23 07:30:12 +00001396 collections concurrent concurrent/futures encodings \
R David Murray92cafb82011-06-17 11:41:49 -04001397 email email/mime test/test_email test/test_email/data \
Nick Coghland0cf0632013-11-11 22:11:55 +10001398 ensurepip ensurepip/_bundled \
Ezio Melotti66f2ea02013-08-08 15:03:45 +03001399 html json test/test_json http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001400 sqlite3 sqlite3/test \
Georg Brandl1158a332009-06-04 09:30:30 +00001401 logging csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +00001402 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001403 lib2to3/tests/data lib2to3/tests/data/fixers \
1404 lib2to3/tests/data/fixers/myfixes \
Ned Deilyc3909e52013-11-03 20:08:53 -08001405 ctypes ctypes/test ctypes/macholib \
1406 idlelib idlelib/Icons idlelib/idle_test \
Fred Drakee612c8e2005-01-19 06:24:58 +00001407 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Zachary Warede354bc2016-08-30 02:12:27 -05001408 test/test_tools test/test_warnings test/test_warnings/data \
Alexander Belopolskyea13d9d2010-11-01 17:39:37 +00001409 turtledemo \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +00001410 multiprocessing multiprocessing/dummy \
Ned Deilye8b416e2012-03-22 13:34:11 -07001411 unittest unittest/test unittest/test/testmock \
Vinay Sajip5fd832b2017-01-13 19:08:47 +00001412 venv venv/scripts venv/scripts/common venv/scripts/posix \
Zachary Warec4b53af2016-09-09 17:59:49 -07001413 curses pydoc_data
1414libinstall: build_all $(srcdir)/Modules/xxmodule.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001415 @for i in $(SCRIPTDIR) $(LIBDEST); \
1416 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001417 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001418 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001419 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001420 else true; \
1421 fi; \
1422 done
1423 @for d in $(LIBSUBDIRS); \
1424 do \
1425 a=$(srcdir)/Lib/$$d; \
1426 if test ! -d $$a; then continue; else true; fi; \
1427 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001428 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001429 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001430 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001431 else true; \
1432 fi; \
1433 done
doko@ubuntu.com55532312016-06-14 08:55:19 +02001434 @for i in $(srcdir)/Lib/*.py; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001435 do \
1436 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001437 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001438 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001439 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001440 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001441 echo $(INSTALL_DATA) $$i $(LIBDEST); \
1442 fi; \
1443 done
1444 @for d in $(LIBSUBDIRS); \
1445 do \
1446 a=$(srcdir)/Lib/$$d; \
1447 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001448 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001449 b=$(LIBDEST)/$$d; \
1450 for i in $$a/*; \
1451 do \
1452 case $$i in \
1453 *CVS) ;; \
1454 *.py[co]) ;; \
1455 *.orig) ;; \
Victor Stinnere8692812019-07-15 17:18:42 +02001456 *wininst-*.exe) ;; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001457 *~) ;; \
1458 *) \
1459 if test -d $$i; then continue; fi; \
1460 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001461 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001462 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001463 else \
1464 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001465 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001466 fi;; \
1467 esac; \
1468 done; \
1469 done
Zachary Warec4b53af2016-09-09 17:59:49 -07001470 $(INSTALL_DATA) `cat pybuilddir.txt`/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py \
1471 $(DESTDIR)$(LIBDEST); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001472 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Ned Deily58f27b22011-06-28 00:42:50 -07001473 if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
1474 $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
1475 $(DESTDIR)$(LIBDEST)/distutils/tests ; \
1476 fi
Guido van Rossum827bfd02007-07-15 13:12:42 +00001477 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001478 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001479 -j0 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001480 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001481 $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +00001482 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001483 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001484 -j0 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001485 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001486 $(DESTDIR)$(LIBDEST)
Brett Cannonf299abd2015-04-13 14:21:02 -04001487 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1488 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001489 -j0 -d $(LIBDEST) -f \
Brett Cannonf299abd2015-04-13 14:21:02 -04001490 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
1491 $(DESTDIR)$(LIBDEST)
1492 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001493 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001494 -j0 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001495 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001496 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001497 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001498 -j0 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001499 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Ned Deily4725b132012-09-08 19:04:47 -07001500 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Brett Cannonf299abd2015-04-13 14:21:02 -04001501 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
Antoine Pitrou1a2dd822019-05-15 23:45:18 +02001502 -j0 -d $(LIBDEST)/site-packages -f \
Brett Cannonf299abd2015-04-13 14:21:02 -04001503 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
1504 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Ned Deily4725b132012-09-08 19:04:47 -07001505 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
1506 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1507 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001508
Victor Stinner01f073f2019-04-26 17:55:17 +02001509# bpo-21536: Misc/python-config.sh is generated in the build directory
1510# from $(srcdir)Misc/python-config.sh.in.
1511python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh
Martin Panteradab00f2016-09-22 09:34:43 +00001512 @ # Substitution happens here, as the completely-expanded BINDIR
1513 @ # is not available in configure
doko@python.org87421192013-01-26 11:39:31 +01001514 sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py
Martin Panteradab00f2016-09-22 09:34:43 +00001515 @ # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR}
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001516 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 +00001517 @ # On Darwin, always use the python version of the script, the shell
1518 @ # version doesn't use the compiler customizations that are provided
1519 @ # in python (_osx_support.py).
1520 @if test `uname -s` = Darwin; then \
doko@ubuntu.com0df35b02013-08-01 15:32:49 +02001521 cp python-config.py python-config; \
1522 fi
1523
Collin Winterbf199072010-03-19 21:17:17 +00001524
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001525# Install the include files
1526INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
1527inclinstall:
1528 @for i in $(INCLDIRSTOMAKE); \
1529 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001530 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001531 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001532 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001533 else true; \
1534 fi; \
1535 done
Victor Stinnere4211062018-11-23 17:00:00 +01001536 @if test ! -d $(DESTDIR)$(INCLUDEPY)/cpython; then \
1537 echo "Creating directory $(DESTDIR)$(INCLUDEPY)/cpython"; \
1538 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/cpython; \
1539 else true; \
1540 fi
Victor Stinnerf653fd42018-11-23 16:30:12 +01001541 @if test ! -d $(DESTDIR)$(INCLUDEPY)/internal; then \
1542 echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal"; \
1543 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
1544 else true; \
1545 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001546 @for i in $(srcdir)/Include/*.h; \
1547 do \
1548 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001549 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001550 done
Victor Stinnere4211062018-11-23 17:00:00 +01001551 @for i in $(srcdir)/Include/cpython/*.h; \
1552 do \
1553 echo $(INSTALL_DATA) $$i $(INCLUDEPY)/cpython; \
1554 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/cpython; \
1555 done
Victor Stinnerf653fd42018-11-23 16:30:12 +01001556 @for i in $(srcdir)/Include/internal/*.h; \
1557 do \
1558 echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
1559 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
1560 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001561 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001562
1563# Install the library and miscellaneous stuff needed for extending/embedding
1564# This goes into $(exec_prefix)
doko@ubuntu.com100aa182015-04-13 22:10:21 +02001565LIBPL= @LIBPL@
Antoine Pitrou20327222009-05-24 20:39:11 +00001566
1567# pkgconfig directory
1568LIBPC= $(LIBDIR)/pkgconfig
1569
torsavaa1054c32017-05-05 17:35:50 +02001570libainstall: @DEF_MAKE_RULE@ python-config
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001571 @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001572 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001573 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001574 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001575 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001576 else true; \
1577 fi; \
1578 done
Martin v. Löwis1142de32002-03-29 16:28:31 +00001579 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +00001580 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07001581 if test "$(SHLIB_SUFFIX)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001582 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001583 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001584 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001585 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001586 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001587 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001588 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001589 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001590 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001591 $(INSTALL_DATA) Programs/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001592 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
1593 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
Antoine Pitrou961d54c2018-07-16 19:03:03 +02001594 $(INSTALL_DATA) $(srcdir)/Modules/Setup $(DESTDIR)$(LIBPL)/Setup
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001595 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
Antoine Pitrou20327222009-05-24 20:39:11 +00001596 $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
Victor Stinner0a8e5722019-05-23 03:30:23 +02001597 $(INSTALL_DATA) Misc/python-embed.pc $(DESTDIR)$(LIBPC)/python-$(VERSION)-embed.pc
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001598 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
1599 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
doko@python.org87421192013-01-26 11:39:31 +01001600 $(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001601 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Martin Panter5401e872016-08-12 13:21:05 +00001602 @if [ -s Modules/python.exp -a \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001603 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
1604 echo; echo "Installing support files for building shared extension modules on AIX:"; \
Martin Panter5401e872016-08-12 13:21:05 +00001605 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001606 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001607 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001608 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001609 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001610 echo "$(LIBPL)/makexp_aix"; \
Martin Panter395733d2016-11-20 07:56:37 +00001611 $(INSTALL_SCRIPT) Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001612 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001613 echo "$(LIBPL)/ld_so_aix"; \
1614 echo; echo "See Misc/AIX-NOTES for details."; \
1615 else true; \
1616 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001617
1618# Install the dynamically loadable modules
1619# This goes into $(exec_prefix)
Benjamin Petersonbbda0c52010-07-17 20:39:23 +00001620sharedinstall: sharedmods
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001621 $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001622 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +00001623 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001624 --install-platlib=$(DESTSHARED) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001625 --root=$(DESTDIR)/
Xavier de Gaye1c17e7f2016-10-28 11:22:05 +02001626 -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py
Trent Nelsonc101bf32012-10-16 08:13:12 -04001627 -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001628
Jack Jansencb4321e2002-08-09 00:18:21 +00001629# Here are a couple of targets for MacOSX again, to install a full
1630# framework-based Python. frameworkinstall installs everything, the
1631# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001632# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +00001633#
Thomas Wouters477c8d52006-05-27 19:21:47 +00001634#
Martin Panter46f50722016-05-26 05:35:26 +00001635# This target is here for backward compatibility, previous versions of Python
Thomas Wouters477c8d52006-05-27 19:21:47 +00001636# hadn't integrated framework installation in the normal install process.
1637frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +00001638
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001639# On install, we re-make the framework
1640# structure in the install location, /Library/Frameworks/ or the argument to
1641# --enable-framework. If --enable-framework has been specified then we have
1642# automatically set prefix to the location deep down in the framework, so we
1643# only have to cater for the structural bits of the framework.
1644
Jack Jansencb4321e2002-08-09 00:18:21 +00001645frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1646
1647frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001648 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001649 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001650 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001651 else true; \
1652 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001653 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001654 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001655 echo "Creating directory $(DESTDIR)$$i"; \
1656 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001657 else true; \
1658 fi; \
1659 done
Ronald Oussoren0499d0b2010-12-07 14:41:05 +00001660 $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001661 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 +00001662 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001663 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001664 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1665 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001666 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001667
Jack Jansencb4321e2002-08-09 00:18:21 +00001668# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001669# Install a number of symlinks to keep software that expects a normal unix
1670# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001671frameworkinstallmaclib:
Ned Deilyb8d3e402016-06-18 15:58:52 -04001672 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).a"
1673 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).dylib"
1674 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).a"
1675 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).dylib"
Christian Heimesae6275d2013-07-09 14:30:04 +02001676 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib"
1677 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
Jack Jansencb4321e2002-08-09 00:18:21 +00001678
1679# This installs the IDE, the Launcher and other apps into /Applications
1680frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001681 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001682
Ned Deilyb8f944f2013-11-21 22:42:25 -08001683# Build the bootstrap executable that will spawn the interpreter inside
1684# an app bundle within the framework. This allows the interpreter to
1685# run OS X GUI APIs.
1686frameworkpythonw:
1687 cd Mac && $(MAKE) pythonw
1688
1689# This installs the python* and other bin symlinks in $prefix/bin or in
1690# a bin directory relative to the framework root
Jack Jansencb4321e2002-08-09 00:18:21 +00001691frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001692 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1693
1694frameworkaltinstallunixtools:
1695 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001696
Georg Brandl59b44722010-12-30 22:12:40 +00001697# This installs the Tools into the applications directory.
Jack Jansena1b77582003-06-19 22:35:20 +00001698# It is not part of a normal frameworkinstall
1699frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001700 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001701
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001702# Build the toplevel Makefile
Victor Stinner69f55cc2011-10-12 22:09:40 +02001703Makefile.pre: $(srcdir)/Makefile.pre.in config.status
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001704 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1705 $(MAKE) -f Makefile.pre Makefile
1706
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001707# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001708config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001709 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001710
Jack Jansen1999ef42001-12-06 21:47:20 +00001711.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001712
1713# Some make's put the object file in the current directory
1714.c.o:
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +00001715 $(CC) -c $(PY_CORE_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001716
Victor Stinner826f83f2017-04-28 15:07:10 +02001717# bpo-30104: dtoa.c uses union to cast double to unsigned long[2]. clang 4.0
1718# with -O2 or higher and strict aliasing miscompiles the ratio() function
1719# causing rounding issues. Compile dtoa.c using -fno-strict-aliasing on clang.
1720# https://bugs.llvm.org//show_bug.cgi?id=31928
1721Python/dtoa.o: Python/dtoa.c
1722 $(CC) -c $(PY_CORE_CFLAGS) $(CFLAGS_ALIASING) -o $@ $<
1723
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001724# Run reindent on the library
1725reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001726 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001727
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001728# Rerun configure with the same options as it was run last time,
1729# provided the config.status script exists
1730recheck:
1731 $(SHELL) config.status --recheck
1732 $(SHELL) config.status
1733
Victor Stinnera5c62a82017-05-03 18:21:48 +02001734# Regenerate configure and pyconfig.h.in
1735.PHONY: autoconf
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001736autoconf:
Victor Stinnera5c62a82017-05-03 18:21:48 +02001737 # Regenerate the configure script from configure.ac using autoconf
Matthias Klose80b09d42010-04-25 21:23:32 +00001738 (cd $(srcdir); autoconf -Wall)
Victor Stinnera5c62a82017-05-03 18:21:48 +02001739 # Regenerate pyconfig.h.in from configure.ac using autoheader
Matthias Klose80b09d42010-04-25 21:23:32 +00001740 (cd $(srcdir); autoheader -Wall)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001741
1742# Create a tags file for vi
1743tags::
Victor Stinner48083382018-11-27 12:42:25 +01001744 ctags -w $(srcdir)/Include/*.h $(srcdir)/Include/cpython/*.h $(srcdir)/Include/internal/*.h
Victor Stinner3be3b972017-11-30 22:49:10 +01001745 for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
1746 ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
Anthony Shawef7eaaf2019-12-28 13:32:48 +11001747 find $(srcdir)/Lib -type f -name "*.py" -not -name "test_*.py" -not -path "*/test/*" -not -path "*/tests/*" -not -path "*/*_test/*" | ctags -f tags -w -a -L -
Victor Stinnercf0ac6a2016-08-17 13:58:12 +02001748 LC_ALL=C sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001749
1750# Create a tags file for GNU Emacs
1751TAGS::
1752 cd $(srcdir); \
Victor Stinner48083382018-11-27 12:42:25 +01001753 etags Include/*.h Include/cpython/*.h Include/internal/*.h; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001754 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
Anthony Shawef7eaaf2019-12-28 13:32:48 +11001755 etags -a $(srcdir)/Modules/_ctypes/*.[ch]
1756 find $(srcdir)/Lib -type f -name "*.py" -not -name "test_*.py" -not -path "*/test/*" -not -path "*/tests/*" -not -path "*/*_test/*" | etags - -a
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001757
1758# Sanitation targets -- clean leaves libraries, executables and tags
Mark Dickinson067b38e2009-09-24 19:24:44 +00001759# files, which clobber removes as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001760pycremoval:
Petri Lehtinenbc74ee02011-11-05 21:04:24 +02001761 -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
Barry Warsaw5f2347d2010-04-26 16:02:14 +00001762 -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001763
Guido van Rossum77b5e332007-08-29 23:24:02 +00001764rmtestturds:
1765 -rm -f *BAD *GOOD *SKIPPED
1766 -rm -rf OUT
1767 -rm -f *.TXT
1768 -rm -f *.txt
1769 -rm -f gb-18030-2000.xml
1770
Guido van Rossum8188e632007-08-29 23:48:29 +00001771docclean:
1772 -rm -rf Doc/build
1773 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1774
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -07001775# like the 'clean' target but retain the profile guided optimization (PGO)
1776# data. The PGO data is only valid if source code remains unchanged.
1777clean-retain-profile: pycremoval
Georg Brandl241bdab2010-07-31 22:05:54 +00001778 find . -name '*.[oa]' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001779 find . -name '*.s[ol]' -exec rm -f {} ';'
Georg Brandl241bdab2010-07-31 22:05:54 +00001780 find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
Batuhan Taşkaya1b6b0e72020-03-26 16:10:04 +03001781 find . -name '*.lst' -exec rm -f {} ';'
Thomas Heller6ab91482009-04-24 18:27:10 +00001782 find build -name 'fficonfig.h' -exec rm -f {} ';' || true
Trent Nelsonc101bf32012-10-16 08:13:12 -04001783 find build -name '*.py' -exec rm -f {} ';' || true
1784 find build -name '*.py[co]' -exec rm -f {} ';' || true
1785 -rm -f pybuilddir.txt
Ned Deily4725b132012-09-08 19:04:47 -07001786 -rm -f Lib/lib2to3/*Grammar*.pickle
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001787 -rm -f Programs/_testembed Programs/_freeze_importlib
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)653c8502016-09-06 23:56:54 +00001788 -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';'
Łukasz Langaa785c872016-09-09 17:37:37 -07001789 -rm -f Include/pydtrace_probes.h
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001790 -rm -f profile-gen-stamp
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001791
Christian Heimes33fe8092008-04-13 13:53:33 +00001792profile-removal:
1793 find . -name '*.gc??' -exec rm -f {} ';'
Brett Cannon7188a3e2015-09-18 15:13:44 -07001794 find . -name '*.profclang?' -exec rm -f {} ';'
Zachary Ware5af85642015-12-21 12:09:17 -06001795 find . -name '*.dyn' -exec rm -f {} ';'
Christian Heimes49e52f92013-07-31 00:55:18 +02001796 rm -f $(COVERAGE_INFO)
1797 rm -rf $(COVERAGE_REPORT)
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001798 rm -f profile-run-stamp
Christian Heimes33fe8092008-04-13 13:53:33 +00001799
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -07001800clean: clean-retain-profile
1801 @if test @DEF_MAKE_ALL_RULE@ = profile-opt; then \
1802 rm -f profile-gen-stamp profile-clean-stamp; \
1803 $(MAKE) profile-removal; \
1804 fi
1805
1806clobber: clean
Pablo Galindo1f24a712019-03-01 15:34:44 -08001807 -rm -f $(BUILDPYTHON) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Matthias Klose597e6b42012-04-04 13:20:55 +02001808 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001809 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001810 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001811 -rm -rf $(PYTHONFRAMEWORKDIR)
doko@python.org87421192013-01-26 11:39:31 +01001812 -rm -f python-config.py python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001813
1814# Make things extra clean, before making a distribution:
1815# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001816# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001817distclean: clobber
Christian Heimesf8471862013-11-24 03:32:40 +01001818 for file in $(srcdir)/Lib/test/data/* ; do \
1819 if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
Mark Dickinsonde802be2010-08-01 21:33:01 +00001820 done
Antoine Pitrou961d54c2018-07-16 19:03:03 +02001821 -rm -f core Makefile Makefile.pre config.status Modules/Setup.local \
Xiang Zhangfa5abac2017-05-09 10:32:13 +08001822 Modules/ld_so_aix Modules/python.exp Misc/python.pc \
Victor Stinner0a8e5722019-05-23 03:30:23 +02001823 Misc/python-embed.pc Misc/python-config.sh
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001824 -rm -f python*-gdb.py
Victor Stinner8d50d622016-09-29 22:31:06 +02001825 # Issue #28258: set LC_ALL to avoid issues with Estonian locale.
1826 # Expansion is performed here by shell (spawned by make) itself before
1827 # arguments are passed to find. So LC_ALL=C must be set as a separate
1828 # command.
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001829 LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
Eric V. Smithf4c47b52013-07-02 09:06:54 -04001830 -o -name '[@,#]*' -o -name '*.old' \
1831 -o -name '*.orig' -o -name '*.rej' \
1832 -o -name '*.bak' ')' \
1833 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001834
Victor Stinner87d332d2017-10-24 01:29:53 -07001835# Check that all symbols exported by libpython start with "Py" or "_Py"
torsavaa1054c32017-05-05 17:35:50 +02001836smelly: @DEF_MAKE_RULE@
Victor Stinner87d332d2017-10-24 01:29:53 -07001837 $(RUNSHARED) ./$(BUILDPYTHON) Tools/scripts/smelly.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001838
1839# Find files with funny names
1840funny:
Éric Araujo1c608e32011-08-10 02:01:32 +02001841 find $(SUBDIRS) $(SUBDIRSTOO) \
Éric Araujoe9715b92011-08-10 21:42:23 +02001842 -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001843 -o -name '*.[chs]' \
1844 -o -name '*.py' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001845 -o -name '*.pyw' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001846 -o -name '*.dat' \
1847 -o -name '*.el' \
1848 -o -name '*.fd' \
1849 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001850 -o -name '*.gif' \
1851 -o -name '*.txt' \
1852 -o -name '*.xml' \
1853 -o -name '*.xbm' \
1854 -o -name '*.xpm' \
1855 -o -name '*.uue' \
1856 -o -name '*.decTest' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001857 -o -name '*.tmCommand' \
1858 -o -name '*.tmSnippet' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001859 -o -name 'Setup' \
1860 -o -name 'Setup.*' \
1861 -o -name README \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001862 -o -name NEWS \
1863 -o -name HISTORY \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001864 -o -name Makefile \
1865 -o -name ChangeLog \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001866 -o -name .hgignore \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001867 -o -name MANIFEST \
Éric Araujob5da6e92011-08-16 19:05:56 +02001868 -o -print
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001869
Christian Heimesada8c3b2008-03-18 18:26:33 +00001870# Perform some verification checks on any modified files.
torsavaa1054c32017-05-05 17:35:50 +02001871patchcheck: @DEF_MAKE_RULE@
Georg Brandlfcaf9102008-07-16 02:17:56 +00001872 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001873
Guido van Rossum9454ad72001-08-18 21:08:22 +00001874# Dependencies
1875
Inada Naoki001fee12019-02-20 10:00:09 +09001876Python/thread.o: @THREADHEADERS@ $(srcdir)/Python/condvar.h
Guido van Rossum9454ad72001-08-18 21:08:22 +00001877
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001878# Declare targets that aren't real files
xdegaye0de92852017-11-08 16:03:58 +01001879.PHONY: all build_all sharedmods check-clean-src oldsharedmods test quicktest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001880.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1881.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1882.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1883.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Victor Stinnera5c62a82017-05-03 18:21:48 +02001884.PHONY: frameworkaltinstallunixtools recheck clean clobber distclean
Ned Deily322f5ba2013-11-21 23:01:59 -08001885.PHONY: smelly funny patchcheck touch altmaninstall commoninstall
Neil Schemenauerc6bbcd22019-09-10 02:44:20 -07001886.PHONY: clean-retain-profile profile-removal run_profile_task
1887.PHONY: build_all_generate_profile build_all_merge_profile
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001888.PHONY: gdbhooks
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001889
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001890# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
Barry Warsaw771d33e2010-12-13 18:04:23 +00001891# Local Variables:
1892# mode: makefile
1893# End: