blob: e97b07b24b12c94a3a112055c3a12a76168bfbe0 [file] [log] [blame]
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001# Top-level Makefile for Python
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00002#
Neil Schemenauer85515ad2001-01-24 17:11:43 +00003# As distributed, this file is called Makefile.pre.in; it is processed
4# into the real Makefile by running the script ./configure, which
5# replaces things like @spam@ with values appropriate for your system.
6# This means that if you edit Makefile, your changes get lost the next
7# time you run the configure script. Ideally, you can do:
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00008#
Neil Schemenauer85515ad2001-01-24 17:11:43 +00009# ./configure
10# make
11# make test
12# make install
Guido van Rossum7cb32ae2001-08-17 15:32:31 +000013#
Neil Schemenauer85515ad2001-01-24 17:11:43 +000014# If you have a previous version of Python installed that you don't
15# want to overwrite, you can use "make altinstall" instead of "make
Neil Schemenauer2b2681a2001-02-16 04:16:34 +000016# install". Refer to the "Installing" section in the README file for
17# additional details.
Guido van Rossum7cb32ae2001-08-17 15:32:31 +000018#
Neil Schemenauer85515ad2001-01-24 17:11:43 +000019# See also the section "Build instructions" in the README file.
20
21# === Variables set by makesetup ===
22
23MODOBJS= _MODOBJS_
24MODLIBS= _MODLIBS_
25
26# === Variables set by configure
27VERSION= @VERSION@
28srcdir= @srcdir@
29VPATH= @srcdir@
Trent Nelson739fc542012-10-17 04:45:30 -040030abs_srcdir= @abs_srcdir@
31abs_builddir= @abs_builddir@
Trent Nelson9effe692012-10-16 08:41:32 -040032
Neil Schemenauer85515ad2001-01-24 17:11:43 +000033
34CC= @CC@
35CXX= @CXX@
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000036MAINCC= @MAINCC@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000037LINKCC= @LINKCC@
38AR= @AR@
39RANLIB= @RANLIB@
doko@ubuntu.com58844492012-06-30 18:25:32 +020040READELF= @READELF@
Georg Brandl0d169ea2010-09-03 22:14:52 +000041SOABI= @SOABI@
Barry Warsaw8cf4eae2010-10-16 01:04:07 +000042LDVERSION= @LDVERSION@
Georg Brandl1ca2e792011-03-05 20:51:24 +010043HGVERSION= @HGVERSION@
44HGTAG= @HGTAG@
45HGBRANCH= @HGBRANCH@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000046
Georg Brandl0d169ea2010-09-03 22:14:52 +000047GNULD= @GNULD@
Tarek Ziadébe720e02009-05-09 11:55:12 +000048
Neil Schemenauer85515ad2001-01-24 17:11:43 +000049# Shell used by make (some versions default to the login shell, which is bad)
50SHELL= /bin/sh
51
52# Use this to make a link between python$(VERSION) and python in $(BINDIR)
53LN= @LN@
54
55# Portable install script (configure doesn't always guess right)
56INSTALL= @INSTALL@
57INSTALL_PROGRAM=@INSTALL_PROGRAM@
Neil Schemenauer3f5cc202001-04-10 23:03:35 +000058INSTALL_SCRIPT= @INSTALL_SCRIPT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000059INSTALL_DATA= @INSTALL_DATA@
60# Shared libraries must be installed with executable mode on some systems;
61# rather than figuring out exactly which, we always give them executable mode.
62# Also, making them read-only seems to be a good idea...
63INSTALL_SHARED= ${INSTALL} -m 555
64
Matthias Klose93a0ef12012-03-15 18:08:34 +010065MKDIR_P= @MKDIR_P@
66
Neil Schemenauer85515ad2001-01-24 17:11:43 +000067MAKESETUP= $(srcdir)/Modules/makesetup
68
69# Compiler options
70OPT= @OPT@
Skip Montanarodecc6a42003-01-01 20:07:49 +000071BASECFLAGS= @BASECFLAGS@
Trent Nelson9effe692012-10-16 08:41:32 -040072BASECPPFLAGS= @BASECPPFLAGS@
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000073CONFIGURE_CFLAGS= @CFLAGS@
74CONFIGURE_CPPFLAGS= @CPPFLAGS@
75CONFIGURE_LDFLAGS= @LDFLAGS@
76# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
77# command line to append to these values without stomping the pre-set
78# values.
79PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
Brett Cannon516592f2004-12-07 00:42:59 +000080# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
81# be able to build extension modules using the directories specified in the
82# environment variables
Trent Nelson9effe692012-10-16 08:41:32 -040083PY_CPPFLAGS= $(BASECPPFLAGS) -I. -IInclude -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPPFLAGS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000084PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS)
Martin v. Löwis48e14d32011-05-09 07:37:45 +020085NO_AS_NEEDED= @NO_AS_NEEDED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000086LDLAST= @LDLAST@
87SGI_ABI= @SGI_ABI@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000088CCSHARED= @CCSHARED@
89LINKFORSHARED= @LINKFORSHARED@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +000090ARFLAGS= @ARFLAGS@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000091# Extra C flags added for building the interpreter object files.
92CFLAGSFORSHARED=@CFLAGSFORSHARED@
93# C flags used for building the interpreter object files
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +000094PY_CORE_CFLAGS= $(PY_CFLAGS) $(PY_CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000095
Neil Schemenauer85515ad2001-01-24 17:11:43 +000096
97# Machine-dependent subdirectories
98MACHDEP= @MACHDEP@
99
doko@python.org3e6e2ac2013-01-25 13:12:29 +0100100# Multiarch directory (may be empty)
101MULTIARCH= @MULTIARCH@
102
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000103# Install prefix for architecture-independent files
104prefix= @prefix@
105
106# Install prefix for architecture-dependent files
107exec_prefix= @exec_prefix@
108
Thomas Woutersbca54802007-09-10 19:32:14 +0000109# Install prefix for data files
110datarootdir= @datarootdir@
111
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000112# Expanded directories
Antoine Pitrou7a61ba92010-03-21 19:25:26 +0000113BINDIR= @bindir@
114LIBDIR= @libdir@
Martin v. Löwisd429ab62001-08-02 06:20:20 +0000115MANDIR= @mandir@
116INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000117CONFINCLUDEDIR= $(exec_prefix)/include
118SCRIPTDIR= $(prefix)/lib
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000119ABIFLAGS= @ABIFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000120
121# Detailed destination directories
122BINLIBDEST= $(LIBDIR)/python$(VERSION)
123LIBDEST= $(SCRIPTDIR)/python$(VERSION)
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000124INCLUDEPY= $(INCLUDEDIR)/python$(LDVERSION)
125CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(LDVERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000126
127# Symbols used for using shared libraries
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700128SHLIB_SUFFIX= @SHLIB_SUFFIX@
129EXT_SUFFIX= @EXT_SUFFIX@
130SO= $(SHLIB_SUFFIX)
Antoine Pitroudbec7802010-10-10 09:37:12 +0000131LDSHARED= @LDSHARED@ $(PY_LDFLAGS)
132BLDSHARED= @BLDSHARED@ $(PY_LDFLAGS)
Tarek Ziadé03d788d2010-04-03 08:46:49 +0000133LDCXXSHARED= @LDCXXSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000134DESTSHARED= $(BINLIBDEST)/lib-dynload
135
136# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000137EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000138BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000139
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000140# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000141UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000142PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
143PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
144PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
145PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000146# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000147# by distutils. The export statement is needed to ensure that the
148# deployment target is active during build.
149MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
150@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
151
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000152# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
153OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000154
Martin v. Löwis1142de32002-03-29 16:28:31 +0000155# Environment to run shared python without installed libraries
156RUNSHARED= @RUNSHARED@
157
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000158# Modes for directories, executables and data files created by the
159# install process. Default to user-only-writable for all file types.
160DIRMODE= 755
161EXEMODE= 755
162FILEMODE= 644
163
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000164# configure script arguments
165CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000166
167
168# Subdirectories with code
169SRCDIRS= @SRCDIRS@
170
171# Other subdirectories
Georg Brandl59b44722010-12-30 22:12:40 +0000172SUBDIRSTOO= Include Lib Misc
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000173
174# Files and directories to be distributed
Matthias Klose0f4c16e2012-03-14 23:10:15 +0100175CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000176DISTFILES= README ChangeLog $(CONFIGFILES)
177DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
178DIST= $(DISTFILES) $(DISTDIRS)
179
180
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000181LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000182LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000183BLDLIBRARY= @BLDLIBRARY@
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000184PY3LIBRARY= @PY3LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000185DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000186LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000187INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000188
189
190LIBS= @LIBS@
191LIBM= @LIBM@
192LIBC= @LIBC@
193SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000194SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000195
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000196THREADOBJ= @THREADOBJ@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000197DLINCLDIR= @DLINCLDIR@
198DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000199MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000200LIBOBJDIR= Python/
201LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000202
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000203PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000204BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000205
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200206PYTHON_FOR_BUILD=@PYTHON_FOR_BUILD@
207_PYTHON_HOST_PLATFORM=@_PYTHON_HOST_PLATFORM@
doko@python.orga10e4a92013-01-25 18:45:12 +0100208BUILD_GNU_TYPE= @build@
209HOST_GNU_TYPE= @host@
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200210
Ned Deily65657c22013-10-25 00:34:44 -0700211# Tcl and Tk config info from --with-tcltk-includes and -libs options
212TCLTK_INCLUDES= @TCLTK_INCLUDES@
213TCLTK_LIBS= @TCLTK_LIBS@
214
Christian Heimes33fe8092008-04-13 13:53:33 +0000215# The task to run while instrument when building the profile-opt target
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000216PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
217#PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
Christian Heimes33fe8092008-04-13 13:53:33 +0000218
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000219# === Definitions added by makesetup ===
220
221
222##########################################################################
223# Modules
224MODULE_OBJS= \
225 Modules/config.o \
226 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000227 Modules/main.o \
228 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000229
230# Used of signalmodule.o is not available
231SIGNAL_OBJS= @SIGNAL_OBJS@
232
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000233IO_H= Modules/_io/_iomodule.h
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000234
235IO_OBJS= \
Alexandre Vassalotti8d8d6302009-04-04 19:58:40 +0000236 Modules/_io/_iomodule.o \
237 Modules/_io/iobase.o \
238 Modules/_io/fileio.o \
239 Modules/_io/bufferedio.o \
240 Modules/_io/textio.o \
241 Modules/_io/bytesio.o \
242 Modules/_io/stringio.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000243
244##########################################################################
245# Grammar
Trent Nelsone60ee292012-08-30 14:52:38 +0000246GRAMMAR_H= Include/graminit.h
247GRAMMAR_C= Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000248GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
249
250
Benjamin Petersond78735d2010-01-01 16:04:23 +0000251LIBFFI_INCLUDEDIR= @LIBFFI_INCLUDEDIR@
252
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000253##########################################################################
254# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000255PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000256
Matthias Klose93a0ef12012-03-15 18:08:34 +0100257PSRCS= \
258 Parser/acceler.c \
259 Parser/grammar1.c \
260 Parser/listnode.c \
261 Parser/node.c \
262 Parser/parser.c \
263 Parser/bitset.c \
264 Parser/metagrammar.c \
265 Parser/firstsets.c \
266 Parser/grammar.c \
267 Parser/pgen.c
268
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000269POBJS= \
270 Parser/acceler.o \
271 Parser/grammar1.o \
272 Parser/listnode.o \
273 Parser/node.o \
274 Parser/parser.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000275 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000276 Parser/metagrammar.o \
277 Parser/firstsets.o \
278 Parser/grammar.o \
279 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000280
Victor Stinner7f2fee32011-04-05 00:39:01 +0200281PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/parsetok.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000282
Matthias Klose93a0ef12012-03-15 18:08:34 +0100283PGSRCS= \
284 Objects/obmalloc.c \
285 Python/dynamic_annotations.c \
286 Python/mysnprintf.c \
287 Python/pyctype.c \
288 Parser/tokenizer_pgen.c \
289 Parser/printgrammar.c \
290 Parser/parsetok_pgen.c \
291 Parser/pgenmain.c
292
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000293PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000294 Objects/obmalloc.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000295 Python/dynamic_annotations.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000296 Python/mysnprintf.o \
Benjamin Petersonbf92b7f2010-04-04 23:03:35 +0000297 Python/pyctype.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000298 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000299 Parser/printgrammar.o \
Victor Stinner7f2fee32011-04-05 00:39:01 +0200300 Parser/parsetok_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000301 Parser/pgenmain.o
302
Georg Brandl86def6c2008-01-21 20:36:10 +0000303PARSER_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200304 $(srcdir)/Parser/parser.h \
305 $(srcdir)/Include/parsetok.h \
306 $(srcdir)/Parser/tokenizer.h
Georg Brandl86def6c2008-01-21 20:36:10 +0000307
Matthias Klose93a0ef12012-03-15 18:08:34 +0100308PGENSRCS= $(PSRCS) $(PGSRCS)
309PGENOBJS= $(POBJS) $(PGOBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000310
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000311##########################################################################
312# AST
Trent Nelsone60ee292012-08-30 14:52:38 +0000313AST_H_DIR= Include
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000314AST_H= $(AST_H_DIR)/Python-ast.h
Trent Nelsone60ee292012-08-30 14:52:38 +0000315AST_C_DIR= Python
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000316AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000317AST_ASDL= $(srcdir)/Parser/Python.asdl
318
319ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
320# XXX Note that a build now requires Python exist before the build starts
Matthias Klosec4c48422012-10-21 23:05:35 +0200321ASDLGEN= @ASDLGEN@ $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000322
323##########################################################################
324# Python
Antoine Pitroub52ec782009-01-25 16:34:23 +0000325
326OPCODETARGETS_H= \
Trent Nelson9effe692012-10-16 08:41:32 -0400327 Python/opcode_targets.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000328
329OPCODETARGETGEN= \
330 $(srcdir)/Python/makeopcodetargets.py
331
332OPCODETARGETGEN_FILES= \
333 $(OPCODETARGETGEN) $(srcdir)/Lib/opcode.py
334
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000335PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000336 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000337 Python/Python-ast.o \
338 Python/asdl.o \
339 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000340 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000341 Python/ceval.o \
342 Python/compile.o \
343 Python/codecs.o \
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000344 Python/dynamic_annotations.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000345 Python/errors.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000346 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000347 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000348 Python/getargs.o \
349 Python/getcompiler.o \
350 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000351 Python/getplatform.o \
352 Python/getversion.o \
353 Python/graminit.o \
354 Python/import.o \
355 Python/importdl.o \
356 Python/marshal.o \
357 Python/modsupport.o \
358 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000359 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000360 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000361 Python/pyarena.o \
Eric Smith6dc46f52009-04-27 20:39:49 +0000362 Python/pyctype.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000363 Python/pyfpe.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000364 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000365 Python/pystate.o \
366 Python/pythonrun.o \
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000367 Python/pytime.o \
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100368 Python/random.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000369 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000370 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000371 Python/sysmodule.o \
372 Python/traceback.o \
373 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000374 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000375 Python/pystrtod.o \
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000376 Python/dtoa.o \
Eric Smith8c663262007-08-25 02:26:07 +0000377 Python/formatter_unicode.o \
Victor Stinner4e314432010-10-07 21:45:39 +0000378 Python/fileutils.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000379 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000380 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000381 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000382 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000383
384
385##########################################################################
386# Objects
387OBJECT_OBJS= \
388 Objects/abstract.o \
Antoine Pitroueeb7eea2011-10-06 18:57:27 +0200389 Objects/accu.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000390 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000391 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000392 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000393 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000394 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000395 Objects/classobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000396 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000397 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000398 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000399 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000400 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000401 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000402 Objects/fileobject.o \
403 Objects/floatobject.o \
404 Objects/frameobject.o \
405 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000406 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000407 Objects/listobject.o \
408 Objects/longobject.o \
409 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000410 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000411 Objects/methodobject.o \
412 Objects/moduleobject.o \
Barry Warsaw409da152012-06-03 16:18:47 -0400413 Objects/namespaceobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000414 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000415 Objects/obmalloc.o \
Benjamin Petersonb173f782009-05-05 22:31:58 +0000416 Objects/capsule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000417 Objects/rangeobject.o \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200418 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000419 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000420 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000421 Objects/tupleobject.o \
422 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000423 Objects/unicodeobject.o \
424 Objects/unicodectype.o \
425 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000426
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000427##########################################################################
428# objects that get linked into the Python library
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200429LIBRARY_OBJS_OMIT_FROZEN= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000430 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000431 $(PARSER_OBJS) \
432 $(OBJECT_OBJS) \
433 $(PYTHON_OBJS) \
434 $(MODULE_OBJS) \
435 $(SIGNAL_OBJS) \
436 $(MODOBJS)
437
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200438LIBRARY_OBJS= \
439 $(LIBRARY_OBJS_OMIT_FROZEN) \
440 Python/frozen.o
441
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000442#########################################################################
443# Rules
444
445# Default target
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000446all: build_all
Trent Nelsonc101bf32012-10-16 08:13:12 -0400447build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks Modules/_testembed
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000448
Christian Heimes33fe8092008-04-13 13:53:33 +0000449# Compile a binary with gcc profile guided optimization.
450profile-opt:
451 @echo "Building with support for profile generation:"
452 $(MAKE) clean
453 $(MAKE) build_all_generate_profile
454 @echo "Running benchmark to generate profile data:"
455 $(MAKE) profile-removal
456 $(MAKE) run_profile_task
457 @echo "Rebuilding with profile guided optimizations:"
458 $(MAKE) clean
459 $(MAKE) build_all_use_profile
460
461build_all_generate_profile:
462 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-generate" LIBS="$(LIBS) -lgcov"
463
464run_profile_task:
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200465 : # FIXME: can't run for a cross build
Antoine Pitrou2d9db1d2012-06-17 00:27:30 +0200466 $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK)
Christian Heimes33fe8092008-04-13 13:53:33 +0000467
468build_all_use_profile:
Matthias Klose39b1e5d2012-06-27 14:13:33 +0200469 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use -fprofile-correction"
Christian Heimes33fe8092008-04-13 13:53:33 +0000470
Georg Brandlb533e262008-05-25 18:19:30 +0000471coverage:
472 @echo "Building with support for coverage checking:"
473 $(MAKE) clean
474 $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
475
476
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000477# Build the interpreter
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000478$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
Georg Brandl9411eeb2010-08-01 08:46:24 +0000479 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/python.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000480
Trent Nelsonc101bf32012-10-16 08:13:12 -0400481platform: $(BUILDPYTHON) pybuilddir.txt
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200482 $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000483
Trent Nelsonc101bf32012-10-16 08:13:12 -0400484# Create build directory and generate the sysconfig build-time data there.
485# pybuilddir.txt contains the name of the build dir and is used for
486# sys.path fixup -- see Modules/getpath.c.
487pybuilddir.txt: $(BUILDPYTHON)
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200488 $(RUNSHARED) $(PYTHON_FOR_BUILD) -S -m sysconfig --generate-posix-vars
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000489
490# Build the shared modules
Christian Heimes8ca1d5f2012-12-02 08:14:50 +0100491# Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
Christian Heimes5f381212012-09-07 02:24:58 +0200492# -s, --silent or --quiet is always the first char.
Christian Heimes8ca1d5f2012-12-02 08:14:50 +0100493# Under BSD make, MAKEFLAGS might be " -s -v x=y".
Trent Nelsonc101bf32012-10-16 08:13:12 -0400494sharedmods: $(BUILDPYTHON) pybuilddir.txt
Christian Heimes5f381212012-09-07 02:24:58 +0200495 @case "$$MAKEFLAGS" in \
Christian Heimes8ca1d5f2012-12-02 08:14:50 +0100496 *\ -s*|s*) quiet="-q";; \
Christian Heimes5f381212012-09-07 02:24:58 +0200497 *) quiet="";; \
498 esac; \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200499 $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \
Ned Deily65657c22013-10-25 00:34:44 -0700500 _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \
Christian Heimes4e251402012-09-07 02:26:26 +0200501 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000502
503# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000504# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000505$(LIBRARY): $(LIBRARY_OBJS)
506 -rm -f $@
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000507 $(AR) $(ARFLAGS) $@ Modules/getbuildinfo.o
508 $(AR) $(ARFLAGS) $@ $(PARSER_OBJS)
509 $(AR) $(ARFLAGS) $@ $(OBJECT_OBJS)
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200510 $(AR) $(ARFLAGS) $@ $(PYTHON_OBJS) Python/frozen.o
Tarek Ziadé5662d3e2009-05-07 21:24:43 +0000511 $(AR) $(ARFLAGS) $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
512 $(AR) $(ARFLAGS) $@ $(MODOBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000513 $(RANLIB) $@
514
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000515libpython$(LDVERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000516 if test $(INSTSONAME) != $(LDLIBRARY); then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000517 $(BLDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000518 $(LN) -f $(INSTSONAME) $@; \
Georg Brandlb1441c72009-01-03 22:33:39 +0000519 else \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000520 $(BLDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000521 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000522
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000523libpython3.so: libpython$(LDVERSION).so
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200524 $(BLDSHARED) $(NO_AS_NEEDED) -o $@ -Wl,-h$@ $^
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000525
Georg Brandl6e8d17c2011-02-19 08:47:14 +0000526libpython$(LDVERSION).dylib: $(LIBRARY_OBJS)
527 $(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 +0000528
Georg Brandlb1441c72009-01-03 22:33:39 +0000529
Martin v. Löwis1142de32002-03-29 16:28:31 +0000530libpython$(VERSION).sl: $(LIBRARY_OBJS)
Antoine Pitroudbec7802010-10-10 09:37:12 +0000531 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000532
Benjamin Peterson6a6666a2010-04-11 21:49:28 +0000533# Copy up the gdb python hooks into a position where they can be automatically
534# loaded by gdb during Lib/test/test_gdb.py
535#
536# Distributors are likely to want to install this somewhere else e.g. relative
537# to the stripped DWARF data for the shared library.
538gdbhooks: $(BUILDPYTHON)-gdb.py
539
540SRC_GDB_HOOKS=$(srcdir)/Tools/gdb/libpython.py
541$(BUILDPYTHON)-gdb.py: $(SRC_GDB_HOOKS)
542 $(INSTALL_DATA) $(SRC_GDB_HOOKS) $(BUILDPYTHON)-gdb.py
543
Jack Jansenea0c3822002-08-01 21:57:49 +0000544# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
545# minimal framework (not including the Lib directory and such) in the current
546# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000547RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000548$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
549 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000550 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000551 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Ronald Oussoren42d0f682011-03-14 11:04:34 -0400552 $(CC) -o $(LDLIBRARY) $(PY_LDFLAGS) -dynamiclib \
Ronald Oussoren25032492011-03-14 10:11:59 -0400553 -all_load $(LIBRARY) -Wl,-single_module \
554 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
555 -compatibility_version $(VERSION) \
556 -current_version $(VERSION) \
Victor Stinnerdfb866d2011-09-29 01:12:24 +0200557 -framework CoreFoundation $(LIBS);
Jack Jansenea0c3822002-08-01 21:57:49 +0000558 $(INSTALL) -d -m $(DIRMODE) \
559 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
560 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
561 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000562 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000563 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000564 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000565
Jason Tishler30765592003-09-04 11:04:06 +0000566# This rule builds the Cygwin Python DLL and import library if configured
567# for a shared core library; otherwise, this rule is a noop.
568$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
569 if test -n "$(DLLLIBRARY)"; then \
Antoine Pitroudbec7802010-10-10 09:37:12 +0000570 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000571 $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \
Jason Tishler30765592003-09-04 11:04:06 +0000572 else true; \
573 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000574
575
576oldsharedmods: $(SHAREDMODS)
577
578
579Makefile Modules/config.c: Makefile.pre \
580 $(srcdir)/Modules/config.c.in \
581 $(MAKESETUP) \
582 Modules/Setup.config \
583 Modules/Setup \
584 Modules/Setup.local
585 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
586 -s Modules \
587 Modules/Setup.config \
588 Modules/Setup.local \
589 Modules/Setup
590 @mv config.c Modules
591 @echo "The Makefile was updated, you may need to re-run make."
592
593
594Modules/Setup: $(srcdir)/Modules/Setup.dist
595 @if test -f Modules/Setup; then \
596 echo "-----------------------------------------------"; \
597 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
598 echo "check to make sure you have all the updates you"; \
599 echo "need in your Modules/Setup file."; \
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000600 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000601 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000602 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000603
Antoine Pitrou8e605772011-04-25 21:21:07 +0200604Modules/_testembed: Modules/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
605 $(LINKCC) $(PY_LDFLAGS) $(LINKFORSHARED) -o $@ Modules/_testembed.o $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200606
Brett Cannonfd074152012-04-14 14:10:13 -0400607############################################################################
608# Importlib
Antoine Pitrou8e605772011-04-25 21:21:07 +0200609
Antoine Pitroue67f48c2012-06-19 22:29:35 +0200610Modules/_freeze_importlib: Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN)
611 $(LINKCC) $(PY_LDFLAGS) -o $@ Modules/_freeze_importlib.o $(LIBRARY_OBJS_OMIT_FROZEN) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
612
613Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py Modules/_freeze_importlib.c
614 $(MAKE) Modules/_freeze_importlib
615 ./Modules/_freeze_importlib \
616 $(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h
617
Marc-Andre Lemburgaed97732012-04-25 19:45:11 +0200618
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000619############################################################################
620# Special rules for object files
621
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000622Modules/getbuildinfo.o: $(PARSER_OBJS) \
623 $(OBJECT_OBJS) \
624 $(PYTHON_OBJS) \
625 $(MODULE_OBJS) \
626 $(SIGNAL_OBJS) \
627 $(MODOBJS) \
628 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl13039c82011-03-06 10:13:00 +0100629 $(CC) -c $(PY_CORE_CFLAGS) \
Georg Brandl1ca2e792011-03-05 20:51:24 +0100630 -DHGVERSION="\"`LC_ALL=C $(HGVERSION)`\"" \
631 -DHGTAG="\"`LC_ALL=C $(HGTAG)`\"" \
632 -DHGBRANCH="\"`LC_ALL=C $(HGBRANCH)`\"" \
633 -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000634
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000635Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000636 $(CC) -c $(PY_CORE_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000637 -DPREFIX='"$(prefix)"' \
638 -DEXEC_PREFIX='"$(exec_prefix)"' \
639 -DVERSION='"$(VERSION)"' \
640 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000641 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000642
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000643Modules/python.o: $(srcdir)/Modules/python.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000644 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000645
Victor Stinner69f55cc2011-10-12 22:09:40 +0200646Modules/_testembed.o: $(srcdir)/Modules/_testembed.c
647 $(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Modules/_testembed.c
648
Serhiy Storchaka7cf55992013-02-10 21:56:49 +0200649Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c $(srcdir)/Modules/posixmodule.h
650
651Modules/grpmodule.o: $(srcdir)/Modules/grpmodule.c $(srcdir)/Modules/posixmodule.h
652
653Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c $(srcdir)/Modules/posixmodule.h
654
655Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c $(srcdir)/Modules/posixmodule.h
656
Barry Warsaw35f3a2c2010-09-03 18:30:30 +0000657Python/dynload_shlib.o: $(srcdir)/Python/dynload_shlib.c Makefile
658 $(CC) -c $(PY_CORE_CFLAGS) \
659 -DSOABI='"$(SOABI)"' \
660 -o $@ $(srcdir)/Python/dynload_shlib.c
661
doko@ubuntu.comd5537d02013-03-21 13:21:49 -0700662Python/dynload_hpux.o: $(srcdir)/Python/dynload_hpux.c Makefile
663 $(CC) -c $(PY_CORE_CFLAGS) \
664 -DSHLIB_EXT='"$(EXT_SUFFIX)"' \
665 -o $@ $(srcdir)/Python/dynload_hpux.c
666
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000667Python/sysmodule.o: $(srcdir)/Python/sysmodule.c Makefile
668 $(CC) -c $(PY_CORE_CFLAGS) \
669 -DABIFLAGS='"$(ABIFLAGS)"' \
670 -o $@ $(srcdir)/Python/sysmodule.c
671
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000672$(IO_OBJS): $(IO_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000673
Matthias Klose93a0ef12012-03-15 18:08:34 +0100674$(GRAMMAR_H): $(GRAMMAR_INPUT) $(PGENSRCS)
675 @$(MKDIR_P) Include
676 $(MAKE) $(PGEN)
Victor Stinnere1c0c7c2010-12-28 23:14:17 +0000677 $(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Matthias Klose93a0ef12012-03-15 18:08:34 +0100678$(GRAMMAR_C): $(GRAMMAR_H) $(GRAMMAR_INPUT) $(PGENSRCS)
679 $(MAKE) $(GRAMMAR_H)
680 touch $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000681
682$(PGEN): $(PGENOBJS)
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000683 $(CC) $(OPT) $(PY_LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000684
685Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000686 $(srcdir)/Include/token.h \
687 $(srcdir)/Include/grammar.h
688Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
689
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000690Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
Victor Stinner7f2fee32011-04-05 00:39:01 +0200691Parser/parsetok_pgen.o: $(srcdir)/Parser/parsetok.c
Victor Stinner69f55cc2011-10-12 22:09:40 +0200692Parser/printgrammar.o: $(srcdir)/Parser/printgrammar.c
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000693
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000694Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
695
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000696$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
Trent Nelsone60ee292012-08-30 14:52:38 +0000697 $(MKDIR_P) $(AST_H_DIR)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000698 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000699
Benjamin Peterson1f918c12012-01-13 08:45:55 -0500700$(AST_C): $(AST_H) $(AST_ASDL) $(ASDLGEN_FILES)
Trent Nelsone60ee292012-08-30 14:52:38 +0000701 $(MKDIR_P) $(AST_C_DIR)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000702 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000703
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000704Python/compile.o Python/symtable.o Python/ast.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000705
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000706Python/getplatform.o: $(srcdir)/Python/getplatform.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000707 $(CC) -c $(PY_CORE_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000708
709Python/importdl.o: $(srcdir)/Python/importdl.c
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000710 $(CC) -c $(PY_CORE_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000711
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000712Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
713 $(srcdir)/Objects/unicodetype_db.h
714
Christian Heimesda996832008-03-22 18:37:22 +0000715BYTESTR_DEPS = \
Neal Norwitz22c65422008-03-24 05:03:36 +0000716 $(srcdir)/Include/bytes_methods.h \
Christian Heimesda996832008-03-22 18:37:22 +0000717 $(srcdir)/Objects/stringlib/count.h \
718 $(srcdir)/Objects/stringlib/ctype.h \
719 $(srcdir)/Objects/stringlib/eq.h \
720 $(srcdir)/Objects/stringlib/fastsearch.h \
721 $(srcdir)/Objects/stringlib/find.h \
Antoine Pitroudd4e2f02011-10-13 00:02:27 +0200722 $(srcdir)/Objects/stringlib/find_max_char.h \
Christian Heimesda996832008-03-22 18:37:22 +0000723 $(srcdir)/Objects/stringlib/partition.h \
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000724 $(srcdir)/Objects/stringlib/split.h \
Christian Heimesda996832008-03-22 18:37:22 +0000725 $(srcdir)/Objects/stringlib/stringdefs.h \
Christian Heimesda996832008-03-22 18:37:22 +0000726 $(srcdir)/Objects/stringlib/transmogrify.h \
727 $(srcdir)/Objects/stringlib/unicodedefs.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100728 $(srcdir)/Objects/stringlib/localeutil.h \
729 $(srcdir)/Objects/stringlib/undef.h
730
731UNICODE_DEPS = $(BYTESTR_DEPS) \
732 $(srcdir)/Objects/stringlib/asciilib.h \
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100733 $(srcdir)/Objects/stringlib/codecs.h \
Antoine Pitrou3e623242011-11-13 19:37:58 +0100734 $(srcdir)/Objects/stringlib/ucs1lib.h \
735 $(srcdir)/Objects/stringlib/ucs2lib.h \
736 $(srcdir)/Objects/stringlib/ucs4lib.h \
737 $(srcdir)/Objects/stringlib/unicode_format.h \
738 $(srcdir)/Objects/stringlib/unicodedefs.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000739
Benjamin Peterson9ae32202009-01-13 21:53:28 +0000740Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000741
Victor Stinner4e314432010-10-07 21:45:39 +0000742Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000743
Antoine Pitrou3e623242011-11-13 19:37:58 +0100744Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000745
Martin v. Löwis6fb44722011-09-25 17:36:11 +0200746Objects/dictobject.o: $(srcdir)/Objects/stringlib/eq.h
747Objects/setobject.o: $(srcdir)/Objects/stringlib/eq.h
748
Antoine Pitroub52ec782009-01-25 16:34:23 +0000749$(OPCODETARGETS_H): $(OPCODETARGETGEN_FILES)
750 $(OPCODETARGETGEN) $(OPCODETARGETS_H)
751
Victor Stinner69f55cc2011-10-12 22:09:40 +0200752Python/ceval.o: $(OPCODETARGETS_H) $(srcdir)/Python/ceval_gil.h
Antoine Pitroub52ec782009-01-25 16:34:23 +0000753
Eric Smith8c663262007-08-25 02:26:07 +0000754Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200755 $(BYTESTR_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000756
Trent Nelson4d4ec652012-10-16 08:51:24 -0400757Python/frozen.o: Python/importlib.h
Antoine Pitroua4932352012-04-16 18:29:28 +0200758
Trent Nelson9effe692012-10-16 08:41:32 -0400759Objects/typeobject.o: Objects/typeslots.inc
760Objects/typeslots.inc: $(srcdir)/Include/typeslots.h $(srcdir)/Objects/typeslots.py
761 $(PYTHON) $(srcdir)/Objects/typeslots.py < $(srcdir)/Include/typeslots.h > Objects/typeslots.inc
Eric Smith8c663262007-08-25 02:26:07 +0000762
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000763############################################################################
764# Header files
765
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000766PYTHON_HEADERS= \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200767 $(srcdir)/Include/Python.h \
768 $(srcdir)/Include/abstract.h \
769 $(srcdir)/Include/accu.h \
770 $(srcdir)/Include/asdl.h \
771 $(srcdir)/Include/ast.h \
772 $(srcdir)/Include/bltinmodule.h \
773 $(srcdir)/Include/bitset.h \
774 $(srcdir)/Include/boolobject.h \
775 $(srcdir)/Include/bytes_methods.h \
776 $(srcdir)/Include/bytearrayobject.h \
777 $(srcdir)/Include/bytesobject.h \
778 $(srcdir)/Include/cellobject.h \
779 $(srcdir)/Include/ceval.h \
780 $(srcdir)/Include/classobject.h \
781 $(srcdir)/Include/code.h \
782 $(srcdir)/Include/codecs.h \
783 $(srcdir)/Include/compile.h \
784 $(srcdir)/Include/complexobject.h \
785 $(srcdir)/Include/descrobject.h \
786 $(srcdir)/Include/dictobject.h \
787 $(srcdir)/Include/dtoa.h \
788 $(srcdir)/Include/dynamic_annotations.h \
789 $(srcdir)/Include/enumobject.h \
790 $(srcdir)/Include/errcode.h \
791 $(srcdir)/Include/eval.h \
792 $(srcdir)/Include/fileobject.h \
793 $(srcdir)/Include/fileutils.h \
794 $(srcdir)/Include/floatobject.h \
795 $(srcdir)/Include/frameobject.h \
796 $(srcdir)/Include/funcobject.h \
797 $(srcdir)/Include/genobject.h \
798 $(srcdir)/Include/import.h \
799 $(srcdir)/Include/intrcheck.h \
800 $(srcdir)/Include/iterobject.h \
801 $(srcdir)/Include/listobject.h \
802 $(srcdir)/Include/longintrepr.h \
803 $(srcdir)/Include/longobject.h \
804 $(srcdir)/Include/marshal.h \
805 $(srcdir)/Include/memoryobject.h \
806 $(srcdir)/Include/metagrammar.h \
807 $(srcdir)/Include/methodobject.h \
808 $(srcdir)/Include/modsupport.h \
809 $(srcdir)/Include/moduleobject.h \
Barry Warsaw409da152012-06-03 16:18:47 -0400810 $(srcdir)/Include/namespaceobject.h \
Victor Stinner69f55cc2011-10-12 22:09:40 +0200811 $(srcdir)/Include/node.h \
812 $(srcdir)/Include/object.h \
813 $(srcdir)/Include/objimpl.h \
814 $(srcdir)/Include/opcode.h \
815 $(srcdir)/Include/osdefs.h \
816 $(srcdir)/Include/patchlevel.h \
817 $(srcdir)/Include/pgen.h \
818 $(srcdir)/Include/pgenheaders.h \
819 $(srcdir)/Include/pyarena.h \
820 $(srcdir)/Include/pyatomic.h \
821 $(srcdir)/Include/pycapsule.h \
822 $(srcdir)/Include/pyctype.h \
823 $(srcdir)/Include/pydebug.h \
824 $(srcdir)/Include/pyerrors.h \
825 $(srcdir)/Include/pyfpe.h \
826 $(srcdir)/Include/pymath.h \
827 $(srcdir)/Include/pygetopt.h \
828 $(srcdir)/Include/pymacro.h \
829 $(srcdir)/Include/pymem.h \
830 $(srcdir)/Include/pyport.h \
831 $(srcdir)/Include/pystate.h \
832 $(srcdir)/Include/pystrcmp.h \
833 $(srcdir)/Include/pystrtod.h \
834 $(srcdir)/Include/pythonrun.h \
835 $(srcdir)/Include/pythread.h \
836 $(srcdir)/Include/pytime.h \
837 $(srcdir)/Include/rangeobject.h \
838 $(srcdir)/Include/setobject.h \
839 $(srcdir)/Include/sliceobject.h \
840 $(srcdir)/Include/structmember.h \
841 $(srcdir)/Include/structseq.h \
842 $(srcdir)/Include/symtable.h \
843 $(srcdir)/Include/sysmodule.h \
844 $(srcdir)/Include/traceback.h \
845 $(srcdir)/Include/tupleobject.h \
846 $(srcdir)/Include/ucnhash.h \
847 $(srcdir)/Include/unicodeobject.h \
848 $(srcdir)/Include/warnings.h \
849 $(srcdir)/Include/weakrefobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000850 pyconfig.h \
Charles-François Natali46c686f2013-12-15 19:09:00 +0100851 $(PARSER_HEADERS) \
852 $(AST_H)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000853
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000854$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000855
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000856
857######################################################################
858
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200859TESTOPTS= $(EXTRATESTOPTS)
860TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) $(TESTPYTHONOPTS)
861TESTRUNNER= $(TESTPYTHON) $(srcdir)/Tools/scripts/run_tests.py
862TESTTIMEOUT= 3600
863
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200864# Run a basic set of regression tests.
865# This excludes some tests that are particularly resource-intensive.
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000866test: all platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200867 $(TESTRUNNER) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000868
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200869# Run the full test suite twice - once without .pyc files, and once with.
870# In the past, we've had problems where bugs in the marshalling or
871# elsewhere caused bytecode read from .pyc files to behave differently
872# than bytecode generated directly from a .py source file. Sometimes
873# the bytecode read from a .pyc file had the bug, sometimes the directly
874# generated bytecode. This is sometimes a very shy bug needing a lot of
875# sample data.
Skip Montanaro446ad712003-05-06 15:30:20 +0000876testall: all platform
877 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200878 $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +0000879 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200880 -$(TESTRUNNER) -u all $(TESTOPTS)
881 $(TESTRUNNER) -u all $(TESTOPTS)
Skip Montanaro446ad712003-05-06 15:30:20 +0000882
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200883# Run the test suite for both architectures in a Universal build on OSX.
884# Must be run on an Intel box.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000885testuniversal: all platform
886 if [ `arch` != 'i386' ];then \
887 echo "This can only be used on OSX/i386" ;\
888 exit 1 ;\
889 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200890 $(TESTRUNNER) -u all $(TESTOPTS)
891 $(RUNSHARED) /usr/libexec/oah/translate \
892 ./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000893
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200894# Like testall, but with only one pass and without multiple processes.
Nadeem Vawdaecd3e382011-07-31 01:09:04 +0200895# Run an optional script to include information about the build environment.
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000896buildbottest: all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +0000897 -@if which pybuildbot.identify >/dev/null 2>&1; then \
898 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
899 fi
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200900 $(TESTRUNNER) -j 1 -u all -W --timeout=$(TESTTIMEOUT) $(TESTOPTS)
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000901
Jeremy Hyltonfdd6dee2009-03-27 21:24:45 +0000902QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io test_lib2to3 \
903 test_multibytecodec test_urllib2_localnet test_itertools \
904 test_multiprocessing test_mailbox test_socket test_poll \
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200905 test_select test_zipfile test_concurrent_futures
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000906quicktest: all platform
Nadeem Vawda3c01d162011-08-01 23:48:26 +0200907 $(TESTRUNNER) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000908
Barry Warsaw42119252001-03-03 04:14:21 +0000909
Ned Deilya48b61f2013-02-08 22:53:51 -0800910install: altinstall bininstall maninstall
Guido van Rossumdc21db32008-04-07 18:37:41 +0000911
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000912altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
Ned Deilya48b61f2013-02-08 22:53:51 -0800913 sharedinstall oldsharedinstall altmaninstall @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000914
915# Install shared libraries enabled by Setup
916DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
917
918oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
919 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000920 if test $$i != X; then \
921 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000922 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000923 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000924 done
925
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000926$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000927 @for i in $(DESTDIRS); \
928 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000929 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000930 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000931 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000932 else true; \
933 fi; \
934 done
935
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000936# Install the interpreter with $(VERSION) affixed
937# This goes into $(exec_prefix)
Benjamin Peterson932073a2009-05-23 16:14:33 +0000938altbininstall: $(BUILDPYTHON)
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000939 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000940 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000941 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000942 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000943 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000944 else true; \
945 fi; \
946 done
Barry Warsaw14d98ac2010-11-24 19:43:47 +0000947 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(LDVERSION)$(EXE)
Barry Warsaw771d33e2010-12-13 18:04:23 +0000948 -if test "$(VERSION)" != "$(LDVERSION)"; then \
Nick Coghlan4fcad3c2012-02-17 23:17:34 +1000949 if test -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE) -o -h $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
Barry Warsaw771d33e2010-12-13 18:04:23 +0000950 then rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
951 fi; \
952 (cd $(DESTDIR)$(BINDIR); $(LN) python$(LDVERSION)$(EXE) python$(VERSION)$(EXE)); \
Barry Warsawad6f8772010-12-11 21:32:01 +0000953 fi
Georg Brandlb1441c72009-01-03 22:33:39 +0000954 if test -f $(LDLIBRARY); then \
Georg Brandl1f01deb2009-01-03 22:47:39 +0000955 if test -n "$(DLLLIBRARY)" ; then \
956 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000957 else \
Georg Brandlb1441c72009-01-03 22:33:39 +0000958 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
959 if test $(LDLIBRARY) != $(INSTSONAME); then \
960 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000961 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000962 fi; \
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +0000963 if test -n "$(PY3LIBRARY)"; then \
964 $(INSTALL_SHARED) $(PY3LIBRARY) $(DESTDIR)$(LIBDIR)/$(PY3LIBRARY); \
965 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000966 else true; \
967 fi
Benjamin Peterson932073a2009-05-23 16:14:33 +0000968
969bininstall: altbininstall
Nick Coghlan4fcad3c2012-02-17 23:17:34 +1000970 -if test -f $(DESTDIR)$(BINDIR)/python3$(EXE) -o -h $(DESTDIR)$(BINDIR)/python3$(EXE); \
971 then rm -f $(DESTDIR)$(BINDIR)/python3$(EXE); \
Benjamin Petersonf4841e22009-04-25 21:04:19 +0000972 else true; \
973 fi
Nick Coghlan4fcad3c2012-02-17 23:17:34 +1000974 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)$(EXE) python3$(EXE))
Barry Warsaw771d33e2010-12-13 18:04:23 +0000975 -if test "$(VERSION)" != "$(LDVERSION)"; then \
976 rm -f $(DESTDIR)$(BINDIR)/python$(VERSION)-config; \
977 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(LDVERSION)-config python$(VERSION)-config); \
978 rm -f $(DESTDIR)$(LIBPC)/python-$(LDVERSION).pc; \
979 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python-$(LDVERSION).pc); \
980 fi
Benjamin Petersonf4841e22009-04-25 21:04:19 +0000981 -rm -f $(DESTDIR)$(BINDIR)/python3-config
982 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-config)
Antoine Pitrou20327222009-05-24 20:39:11 +0000983 -rm -f $(DESTDIR)$(LIBPC)/python3.pc
984 (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc)
Georg Brandlff52f762010-12-28 09:51:43 +0000985 -rm -f $(DESTDIR)$(BINDIR)/idle3
986 (cd $(DESTDIR)$(BINDIR); $(LN) -s idle$(VERSION) idle3)
987 -rm -f $(DESTDIR)$(BINDIR)/pydoc3
988 (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3)
989 -rm -f $(DESTDIR)$(BINDIR)/2to3
990 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3)
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100991 -rm -f $(DESTDIR)$(BINDIR)/pyvenv
992 (cd $(DESTDIR)$(BINDIR); $(LN) -s pyvenv-$(VERSION) pyvenv)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000993
Ned Deilya48b61f2013-02-08 22:53:51 -0800994# Install the versioned manual page
995altmaninstall:
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000996 @for i in $(MANDIR) $(MANDIR)/man1; \
997 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000998 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000999 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001000 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001001 else true; \
1002 fi; \
1003 done
1004 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +00001005 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001006
Ned Deilya48b61f2013-02-08 22:53:51 -08001007# Install the unversioned manual page
1008maninstall: altmaninstall
1009 -rm -f $(DESTDIR)$(MANDIR)/man1/python3.1
1010 (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python3.1)
1011
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001012# Install the library
1013PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +00001014EXTRAPLATDIR= @EXTRAPLATDIR@
1015MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001016XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Benjamin Petersoncb6dbe52010-03-18 21:36:06 +00001017LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
Victor Stinner5b326592011-05-25 01:15:59 +02001018 tkinter/test/test_ttk site-packages test \
Serhiy Storchakac3a9b352013-10-14 21:18:50 +03001019 test/audiodata \
Ned Deilye2d51902011-07-04 19:06:20 -07001020 test/capath test/data \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001021 test/cjkencodings test/decimaltestdata test/xmltestdata \
Ned Deilycdc75d92013-07-30 14:30:15 -07001022 test/subprocessdata test/sndhdrdata test/support \
Alexander Belopolskye8f58322010-10-15 16:28:20 +00001023 test/tracedmodules test/encoded_modules \
Ned Deily7e18f432012-05-27 22:34:33 -07001024 test/namespace_pkgs \
1025 test/namespace_pkgs/both_portions \
1026 test/namespace_pkgs/both_portions/foo \
1027 test/namespace_pkgs/not_a_namespace_pkg \
1028 test/namespace_pkgs/not_a_namespace_pkg/foo \
1029 test/namespace_pkgs/portion1 \
1030 test/namespace_pkgs/portion1/foo \
1031 test/namespace_pkgs/portion2 \
1032 test/namespace_pkgs/portion2/foo \
1033 test/namespace_pkgs/project1 \
1034 test/namespace_pkgs/project1/parent \
1035 test/namespace_pkgs/project1/parent/child \
1036 test/namespace_pkgs/project2 \
1037 test/namespace_pkgs/project2/parent \
1038 test/namespace_pkgs/project2/parent/child \
1039 test/namespace_pkgs/project3 \
1040 test/namespace_pkgs/project3/parent \
1041 test/namespace_pkgs/project3/parent/child \
Eric V. Smith714370f2012-06-24 19:55:18 -04001042 test/namespace_pkgs/module_and_namespace_package \
1043 test/namespace_pkgs/module_and_namespace_package/a_test \
Georg Brandl53291232011-02-23 07:30:12 +00001044 collections concurrent concurrent/futures encodings \
R David Murray92cafb82011-06-17 11:41:49 -04001045 email email/mime test/test_email test/test_email/data \
Ezio Melotti66f2ea02013-08-08 15:03:45 +03001046 html json test/test_json http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001047 sqlite3 sqlite3/test \
Georg Brandl1158a332009-06-04 09:30:30 +00001048 logging csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +00001049 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Barry Warsaw04fe64b2011-06-14 16:51:58 -04001050 lib2to3/tests/data lib2to3/tests/data/fixers \
1051 lib2to3/tests/data/fixers/myfixes \
Ned Deilyc3909e52013-11-03 20:08:53 -08001052 ctypes ctypes/test ctypes/macholib \
1053 idlelib idlelib/Icons idlelib/idle_test \
Fred Drakee612c8e2005-01-19 06:24:58 +00001054 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Ned Deilycc409f42012-07-20 13:24:58 -07001055 importlib test/test_importlib test/test_importlib/builtin \
1056 test/test_importlib/extension test/test_importlib/frozen \
1057 test/test_importlib/import_ test/test_importlib/source \
Alexander Belopolskyea13d9d2010-11-01 17:39:37 +00001058 turtledemo \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +00001059 multiprocessing multiprocessing/dummy \
Ned Deilye8b416e2012-03-22 13:34:11 -07001060 unittest unittest/test unittest/test/testmock \
Vinay Sajip7ded1f02012-05-26 03:45:29 +01001061 venv venv/scripts venv/scripts/posix \
Ronald Oussoren69026bb2009-05-19 19:07:43 +00001062 curses pydoc_data $(MACHDEPS)
Ned Deily58f27b22011-06-28 00:42:50 -07001063libinstall: build_all $(srcdir)/Lib/$(PLATDIR) $(srcdir)/Modules/xxmodule.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001064 @for i in $(SCRIPTDIR) $(LIBDEST); \
1065 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001066 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001067 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001068 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001069 else true; \
1070 fi; \
1071 done
1072 @for d in $(LIBSUBDIRS); \
1073 do \
1074 a=$(srcdir)/Lib/$$d; \
1075 if test ! -d $$a; then continue; else true; fi; \
1076 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001077 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001078 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001079 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001080 else true; \
1081 fi; \
1082 done
Trent Nelsonc101bf32012-10-16 08:13:12 -04001083 @for i in $(srcdir)/Lib/*.py `cat pybuilddir.txt`/_sysconfigdata.py; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001084 do \
1085 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001086 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001087 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001088 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001089 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001090 echo $(INSTALL_DATA) $$i $(LIBDEST); \
1091 fi; \
1092 done
1093 @for d in $(LIBSUBDIRS); \
1094 do \
1095 a=$(srcdir)/Lib/$$d; \
1096 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001097 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001098 b=$(LIBDEST)/$$d; \
1099 for i in $$a/*; \
1100 do \
1101 case $$i in \
1102 *CVS) ;; \
1103 *.py[co]) ;; \
1104 *.orig) ;; \
1105 *~) ;; \
1106 *) \
1107 if test -d $$i; then continue; fi; \
1108 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001109 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001110 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001111 else \
1112 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001113 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001114 fi;; \
1115 esac; \
1116 done; \
1117 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001118 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Ned Deily58f27b22011-06-28 00:42:50 -07001119 if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
1120 $(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
1121 $(DESTDIR)$(LIBDEST)/distutils/tests ; \
1122 fi
Guido van Rossum827bfd02007-07-15 13:12:42 +00001123 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001124 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001125 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001126 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001127 $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +00001128 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001129 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001130 -d $(LIBDEST) -f \
Benjamin Peterson89a545f2010-03-18 22:58:19 +00001131 -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
Benjamin Petersonf47ed4a2009-04-11 20:45:40 +00001132 $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001133 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001134 $(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001135 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001136 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +00001137 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001138 $(PYTHON_FOR_BUILD) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +00001139 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001140 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Ned Deily4725b132012-09-08 19:04:47 -07001141 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1142 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/Grammar.txt
1143 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
1144 $(PYTHON_FOR_BUILD) -m lib2to3.pgen2.driver $(DESTDIR)$(LIBDEST)/lib2to3/PatternGrammar.txt
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001145
1146# Create the PLATDIR source directory, if one wasn't distributed..
1147$(srcdir)/Lib/$(PLATDIR):
1148 mkdir $(srcdir)/Lib/$(PLATDIR)
1149 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
1150 export PATH; PATH="`pwd`:$$PATH"; \
1151 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001152 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +00001153 export EXE; EXE="$(BUILDEXE)"; \
doko@python.org3e6e2ac2013-01-25 13:12:29 +01001154 if [ -n "$(MULTIARCH)" ]; then export MULTIARCH; MULTIARCH=$(MULTIARCH); fi; \
doko@python.orga10e4a92013-01-25 18:45:12 +01001155 export PYTHON_FOR_BUILD; \
1156 if [ "$(BUILD_GNU_TYPE)" = "$(HOST_GNU_TYPE)" ]; then \
1157 PYTHON_FOR_BUILD="$(BUILDPYTHON)"; \
1158 else \
1159 PYTHON_FOR_BUILD="$(PYTHON_FOR_BUILD)"; \
1160 fi; \
Benjamin Petersonfce25a72008-12-30 18:05:46 +00001161 cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001162
Collin Winterbf199072010-03-19 21:17:17 +00001163python-config: $(srcdir)/Misc/python-config.in
1164 # Substitution happens here, as the completely-expanded BINDIR
1165 # is not available in configure
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001166 sed -e "s,@EXENAME@,$(BINDIR)/python$(LDVERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
Collin Winterbf199072010-03-19 21:17:17 +00001167
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001168# Install the include files
1169INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
1170inclinstall:
1171 @for i in $(INCLDIRSTOMAKE); \
1172 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001173 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001174 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001175 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001176 else true; \
1177 fi; \
1178 done
1179 @for i in $(srcdir)/Include/*.h; \
1180 do \
1181 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001182 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001183 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001184 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001185
1186# Install the library and miscellaneous stuff needed for extending/embedding
1187# This goes into $(exec_prefix)
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001188LIBPL= $(LIBDEST)/config-$(LDVERSION)
Antoine Pitrou20327222009-05-24 20:39:11 +00001189
1190# pkgconfig directory
1191LIBPC= $(LIBDIR)/pkgconfig
1192
Collin Winterbf199072010-03-19 21:17:17 +00001193libainstall: all python-config
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001194 @for i in $(LIBDIR) $(LIBPL) $(LIBPC); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001195 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001196 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001197 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001198 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001199 else true; \
1200 fi; \
1201 done
Martin v. Löwis1142de32002-03-29 16:28:31 +00001202 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +00001203 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07001204 if test "$(SHLIB_SUFFIX)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001205 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001206 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001207 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
1208 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +00001209 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001210 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001211 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001212 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001213 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001214 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001215 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001216 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
1217 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
1218 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
1219 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
1220 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
Antoine Pitrou20327222009-05-24 20:39:11 +00001221 $(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001222 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
1223 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001224 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001225 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001226 @if [ -s Modules/python.exp -a \
1227 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
1228 echo; echo "Installing support files for building shared extension modules on AIX:"; \
1229 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001230 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001231 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001232 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001233 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001234 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +00001235 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001236 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001237 echo "$(LIBPL)/ld_so_aix"; \
1238 echo; echo "See Misc/AIX-NOTES for details."; \
1239 else true; \
1240 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001241
1242# Install the dynamically loadable modules
1243# This goes into $(exec_prefix)
Benjamin Petersonbbda0c52010-07-17 20:39:23 +00001244sharedinstall: sharedmods
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001245 $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \
Martin v. Löwis1142de32002-03-29 16:28:31 +00001246 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +00001247 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001248 --install-platlib=$(DESTSHARED) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001249 --root=$(DESTDIR)/
Trent Nelsonc101bf32012-10-16 08:13:12 -04001250 -rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata.py
1251 -rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001252
Jack Jansencb4321e2002-08-09 00:18:21 +00001253# Here are a couple of targets for MacOSX again, to install a full
1254# framework-based Python. frameworkinstall installs everything, the
1255# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001256# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +00001257#
Thomas Wouters477c8d52006-05-27 19:21:47 +00001258#
1259# This target is here for backward compatiblity, previous versions of Python
1260# hadn't integrated framework installation in the normal install process.
1261frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +00001262
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001263# On install, we re-make the framework
1264# structure in the install location, /Library/Frameworks/ or the argument to
1265# --enable-framework. If --enable-framework has been specified then we have
1266# automatically set prefix to the location deep down in the framework, so we
1267# only have to cater for the structural bits of the framework.
1268
Jack Jansencb4321e2002-08-09 00:18:21 +00001269frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1270
1271frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001272 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001273 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001274 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001275 else true; \
1276 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001277 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001278 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001279 echo "Creating directory $(DESTDIR)$$i"; \
1280 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001281 else true; \
1282 fi; \
1283 done
Ronald Oussoren0499d0b2010-12-07 14:41:05 +00001284 $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001285 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 +00001286 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001287 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001288 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1289 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001290 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001291
Jack Jansencb4321e2002-08-09 00:18:21 +00001292# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001293# Install a number of symlinks to keep software that expects a normal unix
1294# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001295frameworkinstallmaclib:
Christian Heimesae6275d2013-07-09 14:30:04 +02001296 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).a"
1297 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(LDVERSION).dylib"
1298 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).a"
1299 $(LN) -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config-$(LDVERSION)/libpython$(VERSION).dylib"
1300 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(LDVERSION).dylib"
1301 $(LN) -fs "../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/libpython$(VERSION).dylib"
Jack Jansencb4321e2002-08-09 00:18:21 +00001302
1303# This installs the IDE, the Launcher and other apps into /Applications
1304frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001305 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001306
1307# This install the unix python and pythonw tools in /usr/local/bin
1308frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001309 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1310
1311frameworkaltinstallunixtools:
1312 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001313
Georg Brandl59b44722010-12-30 22:12:40 +00001314# This installs the Tools into the applications directory.
Jack Jansena1b77582003-06-19 22:35:20 +00001315# It is not part of a normal frameworkinstall
1316frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001317 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001318
Skip Montanarodecc6a42003-01-01 20:07:49 +00001319# This installs a few of the useful scripts in Tools/scripts
1320scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001321 SRCDIR=$(srcdir) $(RUNSHARED) \
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001322 $(PYTHON_FOR_BUILD) $(srcdir)/Tools/scripts/setup.py install \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001323 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001324 --install-scripts=$(BINDIR) \
Thomas Wouters81638f12011-03-06 11:49:15 -08001325 --root=$(DESTDIR)/
Skip Montanarodecc6a42003-01-01 20:07:49 +00001326
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001327# Build the toplevel Makefile
Victor Stinner69f55cc2011-10-12 22:09:40 +02001328Makefile.pre: $(srcdir)/Makefile.pre.in config.status
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001329 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1330 $(MAKE) -f Makefile.pre Makefile
1331
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001332# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001333config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001334 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001335
Jack Jansen1999ef42001-12-06 21:47:20 +00001336.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001337
1338# Some make's put the object file in the current directory
1339.c.o:
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +00001340 $(CC) -c $(PY_CORE_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001341
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001342# Run reindent on the library
1343reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001344 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001345
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001346# Rerun configure with the same options as it was run last time,
1347# provided the config.status script exists
1348recheck:
1349 $(SHELL) config.status --recheck
1350 $(SHELL) config.status
1351
Matthias Klose0f4c16e2012-03-14 23:10:15 +01001352# Rebuild the configure script from configure.ac; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001353autoconf:
Matthias Klose80b09d42010-04-25 21:23:32 +00001354 (cd $(srcdir); autoconf -Wall)
1355 (cd $(srcdir); autoheader -Wall)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001356
1357# Create a tags file for vi
1358tags::
1359 cd $(srcdir); \
1360 ctags -w -t Include/*.h; \
1361 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1362 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001363 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001364
1365# Create a tags file for GNU Emacs
1366TAGS::
1367 cd $(srcdir); \
1368 etags Include/*.h; \
1369 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1370
Martin v. Loewiscfc1cc22012-04-27 16:10:21 +02001371# Touch generated files
1372touch:
1373 hg --config extensions.touch=Tools/hg/hgtouch.py touch -v
1374
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001375# Sanitation targets -- clean leaves libraries, executables and tags
Mark Dickinson067b38e2009-09-24 19:24:44 +00001376# files, which clobber removes as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001377pycremoval:
Petri Lehtinenbc74ee02011-11-05 21:04:24 +02001378 -find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
Barry Warsaw5f2347d2010-04-26 16:02:14 +00001379 -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001380
Guido van Rossum77b5e332007-08-29 23:24:02 +00001381rmtestturds:
1382 -rm -f *BAD *GOOD *SKIPPED
1383 -rm -rf OUT
1384 -rm -f *.TXT
1385 -rm -f *.txt
1386 -rm -f gb-18030-2000.xml
1387
Guido van Rossum8188e632007-08-29 23:48:29 +00001388docclean:
1389 -rm -rf Doc/build
1390 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1391
Guido van Rossum5420bc32007-08-29 23:35:30 +00001392clean: pycremoval
Georg Brandl241bdab2010-07-31 22:05:54 +00001393 find . -name '*.[oa]' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001394 find . -name '*.s[ol]' -exec rm -f {} ';'
Georg Brandl241bdab2010-07-31 22:05:54 +00001395 find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
Thomas Heller6ab91482009-04-24 18:27:10 +00001396 find build -name 'fficonfig.h' -exec rm -f {} ';' || true
Trent Nelsonc101bf32012-10-16 08:13:12 -04001397 find build -name '*.py' -exec rm -f {} ';' || true
1398 find build -name '*.py[co]' -exec rm -f {} ';' || true
1399 -rm -f pybuilddir.txt
Ned Deily4725b132012-09-08 19:04:47 -07001400 -rm -f Lib/lib2to3/*Grammar*.pickle
Antoine Pitroue67f48c2012-06-19 22:29:35 +02001401 -rm -f Modules/_testembed Modules/_freeze_importlib
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001402
Christian Heimes33fe8092008-04-13 13:53:33 +00001403profile-removal:
1404 find . -name '*.gc??' -exec rm -f {} ';'
1405
1406clobber: clean profile-removal
Jack Jansen1999ef42001-12-06 21:47:20 +00001407 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Matthias Klose597e6b42012-04-04 13:20:55 +02001408 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001409 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001410 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001411 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001412
1413# Make things extra clean, before making a distribution:
1414# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001415# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001416distclean: clobber
Christian Heimesf8471862013-11-24 03:32:40 +01001417 for file in $(srcdir)/Lib/test/data/* ; do \
1418 if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
Mark Dickinsonde802be2010-08-01 21:33:01 +00001419 done
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001420 -rm -f core Makefile Makefile.pre config.status \
Mark Dickinson9b3d5572009-08-31 14:52:10 +00001421 Modules/Setup Modules/Setup.local Modules/Setup.config \
Georg Brandl9a829be2011-02-15 15:44:51 +00001422 Modules/ld_so_aix Modules/python.exp Misc/python.pc
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001423 -rm -f python*-gdb.py
Eric V. Smithf4c47b52013-07-02 09:06:54 -04001424 find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
1425 -o -name '[@,#]*' -o -name '*.old' \
1426 -o -name '*.orig' -o -name '*.rej' \
1427 -o -name '*.bak' ')' \
1428 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001429
1430# Check for smelly exported symbols (not starting with Py/_Py)
1431smelly: all
1432 nm -p $(LIBRARY) | \
1433 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1434
1435# Find files with funny names
1436funny:
Éric Araujo1c608e32011-08-10 02:01:32 +02001437 find $(SUBDIRS) $(SUBDIRSTOO) \
Éric Araujoe9715b92011-08-10 21:42:23 +02001438 -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001439 -o -name '*.[chs]' \
1440 -o -name '*.py' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001441 -o -name '*.pyw' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001442 -o -name '*.dat' \
1443 -o -name '*.el' \
1444 -o -name '*.fd' \
1445 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001446 -o -name '*.gif' \
1447 -o -name '*.txt' \
1448 -o -name '*.xml' \
1449 -o -name '*.xbm' \
1450 -o -name '*.xpm' \
1451 -o -name '*.uue' \
1452 -o -name '*.decTest' \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001453 -o -name '*.tmCommand' \
1454 -o -name '*.tmSnippet' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001455 -o -name 'Setup' \
1456 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001457 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001458 -o -name README \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001459 -o -name NEWS \
1460 -o -name HISTORY \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001461 -o -name Makefile \
1462 -o -name ChangeLog \
Georg Brandl4c9aa452010-08-14 13:43:37 +00001463 -o -name .hgignore \
1464 -o -name .bzrignore \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001465 -o -name MANIFEST \
Éric Araujob5da6e92011-08-16 19:05:56 +02001466 -o -print
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001467
Christian Heimesada8c3b2008-03-18 18:26:33 +00001468# Perform some verification checks on any modified files.
Brett Cannona741ebf2008-09-05 23:01:27 +00001469patchcheck:
Georg Brandlfcaf9102008-07-16 02:17:56 +00001470 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001471
Guido van Rossum9454ad72001-08-18 21:08:22 +00001472# Dependencies
1473
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001474Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001475
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001476# Declare targets that aren't real files
Victor Stinnere0a669e2011-12-15 21:48:39 +01001477.PHONY: all build_all sharedmods oldsharedmods test quicktest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001478.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1479.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1480.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1481.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Victor Stinner4e314432010-10-07 21:45:39 +00001482.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
Ned Deilyaa20b002013-02-08 23:02:09 -08001483.PHONY: smelly funny patchcheck touch altmaninstall
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00001484.PHONY: gdbhooks
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001485
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001486# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
Barry Warsaw771d33e2010-12-13 18:04:23 +00001487# Local Variables:
1488# mode: makefile
1489# End: