blob: 0ed2cdf079a43a8c28d4f2c4ea0213728ae7458b [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@
Ned Deily5c4b0d02017-03-04 00:19:55 -050044GITVERSION= @GITVERSION@
45GITTAG= @GITTAG@
46GITBRANCH= @GITBRANCH@
Brett Cannon7188a3e2015-09-18 15:13:44 -070047PGO_PROF_GEN_FLAG=@PGO_PROF_GEN_FLAG@
48PGO_PROF_USE_FLAG=@PGO_PROF_USE_FLAG@
49LLVM_PROF_MERGER=@LLVM_PROF_MERGER@
50LLVM_PROF_FILE=@LLVM_PROF_FILE@
51LLVM_PROF_ERR=@LLVM_PROF_ERR@
Łukasz Langaa785c872016-09-09 17:37:37 -070052DTRACE= @DTRACE@
53DFLAGS= @DFLAGS@
54DTRACE_HEADERS= @DTRACE_HEADERS@
55DTRACE_OBJS= @DTRACE_OBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000056
Georg Brandl0d169ea2010-09-03 22:14:52 +000057GNULD= @GNULD@
Tarek Ziadébe720e02009-05-09 11:55:12 +000058
Neil Schemenauer85515ad2001-01-24 17:11:43 +000059# Shell used by make (some versions default to the login shell, which is bad)
60SHELL= /bin/sh
61
62# Use this to make a link between python$(VERSION) and python in $(BINDIR)
63LN= @LN@
64
65# Portable install script (configure doesn't always guess right)
66INSTALL= @INSTALL@
67INSTALL_PROGRAM=@INSTALL_PROGRAM@
Neil Schemenauer3f5cc202001-04-10 23:03:35 +000068INSTALL_SCRIPT= @INSTALL_SCRIPT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000069INSTALL_DATA= @INSTALL_DATA@
70# Shared libraries must be installed with executable mode on some systems;
71# rather than figuring out exactly which, we always give them executable mode.
72# Also, making them read-only seems to be a good idea...
73INSTALL_SHARED= ${INSTALL} -m 555
74
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@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000088CONFIGURE_CPPFLAGS= @CPPFLAGS@
89CONFIGURE_LDFLAGS= @LDFLAGS@
90# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
91# command line to append to these values without stomping the pre-set
92# values.
93PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
Benjamin Petersonacb8c522014-08-09 20:01:49 -070094PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST)
Brett Cannon516592f2004-12-07 00:42:59 +000095# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
96# be able to build extension modules using the directories specified in the
97# environment variables
Martin Panter13419262016-09-13 12:21:47 +000098PY_CPPFLAGS= $(BASECPPFLAGS) -I. -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000099PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS)
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200100NO_AS_NEEDED= @NO_AS_NEEDED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000101LDLAST= @LDLAST@
102SGI_ABI= @SGI_ABI@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000103CCSHARED= @CCSHARED@
104LINKFORSHARED= @LINKFORSHARED@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000105ARFLAGS= @ARFLAGS@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000106# Extra C flags added for building the interpreter object files.
107CFLAGSFORSHARED=@CFLAGSFORSHARED@
108# C flags used for building the interpreter object files
xdegaye063db622018-04-20 17:03:49 +0200109PY_STDMODULE_CFLAGS= $(PY_CFLAGS) $(PY_CFLAGS_NODIST) $(PY_CPPFLAGS) $(CFLAGSFORSHARED)
110PY_CORE_CFLAGS= $(PY_STDMODULE_CFLAGS) -DPy_BUILD_CORE
Victor Stinner826f83f2017-04-28 15:07:10 +0200111# Strict or non-strict aliasing flags used to compile dtoa.c, see above
112CFLAGS_ALIASING=@CFLAGS_ALIASING@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000113
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000114
115# Machine-dependent subdirectories
116MACHDEP= @MACHDEP@
117
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100118# Multiarch directory (may be empty)
119MULTIARCH= @MULTIARCH@
doko@ubuntu.com55532312016-06-14 08:55:19 +0200120MULTIARCH_CPPFLAGS = @MULTIARCH_CPPFLAGS@
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100121
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000122# Install prefix for architecture-independent files
123prefix= @prefix@
124
125# Install prefix for architecture-dependent files
126exec_prefix= @exec_prefix@
127
Thomas Woutersbca54802007-09-10 19:32:14 +0000128# Install prefix for data files
129datarootdir= @datarootdir@
130
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000131# Expanded directories
Antoine Pitrou7a61ba92010-03-21 19:25:26 +0000132BINDIR= @bindir@
133LIBDIR= @libdir@
Martin v. Löwisd429ab62001-08-02 06:20:20 +0000134MANDIR= @mandir@
135INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000136CONFINCLUDEDIR= $(exec_prefix)/include
137SCRIPTDIR= $(prefix)/lib
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000138ABIFLAGS= @ABIFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000139
140# Detailed destination directories
141BINLIBDEST= $(LIBDIR)/python$(VERSION)
142LIBDEST= $(SCRIPTDIR)/python$(VERSION)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000143INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION)
144CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000145
146# Symbols used for using shared libraries
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700147SHLIB_SUFFIX= @SHLIB_SUFFIX@
148EXT_SUFFIX= @EXT_SUFFIX@
Antoine Pitroudbec7802010-10-10 09:37:12 +0000149LDSHARED= @LDSHARED@ $(PY_LDFLAGS)
150BLDSHARED= @BLDSHARED@ $(PY_LDFLAGS)
Tarek Ziadé03d788d2010-04-03 08:46:49 +0000151LDCXXSHARED= @LDCXXSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000152DESTSHARED= $(BINLIBDEST)/lib-dynload
153
154# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000155EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000156BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000157
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000158# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000159UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000160PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
161PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
162PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
163PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000164# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000165# by distutils. The export statement is needed to ensure that the
166# deployment target is active during build.
167MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
168@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
169
Ned Deilyb8f944f2013-11-21 22:42:25 -0800170# Option to install to strip binaries
171STRIPFLAG=-s
172
173# Flags to lipo to produce a 32-bit-only universal executable
174LIPO_32BIT_FLAGS=@LIPO_32BIT_FLAGS@
175
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000176# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
177OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000178
Martin v. Löwis1142de32002-03-29 16:28:31 +0000179# Environment to run shared python without installed libraries
180RUNSHARED= @RUNSHARED@
181
Ned Deily322f5ba2013-11-21 23:01:59 -0800182# ensurepip options
183ENSUREPIP= @ENSUREPIP@
184
Christian Heimesff5be6e2018-01-20 13:19:21 +0100185# OpenSSL options for setup.py so sysconfig can pick up AC_SUBST() vars.
186OPENSSL_INCLUDES=@OPENSSL_INCLUDES@
187OPENSSL_LIBS=@OPENSSL_LIBS@
188OPENSSL_LDFLAGS=@OPENSSL_LDFLAGS@
189
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000190# Modes for directories, executables and data files created by the
191# install process. Default to user-only-writable for all file types.
192DIRMODE= 755
193EXEMODE= 755
194FILEMODE= 644
195
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000196# configure script arguments
197CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000198
199
200# Subdirectories with code
201SRCDIRS= @SRCDIRS@
202
203# Other subdirectories
Georg Brandl59b44722010-12-30 22:12:40 +0000204SUBDIRSTOO= Include Lib Misc
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000205
206# Files and directories to be distributed
Matthias Klose0f4c16e2012-03-14 23:10:15 +0100207CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
Victor Stinnerd783b012017-02-11 02:21:38 +0100208DISTFILES= README.rst ChangeLog $(CONFIGFILES)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000209DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
210DIST= $(DISTFILES) $(DISTDIRS)
211
212
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000213LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000214LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000215BLDLIBRARY= @BLDLIBRARY@
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000216PY3LIBRARY= @PY3LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000217DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000218LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000219INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000220
221
222LIBS= @LIBS@
223LIBM= @LIBM@
224LIBC= @LIBC@
225SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000226SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000227
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000228DLINCLDIR= @DLINCLDIR@
229DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000230MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000231LIBOBJDIR= Python/
232LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000233
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000234PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000235BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000236
Victor Stinnera5c62a82017-05-03 18:21:48 +0200237PYTHON_FOR_REGEN=@PYTHON_FOR_REGEN@
Antoine Pitroub091bec2017-09-20 23:57:56 +0200238UPDATE_FILE=@PYTHON_FOR_REGEN@ $(srcdir)/Tools/scripts/update_file.py
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200239PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@
240_PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@
doko@python.orga10e4a92013-01-25 18:45:12 +0100241BUILD_GNU_TYPE= @build@
242HOST_GNU_TYPE= @host@
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200243
Ned Deilyd819b932013-09-06 01:07:05 -0700244# Tcl and Tk config info from --with-tcltk-includes and -libs options
245TCLTK_INCLUDES= @TCLTK_INCLUDES@
246TCLTK_LIBS= @TCLTK_LIBS@
247
Gregory P. Smithad45ab82016-04-15 16:45:43 -0700248# The task to run while instrumented when building the profile-opt target.
249# We exclude unittests with -x that take a rediculious amount of time to
250# run in the instrumented training build or do not provide much value.
Steve Dower22d06982016-09-06 19:38:15 -0700251PROFILE_TASK=-m test.regrtest --pgo
Christian Heimes33fe8092008-04-13 13:53:33 +0000252
Christian Heimes49e52f92013-07-31 00:55:18 +0200253# report files for gcov / lcov coverage report
254COVERAGE_INFO= $(abs_builddir)/coverage.info
255COVERAGE_REPORT=$(abs_builddir)/lcov-report
256COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report"
257
258
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000259# === Definitions added by makesetup ===
260
261
262##########################################################################
263# Modules
264MODULE_OBJS= \
265 Modules/config.o \
266 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000267 Modules/main.o \
268 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000269
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000270IO_H= Modules/_io/_iomodule.h
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000271
272IO_OBJS= \
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000273 Modules/_io/_iomodule.o \
274 Modules/_io/iobase.o \
275 Modules/_io/fileio.o \
276 Modules/_io/bufferedio.o \
277 Modules/_io/textio.o \
278 Modules/_io/bytesio.o \
279 Modules/_io/stringio.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000280
281##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000282
Benjamin Petersond78735d2010-01-01 16:04:23 +0000283LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
284
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000285##########################################################################
286# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000287PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000288
289POBJS= \
290 Parser/acceler.o \
291 Parser/grammar1.o \
292 Parser/listnode.o \
293 Parser/node.o \
294 Parser/parser.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000295 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000296 Parser/metagrammar.o \
297 Parser/firstsets.o \
298 Parser/grammar.o \
299 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000300
Victor Stinner7f2fee32011-04-05 00:39:01 +0200301PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000302
303PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000304 Objects/obmalloc.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000305 Python/dynamic_annotations.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000306 Python/mysnprintf.o \
Benjamin Petersonbf92b7f2010-04-04 23:03:35 +0000307 Python/pyctype.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000308 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000309 Parser/printgrammar.o \
Victor Stinner7f2fee32011-04-05 00:39:01 +0200310 Parser/parsetok_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000311 Parser/pgenmain.o
312
Georg Brandl86def6c2008-01-21 20:36:10 +0000313PARSER_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200314 $(srcdir)/Parser/parser.h \
315 $(srcdir)/Include/parsetok.h \
316 $(srcdir)/Parser/tokenizer.h
Georg Brandl86def6c2008-01-21 20:36:10 +0000317
Matthias Klose93a0ef12012-03-15 18:08:34 +0100318PGENOBJS= $(POBJS) $(PGOBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000319
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000320##########################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000321# Python
Antoine Pitroub52ec782009-01-25 16:34:23 +0000322
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000323PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000324 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000325 Python/Python-ast.o \
326 Python/asdl.o \
327 Python/ast.o \
INADA Naoki7ea143a2017-12-14 16:47:20 +0900328 Python/ast_opt.o \
Guido van Rossum95e4d582018-01-26 08:20:18 -0800329 Python/ast_unparse.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000330 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000331 Python/ceval.o \
332 Python/compile.o \
333 Python/codecs.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000334 Python/dynamic_annotations.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000335 Python/errors.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000336 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000337 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000338 Python/getargs.o \
339 Python/getcompiler.o \
340 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000341 Python/getplatform.o \
342 Python/getversion.o \
343 Python/graminit.o \
344 Python/import.o \
345 Python/importdl.o \
346 Python/marshal.o \
347 Python/modsupport.o \
Serhiy Storchaka13badcb2017-12-02 21:36:00 +0200348 Python/mysnprintf.o \
Victor Stinner31a83932017-12-04 13:39:15 +0100349 Python/mystrtoul.o \
350 Python/pathconfig.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000351 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000352 Python/pyarena.o \
Eric Smith6dc46f52009-04-27 20:39:49 +0000353 Python/pyctype.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000354 Python/pyfpe.o \
Christian Heimes985ecdc2013-11-20 11:46:18 +0100355 Python/pyhash.o \
Nick Coghland6009512014-11-20 21:39:37 +1000356 Python/pylifecycle.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000357 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000358 Python/pystate.o \
Yury Selivanovf23746a2018-01-22 19:11:18 -0500359 Python/context.o \
360 Python/hamt.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000361 Python/pythonrun.o \
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000362 Python/pytime.o \
Eric Snow6b4be192017-05-22 21:36:03 -0700363 Python/bootstrap_hash.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000364 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000365 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000366 Python/sysmodule.o \
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200367 Python/thread.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000368 Python/traceback.o \
369 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000370 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000371 Python/pystrtod.o \
Gregory P. Smith8cb65692015-04-25 23:22:26 +0000372 Python/pystrhex.o \
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000373 Python/dtoa.o \
Eric Smith8c663262007-08-25 02:26:07 +0000374 Python/formatter_unicode.o \
Victor Stinner4e314432010-10-07 21:45:39 +0000375 Python/fileutils.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000376 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000377 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000378 $(MACHDEP_OBJS) \
Łukasz Langaa785c872016-09-09 17:37:37 -0700379 $(DTRACE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000380
381
382##########################################################################
383# Objects
384OBJECT_OBJS= \
385 Objects/abstract.o \
Antoine Pitroueeb7eea2011-10-06 18:57:27 +0200386 Objects/accu.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000387 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000388 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000389 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000390 Objects/bytesobject.o \
Victor Stinnerc22bfaa2017-02-12 19:27:05 +0100391 Objects/call.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000392 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000393 Objects/classobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000394 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000395 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000396 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000397 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000398 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000399 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000400 Objects/fileobject.o \
401 Objects/floatobject.o \
402 Objects/frameobject.o \
403 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000404 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000405 Objects/listobject.o \
406 Objects/longobject.o \
407 Objects/dictobject.o \
Eric Snow96c6af92015-05-29 22:21:39 -0600408 Objects/odictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000409 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000410 Objects/methodobject.o \
411 Objects/moduleobject.o \
Barry Warsaw409da152012-06-03 16:18:47 -0400412 Objects/namespaceobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000413 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000414 Objects/obmalloc.o \
Benjamin Petersonb173f782009-05-05 22:31:58 +0000415 Objects/capsule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000416 Objects/rangeobject.o \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200417 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000418 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000419 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000420 Objects/tupleobject.o \
421 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000422 Objects/unicodeobject.o \
423 Objects/unicodectype.o \
424 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000425
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000426##########################################################################
427# objects that get linked into the Python library
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200428LIBRARY_OBJS_OMIT_FROZEN= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000429 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000430 $(PARSER_OBJS) \
431 $(OBJECT_OBJS) \
432 $(PYTHON_OBJS) \
433 $(MODULE_OBJS) \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000434 $(MODOBJS)
435
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200436LIBRARY_OBJS= \
437 $(LIBRARY_OBJS_OMIT_FROZEN) \
438 Python/frozen.o
439
Łukasz Langaa785c872016-09-09 17:37:37 -0700440##########################################################################
441# DTrace
442
443# On some systems, object files that reference DTrace probes need to be modified
444# in-place by dtrace(1).
445DTRACE_DEPS = \
446 Python/ceval.o
447# XXX: should gcmodule, etc. be here, too?
448
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000449#########################################################################
450# Rules
451
452# Default target
Brett Cannon63d98bc2016-09-06 17:12:40 -0700453all: @DEF_MAKE_ALL_RULE@
xdegaye0de92852017-11-08 16:03:58 +0100454build_all: check-clean-src $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks \
455 Programs/_testembed python-config
456
457# Check that the source is clean when building out of source.
458check-clean-src:
459 @if test -n "$(VPATH)" -a -f "$(srcdir)/Programs/python.o"; then \
460 echo "Error: The source directory ($(srcdir)) is not clean" ; \
461 echo "Building Python out of the source tree (in $(abs_builddir)) requires a clean source tree ($(abs_srcdir))" ; \
462 echo "Try to run: make -C \"$(srcdir)\" clean" ; \
463 exit 1; \
464 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000465
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700466# Profile generation build must start from a clean tree.
467profile-clean-stamp:
468 $(MAKE) clean profile-removal
469 touch $@
470
471# Compile with profile generation enabled.
472profile-gen-stamp: profile-clean-stamp
doko@ubuntu.com3a56b772016-03-23 12:57:29 +0100473 @if [ $(LLVM_PROF_ERR) = yes ]; then \
Brett Cannon7188a3e2015-09-18 15:13:44 -0700474 echo "Error: Cannot perform PGO build because llvm-profdata was not found in PATH" ;\
475 echo "Please add it to PATH and run ./configure again" ;\
476 exit 1;\
477 fi
Christian Heimes33fe8092008-04-13 13:53:33 +0000478 @echo "Building with support for profile generation:"
Brett Cannon7188a3e2015-09-18 15:13:44 -0700479 $(MAKE) build_all_generate_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700480 touch $@
481
482# Run task with profile generation build to create profile information.
483profile-run-stamp:
Brett Cannon7188a3e2015-09-18 15:13:44 -0700484 @echo "Running code to generate profile data (this can take a while):"
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700485 # First, we need to create a clean build with profile generation
486 # enabled.
487 $(MAKE) profile-gen-stamp
488 # Next, run the profile task to generate the profile information.
Christian Heimes33fe8092008-04-13 13:53:33 +0000489 $(MAKE) run_profile_task
Brett Cannon7188a3e2015-09-18 15:13:44 -0700490 $(MAKE) build_all_merge_profile
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700491 # Remove profile generation binary since we are done with it.
Christian Heimes33fe8092008-04-13 13:53:33 +0000492 $(MAKE) clean
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700493 # This is an expensive target to build and it does not have proper
luzpaza5293b42017-11-05 07:37:50 -0600494 # makefile dependency information. So, we create a "stamp" file
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700495 # to record its completion and avoid re-running it.
496 touch $@
Christian Heimes33fe8092008-04-13 13:53:33 +0000497
498build_all_generate_profile:
octaviansoldea4c814012017-09-08 12:14:33 -0700499 $(MAKE) @DEF_MAKE_RULE@ CFLAGS_NODIST="$(CFLAGS) $(PGO_PROF_GEN_FLAG)" LDFLAGS="$(LDFLAGS) $(PGO_PROF_GEN_FLAG)" LIBS="$(LIBS)"
Christian Heimes33fe8092008-04-13 13:53:33 +0000500
501run_profile_task:
Martin Panteradab00f2016-09-22 09:34:43 +0000502 @ # FIXME: can't run for a cross build
Brett Cannon7188a3e2015-09-18 15:13:44 -0700503 $(LLVM_PROF_FILE) $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) || true
504
505build_all_merge_profile:
506 $(LLVM_PROF_MERGER)
Christian Heimes33fe8092008-04-13 13:53:33 +0000507
Neil Schemenauer4e38d712017-11-02 10:46:02 -0700508# Compile Python binary with profile guided optimization.
509# To force re-running of the profile task, remove the profile-run-stamp file.
510profile-opt: profile-run-stamp
511 @echo "Rebuilding with profile guided optimizations:"
512 -rm -f profile-clean-stamp
octaviansoldea4c814012017-09-08 12:14:33 -0700513 $(MAKE) @DEF_MAKE_RULE@ CFLAGS_NODIST="$(CFLAGS) $(PGO_PROF_USE_FLAG)" LDFLAGS="$(LDFLAGS)"
Christian Heimes33fe8092008-04-13 13:53:33 +0000514
Christian Heimes49e52f92013-07-31 00:55:18 +0200515# Compile and run with gcov
516.PHONY=coverage coverage-lcov coverage-report
Georg Brandlb533e262008-05-25 18:19:30 +0000517coverage:
518 @echo "Building with support for coverage checking:"
Christian Heimes49e52f92013-07-31 00:55:18 +0200519 $(MAKE) clean profile-removal
Brett Cannon63d98bc2016-09-06 17:12:40 -0700520 $(MAKE) @DEF_MAKE_RULE@ CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
Georg Brandlb533e262008-05-25 18:19:30 +0000521
Christian Heimes49e52f92013-07-31 00:55:18 +0200522coverage-lcov:
523 @echo "Creating Coverage HTML report with LCOV:"
524 @rm -f $(COVERAGE_INFO)
525 @rm -rf $(COVERAGE_REPORT)
526 @lcov --capture --directory $(abs_builddir) \
527 --base-directory $(realpath $(abs_builddir)) \
528 --path $(realpath $(abs_srcdir)) \
529 --output-file $(COVERAGE_INFO)
Martin Panteradab00f2016-09-22 09:34:43 +0000530 @ # remove 3rd party modules, system headers and internal files with
531 @ # debug, test or dummy functions.
Christian Heimes49e52f92013-07-31 00:55:18 +0200532 @lcov --remove $(COVERAGE_INFO) \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200533 '*/Modules/_blake2/impl/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200534 '*/Modules/_ctypes/libffi*/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200535 '*/Modules/_decimal/libmpdec/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200536 '*/Modules/_sha3/kcp/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200537 '*/Modules/expat/*' \
538 '*/Modules/zlib/*' \
539 '*/Include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200540 '*/Modules/xx*.c' \
541 '*/Parser/listnode.c' \
542 '*/Python/pyfpe.c' \
543 '*/Python/pystrcmp.c' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200544 '/usr/include/*' \
545 '/usr/local/include/*' \
Christian Heimes79f9d4f2016-09-21 14:55:43 +0200546 '/usr/lib/gcc/*' \
Christian Heimes49e52f92013-07-31 00:55:18 +0200547 --output-file $(COVERAGE_INFO)
548 @genhtml $(COVERAGE_INFO) --output-directory $(COVERAGE_REPORT) \
549 $(COVERAGE_REPORT_OPTIONS)
550 @echo
551 @echo "lcov report at $(COVERAGE_REPORT)/index.html"
552 @echo
553
Victor Stinnera5c62a82017-05-03 18:21:48 +0200554# Force regeneration of parser and importlib
555coverage-report: regen-grammar regen-importlib
Martin Panteradab00f2016-09-22 09:34:43 +0000556 @ # build with coverage info
Christian Heimes49e52f92013-07-31 00:55:18 +0200557 $(MAKE) coverage
Martin Panteradab00f2016-09-22 09:34:43 +0000558 @ # run tests, ignore failures
Christian Heimes49e52f92013-07-31 00:55:18 +0200559 $(TESTRUNNER) $(TESTOPTS) || true
Martin Panteradab00f2016-09-22 09:34:43 +0000560 @ # build lcov report
Christian Heimes49e52f92013-07-31 00:55:18 +0200561 $(MAKE) coverage-lcov
Georg Brandlb533e262008-05-25 18:19:30 +0000562
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800563# Run "Argument Clinic" over all source files
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800564.PHONY=clinic
Zachary Wared6ff8a72018-02-17 17:58:57 -0600565clinic: check-clean-src $(srcdir)/Modules/_blake2/blake2s_impl.c
566 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py --make --srcdir $(srcdir)
Larry Hastingsdcd340e2013-11-23 14:58:45 -0800567
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000568# Build the interpreter
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000569$(BUILDPYTHON): Programs/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
570 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000571
Trent Nelsonc101bf32012-10-16 08:13:12 -0400572platform: $(BUILDPYTHON) pybuilddir.txt
Serhiy Storchaka885bdc42016-02-11 13:10:36 +0200573 $(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 +0000574
Trent Nelsonc101bf32012-10-16 08:13:12 -0400575# Create build directory and generate the sysconfig build-time data there.
576# pybuilddir.txt contains the name of the build dir and is used for
577# sys.path fixup -- see Modules/getpath.c.
Ned Deilyfcbc2462014-08-22 13:32:49 -0700578# Since this step runs before shared modules are built, try to avoid bootstrap
Ned Deilyec7aaf52014-08-23 18:10:16 -0700579# problems by creating a dummy pybuilddir.txt just to allow interpreter
Ned Deilyfcbc2462014-08-22 13:32:49 -0700580# initialization to succeed. It will be overwritten by generate-posix-vars
581# or removed in case of failure.
Trent Nelsonc101bf32012-10-16 08:13:12 -0400582pybuilddir.txt: $(BUILDPYTHON)
Ned Deilyfcbc2462014-08-22 13:32:49 -0700583 @echo "none" > ./pybuilddir.txt
584 $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars ;\
585 if test $$? -ne 0 ; then \
586 echo "generate-posix-vars failed" ; \
587 rm -f ./pybuilddir.txt ; \
588 exit 1 ; \
589 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000590
Martin Panterc9deece2016-02-03 05:19:44 +0000591# This is shared by the math and cmath modules
592Modules/_math.o: Modules/_math.c Modules/_math.h
593 $(CC) -c $(CCSHARED) $(PY_CORE_CFLAGS) -o $@ $<
594
Christian Heimes121b9482016-09-06 22:03:25 +0200595# blake2s is auto-generated from blake2b
Zachary Wared6ff8a72018-02-17 17:58:57 -0600596$(srcdir)/Modules/_blake2/blake2s_impl.c: $(srcdir)/Modules/_blake2/blake2b_impl.c $(srcdir)/Modules/_blake2/blake2b2s.py
597 $(PYTHON_FOR_REGEN) $(srcdir)/Modules/_blake2/blake2b2s.py
598 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/clinic/clinic.py -f $@
Christian Heimes121b9482016-09-06 22:03:25 +0200599
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000600# Build the shared modules
Christian Heimes17ad40e2012-12-02 07:37:35 +0100601# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
Christian Heimes5f381212012-09-07 02:24:58 +0200602# -s, --silent or --quiet is always the first char.
Christian Heimes17ad40e2012-12-02 07:37:35 +0100603# Under BSD make, MAKEFLAGS might be " -s -v x=y".
Matthias Klose10f715d2018-04-30 20:07:55 +0200604# Ignore macros passed by GNU make, passed after --
Martin Panterc9deece2016-02-03 05:19:44 +0000605sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
Matthias Klose10f715d2018-04-30 20:07:55 +0200606 @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
Christian Heimes17ad40e2012-12-02 07:37:35 +0100607 *\ -s*|s*) quiet="-q";; \
Christian Heimes5f381212012-09-07 02:24:58 +0200608 *) quiet="";; \
609 esac; \
Matthias Klose10f715d2018-04-30 20:07:55 +0200610 echo "$(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
611 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
612 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build"; \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200613 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
Ned Deilyd819b932013-09-06 01:07:05 -0700614 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
Christian Heimes4e251402012-09-07 02:26:26 +0200615 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000616
Christian Heimes121b9482016-09-06 22:03:25 +0200617
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000618# Build static library
619$(LIBRARY): $(LIBRARY_OBJS)
620 -rm -f $@
Benjamin Peterson6fb0e4a2017-09-29 09:26:48 -0700621 $(AR) $(ARFLAGS) $@ $(LIBRARY_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000622
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000623libpython$(LDVERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000624 if test $(INSTSONAME) != $(LDLIBRARY); then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000625 $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000626 $(LN) -f $(INSTSONAME) $@; \
Georg Brandlb1441c72009-01-03 22:33:39 +0000627 else \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000628 $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000629 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000630
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000631libpython3.so: libpython$(LDVERSION).so
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200632 $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000633
Georg Brandl6e8d17c2011-02-19 08:47:14 +0000634libpython$(LDVERSION).dylib: $(LIBRARY_OBJS)
635 $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(LDVERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Victor Stinner4e314432010-10-07 21:45:39 +0000636
Georg Brandlb1441c72009-01-03 22:33:39 +0000637
Martin v. Löwis1142de32002-03-29 16:28:31 +0000638libpython$(VERSION).sl: $(LIBRARY_OBJS)
Antoine Pitroudbec7802010-10-10 09:37:12 +0000639 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000640
Benjamin Peterson6a6666a2010-04-11 21:49:28 +0000641# Copy up the gdb python hooks into a position where they can be automatically
642# loaded by gdb during Lib/test/test_gdb.py
643#
644# Distributors are likely to want to install this somewhere else e.g. relative
645# to the stripped DWARF data for the shared library.
646gdbhooks: $(BUILDPYTHON)-gdb.py
647
648SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
649$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
650 $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
651
Jack Jansenea0c3822002-08-01 21:57:49 +0000652# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
653# minimal framework (not including the Lib directory and such) in the current
654# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000655RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000656$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
657 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000658 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000659 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Ronald Oussoren42d0f682011-03-14 11:04:34 -0400660 $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \
Ronald Oussoren25032492011-03-14 10:11:59 -0400661 -all_load $(LIBRARY) -Wl,-single_module \
662 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
663 -compatibility_version $(VERSION) \
664 -current_version $(VERSION) \
Victor Stinnerdfb866d2011-09-29 01:12:24 +0200665 -framework CoreFoundation $(LIBS);
Jack Jansenea0c3822002-08-01 21:57:49 +0000666 $(INSTALL) -d -m $(DIRMODE) \
667 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
668 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
669 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000670 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000671 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000672 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000673
Jason Tishler30765592003-09-04 11:04:06 +0000674# This rule builds the Cygwin Python DLL and import library if configured
675# for a shared core library; otherwise, this rule is a noop.
Zachary Ware3839d992016-10-01 16:15:09 -0500676$(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)
Jason Tishler30765592003-09-04 11:04:06 +0000677 if test -n "$(DLLLIBRARY)"; then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000678 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000679 $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \
Jason Tishler30765592003-09-04 11:04:06 +0000680 else true; \
681 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000682
683
684oldsharedmods: $(SHAREDMODS)
685
686
687Makefile Modules/config.c: Makefile.pre \
688 $(srcdir)/Modules/config.c.in \
689 $(MAKESETUP) \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000690 Modules/Setup \
691 Modules/Setup.local
692 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
693 -s Modules \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000694 Modules/Setup.local \
695 Modules/Setup
696 @mv config.c Modules
697 @echo "The Makefile was updated, you may need to re-run make."
698
699
700Modules/Setup: $(srcdir)/Modules/Setup.dist
701 @if test -f Modules/Setup; then \
702 echo "-----------------------------------------------"; \
703 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
704 echo "check to make sure you have all the updates you"; \
705 echo "need in your Modules/Setup file."; \
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000706 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000707 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000708 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000709
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000710Programs/_testembed: Programs/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
711 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Programs/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200712
Brett Cannonfd074152012-04-14 14:10:13 -0400713############################################################################
714# Importlib
Antoine Pitrou8e605772011-04-25 21:21:07 +0200715
Nick Coghlan8d11ccc2015-04-13 11:30:49 -0400716Programs/_freeze_importlib.o: Programs/_freeze_importlib.c Makefile
Antoine Pitrou895ce142014-09-21 00:21:58 +0200717
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000718Programs/_freeze_importlib: Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN)
719 $(LINKCC) $(PY_LDFLAGS) -o $@ Programs/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200720
Victor Stinnera5c62a82017-05-03 18:21:48 +0200721.PHONY: regen-importlib
722regen-importlib: Programs/_freeze_importlib
723 # Regenerate Python/importlib_external.h
724 # from Lib/importlib/_bootstrap_external.py using _freeze_importlib
Martin Panter43a94a72016-07-29 05:52:32 +0000725 ./Programs/_freeze_importlib \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200726 $(srcdir)/Lib/importlib/_bootstrap_external.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200727 $(srcdir)/Python/importlib_external.h.new
728 $(UPDATE_FILE) $(srcdir)/Python/importlib_external.h $(srcdir)/Python/importlib_external.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200729 # Regenerate Python/importlib.h from Lib/importlib/_bootstrap.py
730 # using _freeze_importlib
Martin Panter43a94a72016-07-29 05:52:32 +0000731 ./Programs/_freeze_importlib \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200732 $(srcdir)/Lib/importlib/_bootstrap.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200733 $(srcdir)/Python/importlib.h.new
734 $(UPDATE_FILE) $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib.h.new
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200735
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200736
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000737############################################################################
Victor Stinnera5c62a82017-05-03 18:21:48 +0200738# Regenerate all generated files
739
Zachary Wared6ff8a72018-02-17 17:58:57 -0600740regen-all: regen-opcode regen-opcode-targets regen-typeslots regen-grammar \
741 regen-ast regen-importlib clinic
Victor Stinnera5c62a82017-05-03 18:21:48 +0200742
743############################################################################
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000744# Special rules for object files
745
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000746Modules/getbuildinfo.o: $(PARSER_OBJS) \
747 $(OBJECT_OBJS) \
748 $(PYTHON_OBJS) \
749 $(MODULE_OBJS) \
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000750 $(MODOBJS) \
751 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl13039c82011-03-06 10:13:00 +0100752 $(CC) -c $(PY_CORE_CFLAGS) \
Ned Deily5c4b0d02017-03-04 00:19:55 -0500753 -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
754 -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
755 -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
Georg Brandl1ca2e792011-03-05 20:51:24 +0100756 -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000757
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000758Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000759 $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000760 -DPREFIX='"$(prefix)"' \
761 -DEXEC_PREFIX='"$(exec_prefix)"' \
762 -DVERSION='"$(VERSION)"' \
763 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000764 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000765
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000766Programs/python.o: $(srcdir)/Programs/python.c
767 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000768
Nick Coghlan973fe0b2014-07-25 21:52:14 +1000769Programs/_testembed.o: $(srcdir)/Programs/_testembed.c
770 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/_testembed.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200771
Serhiy Storchaka8444ebb2013-10-26 11:18:42 +0300772Modules/_sre.o: $(srcdir)/Modules/_sre.c $(srcdir)/Modules/sre.h $(srcdir)/Modules/sre_constants.h $(srcdir)/Modules/sre_lib.h
773
Serhiy Storchaka7cf55992013-02-10 21:56:49 +0200774Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h
775
776Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h
777
778Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
779
780Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h
781
Barry Warsaw35f3a2c2010-09-03 18:30:30 +0000782Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile
783 $(CC) -c $(PY_CORE_CFLAGS) \
784 -DSOABI='"$(SOABI)"' \
785 -o $@ $(srcdir)/Python/dynload_shlib.c
786
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700787Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile
788 $(CC) -c $(PY_CORE_CFLAGS) \
789 -DSHLIB_EXT='"$(EXT_SUFFIX)"' \
790 -o $@ $(srcdir)/Python/dynload_hpux.c
791
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000792Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile
793 $(CC) -c $(PY_CORE_CFLAGS) \
794 -DABIFLAGS='"$(ABIFLAGS)"' \
doko@ubuntu.com55532312016-06-14 08:55:19 +0200795 $(MULTIARCH_CPPFLAGS) \
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000796 -o $@ $(srcdir)/Python/sysmodule.c
797
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000798$(IO_OBJS): $(IO_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000799
Antoine Pitrou895ce142014-09-21 00:21:58 +0200800$(PGEN): $(PGENOBJS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000801 $(CC) $(OPT) $(PY_LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000802
Victor Stinnera5c62a82017-05-03 18:21:48 +0200803.PHONY: regen-grammar
804regen-grammar: $(PGEN)
805 # Regenerate Include/graminit.h and Python/graminit.c
806 # from Grammar/Grammar using pgen
807 @$(MKDIR_P) Include
808 $(PGEN) $(srcdir)/Grammar/Grammar \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200809 $(srcdir)/Include/graminit.h.new \
810 $(srcdir)/Python/graminit.c.new
811 $(UPDATE_FILE) $(srcdir)/Include/graminit.h $(srcdir)/Include/graminit.h.new
812 $(UPDATE_FILE) $(srcdir)/Python/graminit.c $(srcdir)/Python/graminit.c.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200813
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000814Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000815 $(srcdir)/Include/token.h \
816 $(srcdir)/Include/grammar.h
817Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
818
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000819Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
Victor Stinner7f2fee32011-04-05 00:39:01 +0200820Parser/parsetok_pgen.o: $(srcdir)/Parser/parsetok.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200821Parser/printgrammar.o: $(srcdir)/Parser/printgrammar.c
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000822
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000823Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
824
Victor Stinnera5c62a82017-05-03 18:21:48 +0200825.PHONY=regen-ast
826regen-ast:
827 # Regenerate Include/Python-ast.h using Parser/asdl_c.py -h
828 $(MKDIR_P) $(srcdir)/Include
829 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200830 -h $(srcdir)/Include/Python-ast.h.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200831 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200832 $(UPDATE_FILE) $(srcdir)/Include/Python-ast.h $(srcdir)/Include/Python-ast.h.new
Victor Stinnera5c62a82017-05-03 18:21:48 +0200833 # Regenerate Python/Python-ast.c using Parser/asdl_c.py -c
834 $(MKDIR_P) $(srcdir)/Python
835 $(PYTHON_FOR_REGEN) $(srcdir)/Parser/asdl_c.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200836 -c $(srcdir)/Python/Python-ast.c.new \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200837 $(srcdir)/Parser/Python.asdl
Antoine Pitroub091bec2017-09-20 23:57:56 +0200838 $(UPDATE_FILE) $(srcdir)/Python/Python-ast.c $(srcdir)/Python/Python-ast.c.new
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000839
Victor Stinnera5c62a82017-05-03 18:21:48 +0200840.PHONY: regen-opcode
841regen-opcode:
842 # Regenerate Include/opcode.h from Lib/opcode.py
843 # using Tools/scripts/generate_opcode_h.py
844 $(PYTHON_FOR_REGEN) $(srcdir)/Tools/scripts/generate_opcode_h.py \
845 $(srcdir)/Lib/opcode.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200846 $(srcdir)/Include/opcode.h.new
847 $(UPDATE_FILE) $(srcdir)/Include/opcode.h $(srcdir)/Include/opcode.h.new
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000848
Guido van Rossum95e4d582018-01-26 08:20:18 -0800849Python/compile.o Python/symtable.o Python/ast_unparse.o Python/ast.o: $(srcdir)/Include/graminit.h $(srcdir)/Include/Python-ast.h
Neil Schemenauer40417742001-02-27 02:45:36 +0000850
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000851Python/getplatform.o: $(srcdir)/Python/getplatform.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000852 $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000853
854Python/importdl.o: $(srcdir)/Python/importdl.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000855 $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000856
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000857Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
858 $(srcdir)/Objects/unicodetype_db.h
859
Christian Heimesda996832008-03-22 18:37:22 +0000860BYTESTR_DEPS = \
Christian Heimesda996832008-03-22 18:37:22 +0000861 $(srcdir)/Objects/stringlib/count.h \
862 $(srcdir)/Objects/stringlib/ctype.h \
Christian Heimesda996832008-03-22 18:37:22 +0000863 $(srcdir)/Objects/stringlib/fastsearch.h \
864 $(srcdir)/Objects/stringlib/find.h \
Antoine Pitrou74375fc2012-10-18 21:31:22 +0200865 $(srcdir)/Objects/stringlib/join.h \
Christian Heimesda996832008-03-22 18:37:22 +0000866 $(srcdir)/Objects/stringlib/partition.h \
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000867 $(srcdir)/Objects/stringlib/split.h \
Christian Heimesda996832008-03-22 18:37:22 +0000868 $(srcdir)/Objects/stringlib/stringdefs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200869 $(srcdir)/Objects/stringlib/transmogrify.h
Antoine Pitrou3e623242011-11-13 19:37:58 +0100870
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200871UNICODE_DEPS = \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100872 $(srcdir)/Objects/stringlib/asciilib.h \
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100873 $(srcdir)/Objects/stringlib/codecs.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200874 $(srcdir)/Objects/stringlib/count.h \
875 $(srcdir)/Objects/stringlib/fastsearch.h \
876 $(srcdir)/Objects/stringlib/find.h \
877 $(srcdir)/Objects/stringlib/find_max_char.h \
878 $(srcdir)/Objects/stringlib/localeutil.h \
879 $(srcdir)/Objects/stringlib/partition.h \
Serhiy Storchakae2cef882013-04-13 22:45:04 +0300880 $(srcdir)/Objects/stringlib/replace.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200881 $(srcdir)/Objects/stringlib/split.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100882 $(srcdir)/Objects/stringlib/ucs1lib.h \
883 $(srcdir)/Objects/stringlib/ucs2lib.h \
884 $(srcdir)/Objects/stringlib/ucs4lib.h \
Serhiy Storchaka05aba6c2013-01-06 21:36:21 +0200885 $(srcdir)/Objects/stringlib/undef.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100886 $(srcdir)/Objects/stringlib/unicode_format.h \
887 $(srcdir)/Objects/stringlib/unicodedefs.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000888
Xiang Zhang3d40e372016-12-15 16:41:12 +0800889Objects/bytes_methods.o: $(srcdir)/Objects/bytes_methods.c $(BYTESTR_DEPS)
Benjamin Peterson9ae32202009-01-13 21:53:28 +0000890Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Victor Stinner4e314432010-10-07 21:45:39 +0000891Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000892
Antoine Pitrou3e623242011-11-13 19:37:58 +0100893Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000894
Benjamin Peterson41356f92016-09-08 13:19:14 -0700895Objects/odictobject.o: $(srcdir)/Objects/dict-common.h
896Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h $(srcdir)/Objects/dict-common.h
Martin v. Löwis6fb44722011-09-25 17:36:11 +0200897Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
898
Victor Stinnera5c62a82017-05-03 18:21:48 +0200899.PHONY: regen-opcode-targets
900regen-opcode-targets:
901 # Regenerate Python/opcode_targets.h from Lib/opcode.py
902 # using Python/makeopcodetargets.py
903 $(PYTHON_FOR_REGEN) $(srcdir)/Python/makeopcodetargets.py \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200904 $(srcdir)/Python/opcode_targets.h.new
905 $(UPDATE_FILE) $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/opcode_targets.h.new
Antoine Pitroub52ec782009-01-25 16:34:23 +0000906
Victor Stinnera5c62a82017-05-03 18:21:48 +0200907Python/ceval.o: $(srcdir)/Python/opcode_targets.h $(srcdir)/Python/ceval_gil.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000908
Victor Stinnera5c62a82017-05-03 18:21:48 +0200909Python/frozen.o: $(srcdir)/Python/importlib.h $(srcdir)/Python/importlib_external.h
Antoine Pitroua4932352012-04-16 18:29:28 +0200910
Łukasz Langaa785c872016-09-09 17:37:37 -0700911# Generate DTrace probe macros, then rename them (PYTHON_ -> PyDTrace_) to
912# follow our naming conventions. dtrace(1) uses the output filename to generate
913# an include guard, so we can't use a pipeline to transform its output.
914Include/pydtrace_probes.h: $(srcdir)/Include/pydtrace.d
stratakisf6eae5b2017-05-10 17:08:15 +0200915 $(MKDIR_P) Include
Łukasz Langaa785c872016-09-09 17:37:37 -0700916 $(DTRACE) $(DFLAGS) -o $@ -h -s $<
917 : sed in-place edit with POSIX-only tools
918 sed 's/PYTHON_/PyDTrace_/' $@ > $@.tmp
919 mv $@.tmp $@
920
921Python/pydtrace.o: $(srcdir)/Include/pydtrace.d $(DTRACE_DEPS)
922 $(DTRACE) $(DFLAGS) -o $@ -G -s $< $(DTRACE_DEPS)
923
Trent Nelson9effe692012-10-16 08:41:32 -0400924Objects/typeobject.o: Objects/typeslots.inc
Victor Stinnera5c62a82017-05-03 18:21:48 +0200925
926.PHONY: regen-typeslots
927regen-typeslots:
928 # Regenerate Objects/typeslots.inc from Include/typeslotsh
929 # using Objects/typeslots.py
930 $(PYTHON_FOR_REGEN) $(srcdir)/Objects/typeslots.py \
931 < $(srcdir)/Include/typeslots.h \
Antoine Pitroub091bec2017-09-20 23:57:56 +0200932 $(srcdir)/Objects/typeslots.inc.new
933 $(UPDATE_FILE) $(srcdir)/Objects/typeslots.inc $(srcdir)/Objects/typeslots.inc.new
Eric Smith8c663262007-08-25 02:26:07 +0000934
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000935############################################################################
936# Header files
937
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000938PYTHON_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200939 $(srcdir)/Include/Python.h \
940 $(srcdir)/Include/abstract.h \
941 $(srcdir)/Include/accu.h \
942 $(srcdir)/Include/asdl.h \
943 $(srcdir)/Include/ast.h \
944 $(srcdir)/Include/bltinmodule.h \
945 $(srcdir)/Include/bitset.h \
946 $(srcdir)/Include/boolobject.h \
947 $(srcdir)/Include/bytes_methods.h \
948 $(srcdir)/Include/bytearrayobject.h \
949 $(srcdir)/Include/bytesobject.h \
950 $(srcdir)/Include/cellobject.h \
951 $(srcdir)/Include/ceval.h \
952 $(srcdir)/Include/classobject.h \
953 $(srcdir)/Include/code.h \
954 $(srcdir)/Include/codecs.h \
955 $(srcdir)/Include/compile.h \
956 $(srcdir)/Include/complexobject.h \
957 $(srcdir)/Include/descrobject.h \
958 $(srcdir)/Include/dictobject.h \
959 $(srcdir)/Include/dtoa.h \
960 $(srcdir)/Include/dynamic_annotations.h \
961 $(srcdir)/Include/enumobject.h \
962 $(srcdir)/Include/errcode.h \
963 $(srcdir)/Include/eval.h \
964 $(srcdir)/Include/fileobject.h \
965 $(srcdir)/Include/fileutils.h \
966 $(srcdir)/Include/floatobject.h \
967 $(srcdir)/Include/frameobject.h \
968 $(srcdir)/Include/funcobject.h \
969 $(srcdir)/Include/genobject.h \
970 $(srcdir)/Include/import.h \
971 $(srcdir)/Include/intrcheck.h \
972 $(srcdir)/Include/iterobject.h \
973 $(srcdir)/Include/listobject.h \
974 $(srcdir)/Include/longintrepr.h \
975 $(srcdir)/Include/longobject.h \
976 $(srcdir)/Include/marshal.h \
977 $(srcdir)/Include/memoryobject.h \
978 $(srcdir)/Include/metagrammar.h \
979 $(srcdir)/Include/methodobject.h \
980 $(srcdir)/Include/modsupport.h \
981 $(srcdir)/Include/moduleobject.h \
Barry Warsaw409da152012-06-03 16:18:47 -0400982 $(srcdir)/Include/namespaceobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200983 $(srcdir)/Include/node.h \
984 $(srcdir)/Include/object.h \
985 $(srcdir)/Include/objimpl.h \
Victor Stinnera5c62a82017-05-03 18:21:48 +0200986 $(srcdir)/Include/opcode.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200987 $(srcdir)/Include/osdefs.h \
Brett Cannon82029ac2016-06-12 13:21:22 -0700988 $(srcdir)/Include/osmodule.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200989 $(srcdir)/Include/patchlevel.h \
990 $(srcdir)/Include/pgen.h \
991 $(srcdir)/Include/pgenheaders.h \
992 $(srcdir)/Include/pyarena.h \
993 $(srcdir)/Include/pyatomic.h \
994 $(srcdir)/Include/pycapsule.h \
995 $(srcdir)/Include/pyctype.h \
996 $(srcdir)/Include/pydebug.h \
Łukasz Langaa785c872016-09-09 17:37:37 -0700997 $(srcdir)/Include/pydtrace.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200998 $(srcdir)/Include/pyerrors.h \
999 $(srcdir)/Include/pyfpe.h \
Christian Heimes985ecdc2013-11-20 11:46:18 +01001000 $(srcdir)/Include/pyhash.h \
Nick Coghland6009512014-11-20 21:39:37 +10001001 $(srcdir)/Include/pylifecycle.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001002 $(srcdir)/Include/pymath.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001003 $(srcdir)/Include/pymacro.h \
1004 $(srcdir)/Include/pymem.h \
1005 $(srcdir)/Include/pyport.h \
1006 $(srcdir)/Include/pystate.h \
Yury Selivanovf23746a2018-01-22 19:11:18 -05001007 $(srcdir)/Include/context.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001008 $(srcdir)/Include/pystrcmp.h \
1009 $(srcdir)/Include/pystrtod.h \
Gregory P. Smith8cb65692015-04-25 23:22:26 +00001010 $(srcdir)/Include/pystrhex.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +02001011 $(srcdir)/Include/pythonrun.h \
1012 $(srcdir)/Include/pythread.h \
1013 $(srcdir)/Include/pytime.h \
1014 $(srcdir)/Include/rangeobject.h \
1015 $(srcdir)/Include/setobject.h \
1016 $(srcdir)/Include/sliceobject.h \
1017 $(srcdir)/Include/structmember.h \
1018 $(srcdir)/Include/structseq.h \
1019 $(srcdir)/Include/symtable.h \
1020 $(srcdir)/Include/sysmodule.h \
1021 $(srcdir)/Include/traceback.h \
1022 $(srcdir)/Include/tupleobject.h \
1023 $(srcdir)/Include/ucnhash.h \
1024 $(srcdir)/Include/unicodeobject.h \
1025 $(srcdir)/Include/warnings.h \
1026 $(srcdir)/Include/weakrefobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +00001027 pyconfig.h \
Charles-François Natali46c686f2013-12-15 19:09:00 +01001028 $(PARSER_HEADERS) \
Victor Stinnera5c62a82017-05-03 18:21:48 +02001029 $(srcdir)/Include/Python-ast.h \
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001030 $(srcdir)/Include/internal/ceval.h \
1031 $(srcdir)/Include/internal/gil.h \
1032 $(srcdir)/Include/internal/mem.h \
Benjamin Petersone425bd72017-12-14 23:48:12 -08001033 $(srcdir)/Include/internal/pygetopt.h \
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001034 $(srcdir)/Include/internal/pystate.h \
Yury Selivanovf23746a2018-01-22 19:11:18 -05001035 $(srcdir)/Include/internal/context.h \
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001036 $(srcdir)/Include/internal/warnings.h \
Łukasz Langaa785c872016-09-09 17:37:37 -07001037 $(DTRACE_HEADERS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001038
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001039$(LIBRARY_OBJS) $(MODOBJS) Programs/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +00001040
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001041
1042######################################################################
1043
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001044TESTOPTS= $(EXTRATESTOPTS)
1045TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS)
1046TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py
Victor Stinner2f462a62016-09-12 13:04:17 +02001047TESTTIMEOUT= 1200
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001048
Victor Stinnera3a01a22017-08-18 11:31:52 +02001049.PHONY: test testall testuniversal buildbottest pythoninfo
1050
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001051# Run a basic set of regression tests.
1052# This excludes some tests that are particularly resource-intensive.
torsavaa1054c32017-05-05 17:35:50 +02001053test: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001054 $(TESTRUNNER) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001055
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001056# Run the full test suite twice - once without .pyc files, and once with.
1057# In the past, we've had problems where bugs in the marshalling or
1058# elsewhere caused bytecode read from .pyc files to behave differently
1059# than bytecode generated directly from a .py source file. Sometimes
1060# the bytecode read from a .pyc file had the bug, sometimes the directly
1061# generated bytecode. This is sometimes a very shy bug needing a lot of
1062# sample data.
torsavaa1054c32017-05-05 17:35:50 +02001063testall: @DEF_MAKE_RULE@ platform
Skip Montanaro446ad712003-05-06 15:30:20 +00001064 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001065 $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +00001066 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001067 -$(TESTRUNNER) -u all $(TESTOPTS)
1068 $(TESTRUNNER) -u all $(TESTOPTS)
Skip Montanaro446ad712003-05-06 15:30:20 +00001069
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001070# Run the test suite for both architectures in a Universal build on OSX.
1071# Must be run on an Intel box.
torsavaa1054c32017-05-05 17:35:50 +02001072testuniversal: @DEF_MAKE_RULE@ platform
Martin Panteradab00f2016-09-22 09:34:43 +00001073 @if [ `arch` != 'i386' ]; then \
Thomas Wouters477c8d52006-05-27 19:21:47 +00001074 echo "This can only be used on OSX/i386" ;\
1075 exit 1 ;\
1076 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001077 $(TESTRUNNER) -u all $(TESTOPTS)
1078 $(RUNSHARED) /usr/libexec/oah/translate \
1079 ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001080
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001081# Like testall, but with only one pass and without multiple processes.
Nadeem Vawdaecd3e382011-07-31 01:09:04 +02001082# 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 -07001083buildbottest: build_all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +00001084 -@if which pybuildbot.identify >/dev/null 2>&1; then \
1085 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
1086 fi
Victor Stinner00561182017-06-30 16:44:08 +02001087 $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --timeout=$(TESTTIMEOUT) $(TESTOPTS)
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +00001088
Victor Stinnera3a01a22017-08-18 11:31:52 +02001089pythoninfo: build_all
1090 $(RUNSHARED) ./$(BUILDPYTHON) -m test.pythoninfo
1091
Jeremy Hyltonfdd6dee2009-03-27 21:24:45 +00001092QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
1093 test_multibytecodec test_urllib2_localnet test_itertools \
Richard Oudkerk84ed9a62013-08-14 15:35:41 +01001094 test_multiprocessing_fork test_multiprocessing_spawn \
1095 test_multiprocessing_forkserver \
1096 test_mailbox test_socket test_poll \
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001097 test_select test_zipfile test_concurrent_futures
torsavaa1054c32017-05-05 17:35:50 +02001098quicktest: @DEF_MAKE_RULE@ platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +02001099 $(TESTRUNNER) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +00001100
Christian Heimesd3b9f972017-09-06 18:59:22 -07001101# SSL tests
1102.PHONY: multisslcompile multissltest
1103multisslcompile: build_all
Christian Heimesced9cb52018-01-16 21:02:26 +01001104 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py --steps=modules
Christian Heimesd3b9f972017-09-06 18:59:22 -07001105
1106multissltest: build_all
1107 $(RUNSHARED) ./$(BUILDPYTHON) Tools/ssl/multissltests.py
Barry Warsaw42119252001-03-03 04:14:21 +00001108
Ned Deily322f5ba2013-11-21 23:01:59 -08001109install: @FRAMEWORKINSTALLFIRST@ commoninstall bininstall maninstall @FRAMEWORKINSTALLLAST@
1110 if test "x$(ENSUREPIP)" != "xno" ; then \
1111 case $(ENSUREPIP) in \
1112 upgrade) ensurepip="--upgrade" ;; \
1113 install|*) ensurepip="" ;; \
1114 esac; \
1115 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1116 $$ensurepip --root=$(DESTDIR)/ ; \
1117 fi
Guido van Rossumdc21db32008-04-07 18:37:41 +00001118
Ned Deily322f5ba2013-11-21 23:01:59 -08001119altinstall: commoninstall
1120 if test "x$(ENSUREPIP)" != "xno" ; then \
1121 case $(ENSUREPIP) in \
1122 upgrade) ensurepip="--altinstall --upgrade" ;; \
1123 install|*) ensurepip="--altinstall" ;; \
1124 esac; \
1125 $(RUNSHARED) $(PYTHON_FOR_BUILD) -m ensurepip \
1126 $$ensurepip --root=$(DESTDIR)/ ; \
1127 fi
1128
xdegaye0de92852017-11-08 16:03:58 +01001129commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \
Ned Deily322f5ba2013-11-21 23:01:59 -08001130 altbininstall libinstall inclinstall libainstall \
1131 sharedinstall oldsharedinstall altmaninstall \
1132 @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001133
1134# Install shared libraries enabled by Setup
1135DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
1136
1137oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
1138 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +00001139 if test $$i != X; then \
1140 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001141 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +00001142 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001143 done
1144
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001145$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001146 @for i in $(DESTDIRS); \
1147 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001148 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001149 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001150 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001151 else true; \
1152 fi; \
1153 done
1154
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001155# Install the interpreter with $(VERSION) affixed
1156# This goes into $(exec_prefix)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001157altbininstall: $(BUILDPYTHON) @FRAMEWORKPYTHONW@
Martin v. Löwisd8a20d22002-05-08 08:59:59 +00001158 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001159 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001160 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001161 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001162 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001163 else true; \
1164 fi; \
1165 done
Ned Deilyb8f944f2013-11-21 22:42:25 -08001166 if test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
1167 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1168 else \
1169 $(INSTALL_PROGRAM) $(STRIPFLAG) Mac/pythonw $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE); \
1170 fi
Barry Warsaw771d33e2010-12-13 18:04:23 +00001171 -if test "$(VERSION)" != "$(LDVERSION)"; then \
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001172 if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Barry Warsaw771d33e2010-12-13 18:04:23 +00001173 then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1174 fi; \
1175 (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \
Barry Warsawad6f8772010-12-11 21:32:01 +00001176 fi
Ned Deily78094ac2013-07-08 14:33:03 -07001177 if test -f $(LDLIBRARY) && test "$(PYTHONFRAMEWORKDIR)" = "no-framework" ; then \
Georg Brandl1f01deb2009-01-03 22:47:39 +00001178 if test -n "$(DLLLIBRARY)" ; then \
1179 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001180 else \
Georg Brandlb1441c72009-01-03 22:33:39 +00001181 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
1182 if test $(LDLIBRARY) != $(INSTSONAME); then \
1183 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
Martin v. Löwise3be8602003-11-18 19:54:20 +00001184 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001185 fi; \
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001186 if test -n "$(PY3LIBRARY)"; then \
1187 $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \
1188 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001189 else true; \
1190 fi
Ned Deilyb8f944f2013-11-21 22:42:25 -08001191 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1192 rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
1193 lipo $(LIPO_32BIT_FLAGS) \
1194 -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
1195 $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
1196 fi
Benjamin Peterson932073a2009-05-23 16:14:33 +00001197
1198bininstall: altbininstall
Victor Stinner8de795f2015-12-13 21:26:17 +01001199 if test ! -d $(DESTDIR)$(LIBPC); then \
Victor Stinnerc2021552015-12-13 21:20:36 +01001200 echo "Creating directory $(LIBPC)"; \
1201 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(LIBPC); \
1202 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001203 -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
1204 then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001205 else true; \
1206 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +10001207 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
Barry Warsaw771d33e2010-12-13 18:04:23 +00001208 -if test "$(VERSION)" != "$(LDVERSION)"; then \
1209 rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
1210 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
1211 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
1212 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
1213 fi
Benjamin Petersonf4841e22009-04-25 21:04:19 +00001214 -rm -f $(DESTDIR)$(BINDIR)/python3-config
1215 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
Antoine Pitrou20327222009-05-24 20:39:11 +00001216 -rm -f $(DESTDIR)$(LIBPC)/python3.pc
1217 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc)
Georg Brandlff52f762010-12-28 09:51:43 +00001218 -rm -f $(DESTDIR)$(BINDIR)/idle3
1219 (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3)
1220 -rm -f $(DESTDIR)$(BINDIR)/pydoc3
1221 (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3)
1222 -rm -f $(DESTDIR)$(BINDIR)/2to3
1223 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3)
Ned Deilyb8f944f2013-11-21 22:42:25 -08001224 if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
1225 rm -f $(DESTDIR)$(BINDIR)/python3-32$(EXE); \
1226 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-32$(EXE) python3-32$(EXE)) \
1227 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001228
Ned Deilya48b61f2013-02-08 22:53:51 -08001229# Install the versioned manual page
1230altmaninstall:
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001231 @for i in $(MANDIR) $(MANDIR)/man1; \
1232 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001233 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001234 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001235 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001236 else true; \
1237 fi; \
1238 done
1239 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +00001240 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001241
Ned Deilya48b61f2013-02-08 22:53:51 -08001242# Install the unversioned manual page
1243maninstall: altmaninstall
1244 -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1
1245 (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1)
1246
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001247# Install the library
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001248XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Benjamin Petersoncb6dbe52010-03-18 21:36:06 +00001249LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
Victor Stinner5b326592011-05-25 01:15:59 +02001250 tkinter/test/test_ttk site-packages test \
Serhiy Storchakac3a9b352013-10-14 21:18:50 +03001251 test/audiodata \
Ned Deilye2d51902011-07-04 19:06:20 -07001252 test/capath test/data \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001253 test/cjkencodings test/decimaltestdata test/xmltestdata \
Łukasz Langaa785c872016-09-09 17:37:37 -07001254 test/dtracedata \
Ned Deily914db0f2015-02-08 15:48:40 +11001255 test/eintrdata \
Ned Deily6bb21c42014-02-02 13:59:49 -08001256 test/imghdrdata \
Victor Stinnerdc096552015-11-22 15:18:40 +01001257 test/libregrtest \
Ned Deilycdc75d92013-07-30 14:30:15 -07001258 test/subprocessdata test/sndhdrdata test/support \
Alexander Belopolskye8f58322010-10-15 16:28:20 +00001259 test/tracedmodules test/encoded_modules \
Ned Deily7c562f62014-12-13 02:05:15 -08001260 test/test_import \
1261 test/test_import/data \
1262 test/test_import/data/circular_imports \
1263 test/test_import/data/circular_imports/subpkg \
Serhiy Storchakad5ed47d2017-07-27 12:24:36 +03001264 test/test_import/data/package \
1265 test/test_import/data/package2 \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001266 importlib \
1267 test/test_importlib \
1268 test/test_importlib/builtin \
1269 test/test_importlib/data01 \
1270 test/test_importlib/data01/subdirectory \
1271 test/test_importlib/data02 \
1272 test/test_importlib/data02/one \
1273 test/test_importlib/data02/two \
1274 test/test_importlib/data03 \
1275 test/test_importlib/data03/namespace \
1276 test/test_importlib/data03/namespace/portion1 \
1277 test/test_importlib/data03/namespace/portion2 \
1278 test/test_importlib/extension \
1279 test/test_importlib/frozen \
1280 test/test_importlib/import_ \
Ned Deily490e53b2014-04-08 18:54:49 -07001281 test/test_importlib/namespace_pkgs \
1282 test/test_importlib/namespace_pkgs/both_portions \
1283 test/test_importlib/namespace_pkgs/both_portions/foo \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001284 test/test_importlib/namespace_pkgs/module_and_namespace_package \
1285 test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test \
Ned Deily490e53b2014-04-08 18:54:49 -07001286 test/test_importlib/namespace_pkgs/not_a_namespace_pkg \
1287 test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo \
1288 test/test_importlib/namespace_pkgs/portion1 \
1289 test/test_importlib/namespace_pkgs/portion1/foo \
1290 test/test_importlib/namespace_pkgs/portion2 \
1291 test/test_importlib/namespace_pkgs/portion2/foo \
1292 test/test_importlib/namespace_pkgs/project1 \
1293 test/test_importlib/namespace_pkgs/project1/parent \
1294 test/test_importlib/namespace_pkgs/project1/parent/child \
1295 test/test_importlib/namespace_pkgs/project2 \
1296 test/test_importlib/namespace_pkgs/project2/parent \
1297 test/test_importlib/namespace_pkgs/project2/parent/child \
1298 test/test_importlib/namespace_pkgs/project3 \
1299 test/test_importlib/namespace_pkgs/project3/parent \
1300 test/test_importlib/namespace_pkgs/project3/parent/child \
Ned Deilyca0c5f22018-01-08 21:07:59 -05001301 test/test_importlib/source \
1302 test/test_importlib/zipdata01 \
1303 test/test_importlib/zipdata02 \
Ned Deily3c97e462013-10-17 18:08:00 -07001304 asyncio \
1305 test/test_asyncio \
Georg Brandl53291232011-02-23 07:30:12 +00001306 collections concurrent concurrent/futures encodings \
R David Murray92cafb82011-06-17 11:41:49 -04001307 email email/mime test/test_email test/test_email/data \
Nick Coghland0cf0632013-11-11 22:11:55 +10001308 ensurepip ensurepip/_bundled \
Ezio Melotti66f2ea02013-08-08 15:03:45 +03001309 html json test/test_json http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001310 sqlite3 sqlite3/test \
Georg Brandl1158a332009-06-04 09:30:30 +00001311 logging csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +00001312 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001313 lib2to3/tests/data lib2to3/tests/data/fixers \
1314 lib2to3/tests/data/fixers/myfixes \
Ned Deilyc3909e52013-11-03 20:08:53 -08001315 ctypes ctypes/test ctypes/macholib \
1316 idlelib idlelib/Icons idlelib/idle_test \
Fred Drakee612c8e2005-01-19 06:24:58 +00001317 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Zachary Warede354bc2016-08-30 02:12:27 -05001318 test/test_tools test/test_warnings test/test_warnings/data \
Alexander Belopolskyea13d9d2010-11-01 17:39:37 +00001319 turtledemo \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +00001320 multiprocessing multiprocessing/dummy \
Ned Deilye8b416e2012-03-22 13:34:11 -07001321 unittest unittest/test unittest/test/testmock \
Vinay Sajip5fd832b2017-01-13 19:08:47 +00001322 venv venv/scripts venv/scripts/common venv/scripts/posix \
Zachary Warec4b53af2016-09-09 17:59:49 -07001323 curses pydoc_data
1324libinstall: build_all $(srcdir)/Modules/xxmodule.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001325 @for i in $(SCRIPTDIR) $(LIBDEST); \
1326 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001327 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001328 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001329 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001330 else true; \
1331 fi; \
1332 done
1333 @for d in $(LIBSUBDIRS); \
1334 do \
1335 a=$(srcdir)/Lib/$$d; \
1336 if test ! -d $$a; then continue; else true; fi; \
1337 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001338 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001339 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001340 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001341 else true; \
1342 fi; \
1343 done
doko@ubuntu.com55532312016-06-14 08:55:19 +02001344 @for i in $(srcdir)/Lib/*.py; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001345 do \
1346 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001347 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001348 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001349 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001350 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001351 echo $(INSTALL_DATA) $$i $(LIBDEST); \
1352 fi; \
1353 done
1354 @for d in $(LIBSUBDIRS); \
1355 do \
1356 a=$(srcdir)/Lib/$$d; \
1357 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001358 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001359 b=$(LIBDEST)/$$d; \
1360 for i in $$a/*; \
1361 do \
1362 case $$i in \
1363 *CVS) ;; \
1364 *.py[co]) ;; \
1365 *.orig) ;; \
1366 *~) ;; \
1367 *) \
1368 if test -d $$i; then continue; fi; \
1369 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001370 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001371 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001372 else \
1373 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001374 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001375 fi;; \
1376 esac; \
1377 done; \
1378 done
Zachary Warec4b53af2016-09-09 17:59:49 -07001379 $(INSTALL_DATA) `cat pybuilddir.txt`/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py \
1380 $(DESTDIR)$(LIBDEST); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001381 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Ned Deily58f27b22011-06-28 00:42:50 -07001382 if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
1383 $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
1384 $(DESTDIR)$(LIBDEST)/distutils/tests ; \
1385 fi
Guido van Rossum827bfd02007-07-15 13:12:42 +00001386 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001387 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001388 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001389 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001390 $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +00001391 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001392 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001393 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001394 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001395 $(DESTDIR)$(LIBDEST)
Brett Cannonf299abd2015-04-13 14:21:02 -04001396 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1397 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1398 -d $(LIBDEST) -f \
1399 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
1400 $(DESTDIR)$(LIBDEST)
1401 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001402 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001403 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001404 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001405 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001406 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001407 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001408 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Ned Deily4725b132012-09-08 19:04:47 -07001409 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Brett Cannonf299abd2015-04-13 14:21:02 -04001410 $(PYTHON_FOR_BUILD) -Wi -OO $(DESTDIR)$(LIBDEST)/compileall.py \
1411 -d $(LIBDEST)/site-packages -f \
1412 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
1413 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Ned Deily4725b132012-09-08 19:04:47 -07001414 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
1415 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1416 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001417
doko@python.org87421192013-01-26 11:39:31 +01001418python-config: $(srcdir)/Misc/python-config.in Misc/python-config.sh
Martin Panteradab00f2016-09-22 09:34:43 +00001419 @ # Substitution happens here, as the completely-expanded BINDIR
1420 @ # is not available in configure
doko@python.org87421192013-01-26 11:39:31 +01001421 sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config.py
Martin Panteradab00f2016-09-22 09:34:43 +00001422 @ # Replace makefile compat. variable references with shell script compat. ones; $(VAR) -> ${VAR}
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001423 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 +00001424 @ # On Darwin, always use the python version of the script, the shell
1425 @ # version doesn't use the compiler customizations that are provided
1426 @ # in python (_osx_support.py).
1427 @if test `uname -s` = Darwin; then \
doko@ubuntu.com0df35b02013-08-01 15:32:49 +02001428 cp python-config.py python-config; \
1429 fi
1430
Collin Winterbf199072010-03-19 21:17:17 +00001431
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001432# Install the include files
1433INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
1434inclinstall:
1435 @for i in $(INCLDIRSTOMAKE); \
1436 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001437 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001438 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001439 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001440 else true; \
1441 fi; \
1442 done
1443 @for i in $(srcdir)/Include/*.h; \
1444 do \
1445 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001446 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001447 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001448 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001449
1450# Install the library and miscellaneous stuff needed for extending/embedding
1451# This goes into $(exec_prefix)
doko@ubuntu.com100aa182015-04-13 22:10:21 +02001452LIBPL= @LIBPL@
Antoine Pitrou20327222009-05-24 20:39:11 +00001453
1454# pkgconfig directory
1455LIBPC= $(LIBDIR)/pkgconfig
1456
torsavaa1054c32017-05-05 17:35:50 +02001457libainstall: @DEF_MAKE_RULE@ python-config
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001458 @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001459 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001460 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001461 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001462 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001463 else true; \
1464 fi; \
1465 done
Martin v. Löwis1142de32002-03-29 16:28:31 +00001466 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +00001467 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07001468 if test "$(SHLIB_SUFFIX)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001469 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001470 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001471 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001472 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001473 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001474 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001475 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001476 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001477 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001478 $(INSTALL_DATA) Programs/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001479 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
1480 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
1481 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
1482 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
Antoine Pitrou20327222009-05-24 20:39:11 +00001483 $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001484 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
1485 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
doko@python.org87421192013-01-26 11:39:31 +01001486 $(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001487 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Martin Panter5401e872016-08-12 13:21:05 +00001488 @if [ -s Modules/python.exp -a \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001489 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
1490 echo; echo "Installing support files for building shared extension modules on AIX:"; \
Martin Panter5401e872016-08-12 13:21:05 +00001491 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001492 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001493 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001494 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001495 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001496 echo "$(LIBPL)/makexp_aix"; \
Martin Panter395733d2016-11-20 07:56:37 +00001497 $(INSTALL_SCRIPT) Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001498 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001499 echo "$(LIBPL)/ld_so_aix"; \
1500 echo; echo "See Misc/AIX-NOTES for details."; \
1501 else true; \
1502 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001503
1504# Install the dynamically loadable modules
1505# This goes into $(exec_prefix)
Benjamin Petersonbbda0c52010-07-17 20:39:23 +00001506sharedinstall: sharedmods
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001507 $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001508 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +00001509 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001510 --install-platlib=$(DESTSHARED) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001511 --root=$(DESTDIR)/
Xavier de Gaye1c17e7f2016-10-28 11:22:05 +02001512 -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py
Trent Nelsonc101bf32012-10-16 08:13:12 -04001513 -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001514
Jack Jansencb4321e2002-08-09 00:18:21 +00001515# Here are a couple of targets for MacOSX again, to install a full
1516# framework-based Python. frameworkinstall installs everything, the
1517# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001518# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +00001519#
Thomas Wouters477c8d52006-05-27 19:21:47 +00001520#
Martin Panter46f50722016-05-26 05:35:26 +00001521# This target is here for backward compatibility, previous versions of Python
Thomas Wouters477c8d52006-05-27 19:21:47 +00001522# hadn't integrated framework installation in the normal install process.
1523frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +00001524
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001525# On install, we re-make the framework
1526# structure in the install location, /Library/Frameworks/ or the argument to
1527# --enable-framework. If --enable-framework has been specified then we have
1528# automatically set prefix to the location deep down in the framework, so we
1529# only have to cater for the structural bits of the framework.
1530
Jack Jansencb4321e2002-08-09 00:18:21 +00001531frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1532
1533frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001534 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001535 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001536 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001537 else true; \
1538 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001539 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001540 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001541 echo "Creating directory $(DESTDIR)$$i"; \
1542 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001543 else true; \
1544 fi; \
1545 done
Ronald Oussoren0499d0b2010-12-07 14:41:05 +00001546 $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001547 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 +00001548 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001549 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001550 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1551 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001552 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001553
Jack Jansencb4321e2002-08-09 00:18:21 +00001554# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001555# Install a number of symlinks to keep software that expects a normal unix
1556# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001557frameworkinstallmaclib:
Ned Deilyb8d3e402016-06-18 15:58:52 -04001558 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).a"
1559 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(LDVERSION).dylib"
1560 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).a"
1561 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(LIBPL)/libpython$(VERSION).dylib"
Christian Heimesae6275d2013-07-09 14:30:04 +02001562 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib"
1563 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
Jack Jansencb4321e2002-08-09 00:18:21 +00001564
1565# This installs the IDE, the Launcher and other apps into /Applications
1566frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001567 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001568
Ned Deilyb8f944f2013-11-21 22:42:25 -08001569# Build the bootstrap executable that will spawn the interpreter inside
1570# an app bundle within the framework. This allows the interpreter to
1571# run OS X GUI APIs.
1572frameworkpythonw:
1573 cd Mac && $(MAKE) pythonw
1574
1575# This installs the python* and other bin symlinks in $prefix/bin or in
1576# a bin directory relative to the framework root
Jack Jansencb4321e2002-08-09 00:18:21 +00001577frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001578 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1579
1580frameworkaltinstallunixtools:
1581 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001582
Georg Brandl59b44722010-12-30 22:12:40 +00001583# This installs the Tools into the applications directory.
Jack Jansena1b77582003-06-19 22:35:20 +00001584# It is not part of a normal frameworkinstall
1585frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001586 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001587
Skip Montanarodecc6a42003-01-01 20:07:49 +00001588# This installs a few of the useful scripts in Tools/scripts
1589scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001590 SRCDIR=$(srcdir) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001591 $(PYTHON_FOR_BUILD) $(srcdir)/Tools/scripts/setup.py install \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001592 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001593 --install-scripts=$(BINDIR) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001594 --root=$(DESTDIR)/
Skip Montanarodecc6a42003-01-01 20:07:49 +00001595
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001596# Build the toplevel Makefile
Victor Stinner69f55cc2011-10-12 22:09:40 +02001597Makefile.pre: $(srcdir)/Makefile.pre.in config.status
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001598 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1599 $(MAKE) -f Makefile.pre Makefile
1600
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001601# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001602config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001603 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001604
Jack Jansen1999ef42001-12-06 21:47:20 +00001605.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001606
1607# Some make's put the object file in the current directory
1608.c.o:
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +00001609 $(CC) -c $(PY_CORE_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001610
Victor Stinner826f83f2017-04-28 15:07:10 +02001611# bpo-30104: dtoa.c uses union to cast double to unsigned long[2]. clang 4.0
1612# with -O2 or higher and strict aliasing miscompiles the ratio() function
1613# causing rounding issues. Compile dtoa.c using -fno-strict-aliasing on clang.
1614# https://bugs.llvm.org//show_bug.cgi?id=31928
1615Python/dtoa.o: Python/dtoa.c
1616 $(CC) -c $(PY_CORE_CFLAGS) $(CFLAGS_ALIASING) -o $@ $<
1617
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001618# Run reindent on the library
1619reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001620 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001621
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001622# Rerun configure with the same options as it was run last time,
1623# provided the config.status script exists
1624recheck:
1625 $(SHELL) config.status --recheck
1626 $(SHELL) config.status
1627
Victor Stinnera5c62a82017-05-03 18:21:48 +02001628# Regenerate configure and pyconfig.h.in
1629.PHONY: autoconf
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001630autoconf:
Victor Stinnera5c62a82017-05-03 18:21:48 +02001631 # Regenerate the configure script from configure.ac using autoconf
Matthias Klose80b09d42010-04-25 21:23:32 +00001632 (cd $(srcdir); autoconf -Wall)
Victor Stinnera5c62a82017-05-03 18:21:48 +02001633 # Regenerate pyconfig.h.in from configure.ac using autoheader
Matthias Klose80b09d42010-04-25 21:23:32 +00001634 (cd $(srcdir); autoheader -Wall)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001635
1636# Create a tags file for vi
1637tags::
Victor Stinner3be3b972017-11-30 22:49:10 +01001638 ctags -w $(srcdir)/Include/*.h $(srcdir)/Include/internal/*.h
1639 for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
1640 ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
Victor Stinnercf0ac6a2016-08-17 13:58:12 +02001641 LC_ALL=C sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001642
1643# Create a tags file for GNU Emacs
1644TAGS::
1645 cd $(srcdir); \
Victor Stinner48669572017-09-11 09:34:36 -07001646 etags Include/*.h Include/internal/*.h; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001647 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1648
1649# Sanitation targets -- clean leaves libraries, executables and tags
Mark Dickinson067b38e2009-09-24 19:24:44 +00001650# files, which clobber removes as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001651pycremoval:
Petri Lehtinenbc74ee02011-11-05 21:04:24 +02001652 -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
Barry Warsaw5f2347d2010-04-26 16:02:14 +00001653 -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001654
Guido van Rossum77b5e332007-08-29 23:24:02 +00001655rmtestturds:
1656 -rm -f *BAD *GOOD *SKIPPED
1657 -rm -rf OUT
1658 -rm -f *.TXT
1659 -rm -f *.txt
1660 -rm -f gb-18030-2000.xml
1661
Guido van Rossum8188e632007-08-29 23:48:29 +00001662docclean:
1663 -rm -rf Doc/build
1664 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1665
Guido van Rossum5420bc32007-08-29 23:35:30 +00001666clean: pycremoval
Georg Brandl241bdab2010-07-31 22:05:54 +00001667 find . -name '*.[oa]' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001668 find . -name '*.s[ol]' -exec rm -f {} ';'
Georg Brandl241bdab2010-07-31 22:05:54 +00001669 find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
Thomas Heller6ab91482009-04-24 18:27:10 +00001670 find build -name 'fficonfig.h' -exec rm -f {} ';' || true
Trent Nelsonc101bf32012-10-16 08:13:12 -04001671 find build -name '*.py' -exec rm -f {} ';' || true
1672 find build -name '*.py[co]' -exec rm -f {} ';' || true
1673 -rm -f pybuilddir.txt
Ned Deily4725b132012-09-08 19:04:47 -07001674 -rm -f Lib/lib2to3/*Grammar*.pickle
Nick Coghlan973fe0b2014-07-25 21:52:14 +10001675 -rm -f Programs/_testembed Programs/_freeze_importlib
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)653c8502016-09-06 23:56:54 +00001676 -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';'
Łukasz Langaa785c872016-09-09 17:37:37 -07001677 -rm -f Include/pydtrace_probes.h
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001678 -rm -f profile-gen-stamp
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001679
Christian Heimes33fe8092008-04-13 13:53:33 +00001680profile-removal:
1681 find . -name '*.gc??' -exec rm -f {} ';'
Brett Cannon7188a3e2015-09-18 15:13:44 -07001682 find . -name '*.profclang?' -exec rm -f {} ';'
Zachary Ware5af85642015-12-21 12:09:17 -06001683 find . -name '*.dyn' -exec rm -f {} ';'
Christian Heimes49e52f92013-07-31 00:55:18 +02001684 rm -f $(COVERAGE_INFO)
1685 rm -rf $(COVERAGE_REPORT)
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001686 rm -f profile-run-stamp
Christian Heimes33fe8092008-04-13 13:53:33 +00001687
1688clobber: clean profile-removal
Jack Jansen1999ef42001-12-06 21:47:20 +00001689 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Matthias Klose597e6b42012-04-04 13:20:55 +02001690 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001691 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001692 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001693 -rm -rf $(PYTHONFRAMEWORKDIR)
doko@python.org87421192013-01-26 11:39:31 +01001694 -rm -f python-config.py python-config
Neil Schemenauer4e38d712017-11-02 10:46:02 -07001695 -rm -f profile-gen-stamp profile-clean-stamp
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001696
1697# Make things extra clean, before making a distribution:
1698# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001699# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001700distclean: clobber
Christian Heimesf8471862013-11-24 03:32:40 +01001701 for file in $(srcdir)/Lib/test/data/* ; do \
1702 if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
Mark Dickinsonde802be2010-08-01 21:33:01 +00001703 done
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001704 -rm -f core Makefile Makefile.pre config.status \
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02001705 Modules/Setup Modules/Setup.local \
Xiang Zhangfa5abac2017-05-09 10:32:13 +08001706 Modules/ld_so_aix Modules/python.exp Misc/python.pc \
1707 Misc/python-config.sh
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001708 -rm -f python*-gdb.py
Victor Stinner8d50d622016-09-29 22:31:06 +02001709 # Issue #28258: set LC_ALL to avoid issues with Estonian locale.
1710 # Expansion is performed here by shell (spawned by make) itself before
1711 # arguments are passed to find. So LC_ALL=C must be set as a separate
1712 # command.
Serhiy Storchaka80bc7dc2016-09-29 20:29:23 +03001713 LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
Eric V. Smithf4c47b52013-07-02 09:06:54 -04001714 -o -name '[@,#]*' -o -name '*.old' \
1715 -o -name '*.orig' -o -name '*.rej' \
1716 -o -name '*.bak' ')' \
1717 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001718
Victor Stinner87d332d2017-10-24 01:29:53 -07001719# Check that all symbols exported by libpython start with "Py" or "_Py"
torsavaa1054c32017-05-05 17:35:50 +02001720smelly: @DEF_MAKE_RULE@
Victor Stinner87d332d2017-10-24 01:29:53 -07001721 $(RUNSHARED) ./$(BUILDPYTHON) Tools/scripts/smelly.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001722
1723# Find files with funny names
1724funny:
Éric Araujo1c608e32011-08-10 02:01:32 +02001725 find $(SUBDIRS) $(SUBDIRSTOO) \
Éric Araujoe9715b92011-08-10 21:42:23 +02001726 -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001727 -o -name '*.[chs]' \
1728 -o -name '*.py' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001729 -o -name '*.pyw' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001730 -o -name '*.dat' \
1731 -o -name '*.el' \
1732 -o -name '*.fd' \
1733 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001734 -o -name '*.gif' \
1735 -o -name '*.txt' \
1736 -o -name '*.xml' \
1737 -o -name '*.xbm' \
1738 -o -name '*.xpm' \
1739 -o -name '*.uue' \
1740 -o -name '*.decTest' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001741 -o -name '*.tmCommand' \
1742 -o -name '*.tmSnippet' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001743 -o -name 'Setup' \
1744 -o -name 'Setup.*' \
1745 -o -name README \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001746 -o -name NEWS \
1747 -o -name HISTORY \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001748 -o -name Makefile \
1749 -o -name ChangeLog \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001750 -o -name .hgignore \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001751 -o -name MANIFEST \
Éric Araujob5da6e92011-08-16 19:05:56 +02001752 -o -print
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001753
Christian Heimesada8c3b2008-03-18 18:26:33 +00001754# Perform some verification checks on any modified files.
torsavaa1054c32017-05-05 17:35:50 +02001755patchcheck: @DEF_MAKE_RULE@
Georg Brandlfcaf9102008-07-16 02:17:56 +00001756 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001757
Guido van Rossum9454ad72001-08-18 21:08:22 +00001758# Dependencies
1759
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001760Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001761
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001762# Declare targets that aren't real files
xdegaye0de92852017-11-08 16:03:58 +01001763.PHONY: all build_all sharedmods check-clean-src oldsharedmods test quicktest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001764.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1765.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1766.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1767.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Victor Stinnera5c62a82017-05-03 18:21:48 +02001768.PHONY: frameworkaltinstallunixtools recheck clean clobber distclean
Ned Deily322f5ba2013-11-21 23:01:59 -08001769.PHONY: smelly funny patchcheck touch altmaninstall commoninstall
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001770.PHONY: gdbhooks
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001771
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001772# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
Barry Warsaw771d33e2010-12-13 18:04:23 +00001773# Local Variables:
1774# mode: makefile
1775# End: