blob: 42a061def31faa50751475556db793ba6a6baeda [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@
30
31CC= @CC@
32CXX= @CXX@
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000033MAINCC= @MAINCC@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000034LINKCC= @LINKCC@
35AR= @AR@
36RANLIB= @RANLIB@
Martin v. Löwisdea59e52006-01-05 10:00:36 +000037SVNVERSION= @SVNVERSION@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000038
39# Shell used by make (some versions default to the login shell, which is bad)
40SHELL= /bin/sh
41
42# Use this to make a link between python$(VERSION) and python in $(BINDIR)
43LN= @LN@
44
45# Portable install script (configure doesn't always guess right)
46INSTALL= @INSTALL@
47INSTALL_PROGRAM=@INSTALL_PROGRAM@
Neil Schemenauer3f5cc202001-04-10 23:03:35 +000048INSTALL_SCRIPT= @INSTALL_SCRIPT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000049INSTALL_DATA= @INSTALL_DATA@
50# Shared libraries must be installed with executable mode on some systems;
51# rather than figuring out exactly which, we always give them executable mode.
52# Also, making them read-only seems to be a good idea...
53INSTALL_SHARED= ${INSTALL} -m 555
54
55MAKESETUP= $(srcdir)/Modules/makesetup
56
57# Compiler options
58OPT= @OPT@
Skip Montanarodecc6a42003-01-01 20:07:49 +000059BASECFLAGS= @BASECFLAGS@
Brett Cannon08cd5982005-04-24 22:26:38 +000060CFLAGS= $(BASECFLAGS) $(OPT) $(EXTRA_CFLAGS)
Brett Cannon516592f2004-12-07 00:42:59 +000061# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
62# be able to build extension modules using the directories specified in the
63# environment variables
Thomas Wouters89d996e2007-09-08 17:39:28 +000064CPPFLAGS= -I. -IInclude -I$(srcdir)/Include @CPPFLAGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000065LDFLAGS= @LDFLAGS@
66LDLAST= @LDLAST@
67SGI_ABI= @SGI_ABI@
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000068CCSHARED= @CCSHARED@
69LINKFORSHARED= @LINKFORSHARED@
70# Extra C flags added for building the interpreter object files.
71CFLAGSFORSHARED=@CFLAGSFORSHARED@
72# C flags used for building the interpreter object files
Mark Hammond8235ea12002-07-19 06:55:41 +000073PY_CFLAGS= $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
Neil Schemenauer7ac954b2001-01-26 16:14:41 +000074
Neil Schemenauer85515ad2001-01-24 17:11:43 +000075
76# Machine-dependent subdirectories
77MACHDEP= @MACHDEP@
78
79# Install prefix for architecture-independent files
80prefix= @prefix@
81
82# Install prefix for architecture-dependent files
83exec_prefix= @exec_prefix@
84
Thomas Woutersbca54802007-09-10 19:32:14 +000085# Install prefix for data files
86datarootdir= @datarootdir@
87
Neil Schemenauer85515ad2001-01-24 17:11:43 +000088# Expanded directories
89BINDIR= $(exec_prefix)/bin
90LIBDIR= $(exec_prefix)/lib
Martin v. Löwisd429ab62001-08-02 06:20:20 +000091MANDIR= @mandir@
92INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000093CONFINCLUDEDIR= $(exec_prefix)/include
94SCRIPTDIR= $(prefix)/lib
95
96# Detailed destination directories
97BINLIBDEST= $(LIBDIR)/python$(VERSION)
98LIBDEST= $(SCRIPTDIR)/python$(VERSION)
99INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
100CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
101LIBP= $(LIBDIR)/python$(VERSION)
102
103# Symbols used for using shared libraries
104SO= @SO@
105LDSHARED= @LDSHARED@
Neil Schemenauer75e33892001-02-16 03:36:53 +0000106BLDSHARED= @BLDSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000107DESTSHARED= $(BINLIBDEST)/lib-dynload
108
109# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000110EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000111BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000112
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000113# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000114UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000115PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
116PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
117PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
118PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000119# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000120# by distutils. The export statement is needed to ensure that the
121# deployment target is active during build.
122MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
123@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
124
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000125# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
126OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000127
Martin v. Löwis1142de32002-03-29 16:28:31 +0000128# Environment to run shared python without installed libraries
129RUNSHARED= @RUNSHARED@
130
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000131# Modes for directories, executables and data files created by the
132# install process. Default to user-only-writable for all file types.
133DIRMODE= 755
134EXEMODE= 755
135FILEMODE= 644
136
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000137# configure script arguments
138CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000139
140
141# Subdirectories with code
142SRCDIRS= @SRCDIRS@
143
144# Other subdirectories
145SUBDIRSTOO= Include Lib Misc Demo
146
147# Files and directories to be distributed
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000148CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000149DISTFILES= README ChangeLog $(CONFIGFILES)
150DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
151DIST= $(DISTFILES) $(DISTDIRS)
152
153
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000154LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000155LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000156BLDLIBRARY= @BLDLIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000157DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000158LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000159INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000160
161
162LIBS= @LIBS@
163LIBM= @LIBM@
164LIBC= @LIBC@
165SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000166SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000167
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000168THREADOBJ= @THREADOBJ@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000169DLINCLDIR= @DLINCLDIR@
170DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000171MACHDEP_OBJS= @MACHDEP_OBJS@
Christian Heimes32fbe592007-11-12 15:01:33 +0000172LIBOBJDIR= Python/
173LIBOBJS= @LIBOBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000174
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000175PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000176BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000177
Christian Heimes33fe8092008-04-13 13:53:33 +0000178# The task to run while instrument when building the profile-opt target
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000179PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
180#PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
Christian Heimes33fe8092008-04-13 13:53:33 +0000181
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000182# === Definitions added by makesetup ===
183
184
185##########################################################################
186# Modules
187MODULE_OBJS= \
188 Modules/config.o \
189 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000190 Modules/main.o \
191 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000192
193# Used of signalmodule.o is not available
194SIGNAL_OBJS= @SIGNAL_OBJS@
195
196
197##########################################################################
198# Grammar
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000199GRAMMAR_H= $(srcdir)/Include/graminit.h
200GRAMMAR_C= $(srcdir)/Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000201GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
202
203
204##########################################################################
205# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000206PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000207
208POBJS= \
209 Parser/acceler.o \
210 Parser/grammar1.o \
211 Parser/listnode.o \
212 Parser/node.o \
213 Parser/parser.o \
214 Parser/parsetok.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000215 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000216 Parser/metagrammar.o \
217 Parser/firstsets.o \
218 Parser/grammar.o \
219 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000220
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000221PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000222
223PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000224 Objects/obmalloc.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000225 Python/mysnprintf.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000226 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000227 Parser/printgrammar.o \
228 Parser/pgenmain.o
229
Georg Brandl86def6c2008-01-21 20:36:10 +0000230PARSER_HEADERS= \
231 Parser/parser.h \
232 Parser/tokenizer.h
233
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000234PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
235
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000236##########################################################################
237# AST
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000238AST_H_DIR= $(srcdir)/Include
239AST_H= $(AST_H_DIR)/Python-ast.h
240AST_C_DIR= $(srcdir)/Python
241AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000242AST_ASDL= $(srcdir)/Parser/Python.asdl
243
244ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
245# XXX Note that a build now requires Python exist before the build starts
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000246ASDLGEN= $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000247
248##########################################################################
249# Python
250PYTHON_OBJS= \
Christian Heimes33fe8092008-04-13 13:53:33 +0000251 Python/_warnings.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000252 Python/Python-ast.o \
253 Python/asdl.o \
254 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000255 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000256 Python/ceval.o \
257 Python/compile.o \
258 Python/codecs.o \
259 Python/errors.o \
260 Python/frozen.o \
261 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000262 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000263 Python/getargs.o \
264 Python/getcompiler.o \
265 Python/getcopyright.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000266 Python/getplatform.o \
267 Python/getversion.o \
268 Python/graminit.o \
269 Python/import.o \
270 Python/importdl.o \
271 Python/marshal.o \
272 Python/modsupport.o \
273 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000274 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000275 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000276 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000277 Python/pyfpe.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000278 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000279 Python/pystate.o \
280 Python/pythonrun.o \
281 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000282 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000283 Python/sysmodule.o \
284 Python/traceback.o \
285 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000286 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000287 Python/pystrtod.o \
Eric Smith8c663262007-08-25 02:26:07 +0000288 Python/formatter_unicode.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000289 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000290 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000291 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000292 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000293
294
295##########################################################################
296# Objects
297OBJECT_OBJS= \
298 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000299 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000300 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000301 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000302 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000303 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000304 Objects/classobject.o \
305 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000306 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000307 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000308 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000309 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000310 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000311 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000312 Objects/fileobject.o \
313 Objects/floatobject.o \
314 Objects/frameobject.o \
315 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000316 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000317 Objects/listobject.o \
318 Objects/longobject.o \
319 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000320 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000321 Objects/methodobject.o \
322 Objects/moduleobject.o \
323 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000324 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000325 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000326 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000327 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000328 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329 Objects/tupleobject.o \
330 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000331 Objects/unicodeobject.o \
332 Objects/unicodectype.o \
333 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000334
335
336##########################################################################
337# objects that get linked into the Python library
338LIBRARY_OBJS= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000339 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000340 $(PARSER_OBJS) \
341 $(OBJECT_OBJS) \
342 $(PYTHON_OBJS) \
343 $(MODULE_OBJS) \
344 $(SIGNAL_OBJS) \
345 $(MODOBJS)
346
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000347#########################################################################
348# Rules
349
350# Default target
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000351all: build_all
352build_all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000353
Christian Heimes33fe8092008-04-13 13:53:33 +0000354# Compile a binary with gcc profile guided optimization.
355profile-opt:
356 @echo "Building with support for profile generation:"
357 $(MAKE) clean
358 $(MAKE) build_all_generate_profile
359 @echo "Running benchmark to generate profile data:"
360 $(MAKE) profile-removal
361 $(MAKE) run_profile_task
362 @echo "Rebuilding with profile guided optimizations:"
363 $(MAKE) clean
364 $(MAKE) build_all_use_profile
365
366build_all_generate_profile:
367 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-generate" LIBS="$(LIBS) -lgcov"
368
369run_profile_task:
370 ./$(BUILDPYTHON) $(PROFILE_TASK)
371
372build_all_use_profile:
373 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use"
374
Georg Brandlb533e262008-05-25 18:19:30 +0000375coverage:
376 @echo "Building with support for coverage checking:"
377 $(MAKE) clean
378 $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
379
380
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000381# Build the interpreter
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000382$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000383 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000384 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000385 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000386
Jack Jansen1999ef42001-12-06 21:47:20 +0000387platform: $(BUILDPYTHON)
Guido van Rossum452bf512007-02-09 05:32:43 +0000388 $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000389
390
391# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000392sharedmods: $(BUILDPYTHON)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000393 @case $$MAKEFLAGS in \
Christian Heimes1af737c2008-01-23 08:24:23 +0000394 *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000395 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000396 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000397
398# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000399# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000400$(LIBRARY): $(LIBRARY_OBJS)
401 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000402 $(AR) cr $@ Modules/getbuildinfo.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000403 $(AR) cr $@ $(PARSER_OBJS)
404 $(AR) cr $@ $(OBJECT_OBJS)
405 $(AR) cr $@ $(PYTHON_OBJS)
406 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
407 $(AR) cr $@ $(MODOBJS)
408 $(RANLIB) $@
409
Martin v. Löwis1142de32002-03-29 16:28:31 +0000410libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000411 if test $(INSTSONAME) != $(LDLIBRARY); then \
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000412 $(LDSHARED) $(LDFLAGS) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000413 $(LN) -f $(INSTSONAME) $@; \
414 else\
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000415 $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000416 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000417
418libpython$(VERSION).sl: $(LIBRARY_OBJS)
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000419 $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000420
Jack Jansenea0c3822002-08-01 21:57:49 +0000421# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
422# minimal framework (not including the Lib directory and such) in the current
423# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000424RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000425$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
426 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000427 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000428 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000429 if test "${UNIVERSALSDK}"; then \
Georg Brandlfcaf9102008-07-16 02:17:56 +0000430 $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000431 -isysroot "${UNIVERSALSDK}" \
432 -all_load $(LIBRARY) -Wl,-single_module \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000433 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000434 -compatibility_version $(VERSION) \
435 -current_version $(VERSION); \
436 else \
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000437 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000438 @LIBTOOL_CRUFT@ ;\
439 fi
Jack Jansenea0c3822002-08-01 21:57:49 +0000440 $(INSTALL) -d -m $(DIRMODE) \
441 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
442 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
443 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000444 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000445 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000446 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
447 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000448
Jason Tishler30765592003-09-04 11:04:06 +0000449# This rule builds the Cygwin Python DLL and import library if configured
450# for a shared core library; otherwise, this rule is a noop.
451$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
452 if test -n "$(DLLLIBRARY)"; then \
Benjamin Petersonae5360b2008-09-08 23:05:23 +0000453 $(LDSHARED) $(LDFLAGS) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
454 $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \
Jason Tishler30765592003-09-04 11:04:06 +0000455 else true; \
456 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000457
458
459oldsharedmods: $(SHAREDMODS)
460
461
462Makefile Modules/config.c: Makefile.pre \
463 $(srcdir)/Modules/config.c.in \
464 $(MAKESETUP) \
465 Modules/Setup.config \
466 Modules/Setup \
467 Modules/Setup.local
468 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
469 -s Modules \
470 Modules/Setup.config \
471 Modules/Setup.local \
472 Modules/Setup
473 @mv config.c Modules
474 @echo "The Makefile was updated, you may need to re-run make."
475
476
477Modules/Setup: $(srcdir)/Modules/Setup.dist
478 @if test -f Modules/Setup; then \
479 echo "-----------------------------------------------"; \
480 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
481 echo "check to make sure you have all the updates you"; \
482 echo "need in your Modules/Setup file."; \
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000483 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000484 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000485 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000486
487############################################################################
488# Special rules for object files
489
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000490Modules/getbuildinfo.o: $(PARSER_OBJS) \
491 $(OBJECT_OBJS) \
492 $(PYTHON_OBJS) \
493 $(MODULE_OBJS) \
494 $(SIGNAL_OBJS) \
495 $(MODOBJS) \
496 $(srcdir)/Modules/getbuildinfo.c
Thomas Wouters89f507f2006-12-13 04:49:30 +0000497 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000498
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000499Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000500 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
501 -DPREFIX='"$(prefix)"' \
502 -DEXEC_PREFIX='"$(exec_prefix)"' \
503 -DVERSION='"$(VERSION)"' \
504 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000505 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000506
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000507Modules/python.o: $(srcdir)/Modules/python.c
508 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000509
510
511$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000512 -@$(INSTALL) -d Include
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000513 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000514
515$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000516 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000517
518Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000519 $(srcdir)/Include/token.h \
520 $(srcdir)/Include/grammar.h
521Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
522
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000523Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
524
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000525Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
526
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000527$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
528 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000529
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000530$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
531 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000532
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000533Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000534
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000535Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000536 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000537
538Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000539 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000540
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000541Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
542 $(srcdir)/Objects/unicodetype_db.h
543
Christian Heimesda996832008-03-22 18:37:22 +0000544BYTESTR_DEPS = \
Neal Norwitz22c65422008-03-24 05:03:36 +0000545 $(srcdir)/Include/bytes_methods.h \
Christian Heimesda996832008-03-22 18:37:22 +0000546 $(srcdir)/Objects/stringlib/count.h \
547 $(srcdir)/Objects/stringlib/ctype.h \
548 $(srcdir)/Objects/stringlib/eq.h \
549 $(srcdir)/Objects/stringlib/fastsearch.h \
550 $(srcdir)/Objects/stringlib/find.h \
551 $(srcdir)/Objects/stringlib/partition.h \
552 $(srcdir)/Objects/stringlib/stringdefs.h \
553 $(srcdir)/Objects/stringlib/string_format.h \
554 $(srcdir)/Objects/stringlib/transmogrify.h \
555 $(srcdir)/Objects/stringlib/unicodedefs.h \
Eric Smith5807c412008-05-11 21:00:57 +0000556 $(srcdir)/Objects/stringlib/localeutil.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000557
Benjamin Peterson46f5f9e2008-08-18 16:08:02 +0000558Objects/stringobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000559
Benjamin Peterson46f5f9e2008-08-18 16:08:02 +0000560Objects/bytesobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000561
Eric Smith8c663262007-08-25 02:26:07 +0000562Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
Benjamin Peterson000b0dc2008-07-16 19:48:47 +0000563 $(BYTESTR_DEPS) \
564 $(srcdir)/Objects/stringlib/formatter.h
Eric Smith8c663262007-08-25 02:26:07 +0000565
566Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
Christian Heimes23daade02008-02-25 12:39:23 +0000567 $(BYTESTR_DEPS)
Eric Smith8c663262007-08-25 02:26:07 +0000568
569
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000570############################################################################
571# Header files
572
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000573PYTHON_HEADERS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000574 Include/Python-ast.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000575 Include/Python.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000576 Include/abstract.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000577 Include/asdl.h \
578 Include/ast.h \
579 Include/bitset.h \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000580 Include/boolobject.h \
Christian Heimesf78b1c62007-12-02 16:52:32 +0000581 Include/bytes_methods.h \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000582 Include/bytearrayobject.h \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000583 Include/bytesobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000584 Include/cellobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000585 Include/ceval.h \
586 Include/classobject.h \
587 Include/cobject.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000588 Include/code.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000589 Include/codecs.h \
590 Include/compile.h \
591 Include/complexobject.h \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000592 Include/descrobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000593 Include/dictobject.h \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000594 Include/enumobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000595 Include/errcode.h \
596 Include/eval.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000597 Include/fileobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000598 Include/floatobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000599 Include/frameobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000600 Include/funcobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000601 Include/genobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000602 Include/import.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000603 Include/intrcheck.h \
604 Include/iterobject.h \
605 Include/listobject.h \
Christian Heimesf78b1c62007-12-02 16:52:32 +0000606 Include/longintrepr.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000607 Include/longobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000608 Include/marshal.h \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000609 Include/memoryobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000610 Include/metagrammar.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000611 Include/methodobject.h \
612 Include/modsupport.h \
613 Include/moduleobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000614 Include/node.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000615 Include/object.h \
616 Include/objimpl.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000617 Include/opcode.h \
618 Include/osdefs.h \
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000619 Include/parsetok.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000620 Include/patchlevel.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000621 Include/pgen.h \
622 Include/pgenheaders.h \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000623 Include/pyarena.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000624 Include/pydebug.h \
625 Include/pyerrors.h \
626 Include/pyfpe.h \
Christian Heimes53876d92008-04-19 00:31:39 +0000627 Include/pymath.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000628 Include/pygetopt.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000629 Include/pymem.h \
630 Include/pyport.h \
631 Include/pystate.h \
Christian Heimes99170a52007-12-19 02:07:34 +0000632 Include/pystrcmp.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000633 Include/pystrtod.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000634 Include/pythonrun.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000635 Include/pythread.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000636 Include/rangeobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000637 Include/setobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000638 Include/sliceobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000639 Include/structmember.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000640 Include/structseq.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000641 Include/symtable.h \
642 Include/sysmodule.h \
643 Include/traceback.h \
644 Include/tupleobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000645 Include/ucnhash.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000646 Include/unicodeobject.h \
Christian Heimes33fe8092008-04-13 13:53:33 +0000647 Include/warnings.h \
Fred Drake502ed822001-10-05 21:56:02 +0000648 Include/weakrefobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000649 pyconfig.h \
650 $(PARSER_HEADERS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000651
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000652$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000653
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000654
655######################################################################
656
657# Test the interpreter (twice, once without .pyc files, once with)
Skip Montanaroc9803ab2003-05-06 16:17:27 +0000658# In the past, we've had problems where bugs in the marshalling or
659# elsewhere caused bytecode read from .pyc files to behave differently
660# than bytecode generated directly from a .py source file. Sometimes
661# the bytecode read from a .pyc file had the bug, somtimes the directly
662# generated bytecode. This is sometimes a very shy bug needing a lot of
663# sample data.
664
Neal Norwitzdf431652006-02-22 07:24:06 +0000665TESTOPTS= -l $(EXTRATESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000666TESTPROG= $(srcdir)/Lib/test/regrtest.py
Georg Brandle1b5ac62008-06-04 13:06:58 +0000667TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -bb
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000668test: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000669 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000670 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
671 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000672
Skip Montanaro446ad712003-05-06 15:30:20 +0000673testall: all platform
674 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Thomas Woutersd2d29152008-01-25 23:21:16 +0000675 $(TESTPYTHON) $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +0000676 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Skip Montanaro446ad712003-05-06 15:30:20 +0000677 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
678 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
679
Thomas Wouters477c8d52006-05-27 19:21:47 +0000680# Run the unitests for both architectures in a Universal build on OSX
681# Must be run on an Intel box.
682testuniversal: all platform
683 if [ `arch` != 'i386' ];then \
684 echo "This can only be used on OSX/i386" ;\
685 exit 1 ;\
686 fi
687 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
688 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
689 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
Georg Brandle1b5ac62008-06-04 13:06:58 +0000690 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E $(TESTPROG) $(TESTOPTS) -uall
Thomas Wouters477c8d52006-05-27 19:21:47 +0000691
692
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000693# Like testall, but with a single pass only
Thomas Wouters89d996e2007-09-08 17:39:28 +0000694# run an optional script to include some information about the build environment
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000695buildbottest: all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +0000696 -@if which pybuildbot.identify >/dev/null 2>&1; then \
697 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
698 fi
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000699 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
700
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000701QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
Fred Drake042f3132001-02-02 03:03:33 +0000702 test_unicodedata test_re test_sre test_select test_poll \
Guido van Rossum33d26892007-08-05 15:29:28 +0000703 test_struct test_zlib
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000704quicktest: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000705 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000706 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
707 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000708
Barry Warsaw42119252001-03-03 04:14:21 +0000709MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
710 test_longexp
711memtest: all platform
712 -rm -f $(srcdir)/Lib/test/*.py[co]
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000713 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
714 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
Barry Warsaw42119252001-03-03 04:14:21 +0000715
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000716# Install everything
Guido van Rossumdc21db32008-04-07 18:37:41 +0000717fullinstall: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
718
719# "make install" is an alias for "make altinstall" since we never want to
720# overwrite Python 2.x.
721install: altinstall
Guido van Rossum6d4df9b2008-05-08 17:53:56 +0000722 @echo "* Note: not installed as 'python'."
723 @echo "* Use 'make fullinstall' to install as 'python'."
724 @echo "* However, 'make fullinstall' is discouraged,"
725 @echo "* as it will clobber your Python 2.x installation."
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000726
727# Install almost everything without disturbing previous versions
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000728altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
729 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000730
731# Install shared libraries enabled by Setup
732DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
733
734oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
735 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000736 if test $$i != X; then \
737 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000738 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000739 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000740 done
741
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000742$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000743 @for i in $(DESTDIRS); \
744 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000745 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000746 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000747 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000748 else true; \
749 fi; \
750 done
751
752
753# Install the interpreter (by creating a hard link to python$(VERSION))
754bininstall: altbininstall
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000755 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
756 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000757 else true; \
758 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000759 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
Thomas Wouters89d996e2007-09-08 17:39:28 +0000760 -rm -f $(DESTDIR)$(BINDIR)/python-config
761 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000762
763# Install the interpreter with $(VERSION) affixed
764# This goes into $(exec_prefix)
Jack Jansen1999ef42001-12-06 21:47:20 +0000765altbininstall: $(BUILDPYTHON)
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000766 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000767 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000768 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000769 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000770 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000771 else true; \
772 fi; \
773 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000774 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000775 if test -f libpython$(VERSION)$(SO); then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000776 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000777 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000778 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000779 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000780 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
781 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
782 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000783 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000784 else true; \
785 fi
786
787# Install the manual page
788maninstall:
789 @for i in $(MANDIR) $(MANDIR)/man1; \
790 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000791 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000792 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000793 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000794 else true; \
795 fi; \
796 done
797 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Benjamin Peterson1a6e0d02008-10-25 15:49:17 +0000798 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000799
800# Install the library
801PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +0000802EXTRAPLATDIR= @EXTRAPLATDIR@
803MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000804XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Georg Brandl6e47a332008-05-17 19:15:58 +0000805LIBSUBDIRS= tkinter site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000806 test/decimaltestdata \
Fred Drake0e474a82007-10-11 18:01:43 +0000807 encodings \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000808 email email/mime email/test email/test/data \
Brett Cannon35af8d42008-05-26 18:56:21 +0000809 html json json/tests http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000810 sqlite3 sqlite3/test \
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000811 logging bsddb bsddb/test csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +0000812 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000813 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000814 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000815 setuptools setuptools/command setuptools/tests setuptools.egg-info \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +0000816 multiprocessing multiprocessing/dummy \
Fred Drakee612c8e2005-01-19 06:24:58 +0000817 curses $(MACHDEPS)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000818libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000819 @for i in $(SCRIPTDIR) $(LIBDEST); \
820 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000821 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000822 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000823 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000824 else true; \
825 fi; \
826 done
827 @for d in $(LIBSUBDIRS); \
828 do \
829 a=$(srcdir)/Lib/$$d; \
830 if test ! -d $$a; then continue; else true; fi; \
831 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000832 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000833 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000834 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000835 else true; \
836 fi; \
837 done
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000838 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000839 do \
840 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000841 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000842 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000843 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000844 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000845 echo $(INSTALL_DATA) $$i $(LIBDEST); \
846 fi; \
847 done
848 @for d in $(LIBSUBDIRS); \
849 do \
850 a=$(srcdir)/Lib/$$d; \
851 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000852 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000853 b=$(LIBDEST)/$$d; \
854 for i in $$a/*; \
855 do \
856 case $$i in \
857 *CVS) ;; \
858 *.py[co]) ;; \
859 *.orig) ;; \
860 *~) ;; \
861 *) \
862 if test -d $$i; then continue; fi; \
863 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000864 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000865 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000866 else \
867 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000868 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000869 fi;; \
870 esac; \
871 done; \
872 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000873 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Guido van Rossum827bfd02007-07-15 13:12:42 +0000874 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000875 ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000876 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000877 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +0000878 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000879 ./$(BUILDPYTHON) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000880 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000881 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000882 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000883 ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000884 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000885 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000886 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000887 ./$(BUILDPYTHON) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000888 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000889 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Martin v. Löwis3faa84f2008-03-22 00:07:09 +0000890 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis4fe5ed82008-08-01 14:15:22 +0000891 ./$(BUILDPYTHON) -Wi -c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000892
893# Create the PLATDIR source directory, if one wasn't distributed..
894$(srcdir)/Lib/$(PLATDIR):
895 mkdir $(srcdir)/Lib/$(PLATDIR)
896 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
897 export PATH; PATH="`pwd`:$$PATH"; \
898 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000899 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000900 export EXE; EXE="$(BUILDEXE)"; \
Benjamin Petersonfce25a72008-12-30 18:05:46 +0000901 cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000902
903# Install the include files
904INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
905inclinstall:
906 @for i in $(INCLDIRSTOMAKE); \
907 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000908 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000909 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000910 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000911 else true; \
912 fi; \
913 done
914 @for i in $(srcdir)/Include/*.h; \
915 do \
916 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000917 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000918 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000919 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000920
921# Install the library and miscellaneous stuff needed for extending/embedding
922# This goes into $(exec_prefix)
923LIBPL= $(LIBP)/config
924libainstall: all
925 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
926 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000927 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000928 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000929 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000930 else true; \
931 fi; \
932 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000933 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000934 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000935 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000936 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000937 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000938 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
939 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000940 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000941 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000942 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000943 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000944 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000945 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000946 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000947 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
948 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
949 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
950 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
951 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
952 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
953 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000954 # Substitution happens here, as the completely-expanded BINDIR
955 # is not available in configure
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000956 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
957 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000958 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000959 @if [ -s Modules/python.exp -a \
960 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
961 echo; echo "Installing support files for building shared extension modules on AIX:"; \
962 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000963 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000964 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000965 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000966 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000967 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000968 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000969 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000970 echo "$(LIBPL)/ld_so_aix"; \
971 echo; echo "See Misc/AIX-NOTES for details."; \
972 else true; \
973 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000974
975# Install the dynamically loadable modules
976# This goes into $(exec_prefix)
977sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000978 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
979 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000980 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000981 --install-platlib=$(DESTSHARED) \
982 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000983
Jack Jansencb4321e2002-08-09 00:18:21 +0000984# Here are a couple of targets for MacOSX again, to install a full
985# framework-based Python. frameworkinstall installs everything, the
986# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000987# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +0000988#
Thomas Wouters477c8d52006-05-27 19:21:47 +0000989#
990# This target is here for backward compatiblity, previous versions of Python
991# hadn't integrated framework installation in the normal install process.
992frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +0000993
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000994# On install, we re-make the framework
995# structure in the install location, /Library/Frameworks/ or the argument to
996# --enable-framework. If --enable-framework has been specified then we have
997# automatically set prefix to the location deep down in the framework, so we
998# only have to cater for the structural bits of the framework.
999
Jack Jansencb4321e2002-08-09 00:18:21 +00001000frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1001
1002frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001003 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001004 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001005 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001006 else true; \
1007 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001008 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001009 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001010 echo "Creating directory $(DESTDIR)$$i"; \
1011 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001012 else true; \
1013 fi; \
1014 done
Jack Jansen9592fe92003-05-25 22:01:32 +00001015 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001016 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 +00001017 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001018 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001019 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1020 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001021 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001022
Jack Jansencb4321e2002-08-09 00:18:21 +00001023# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001024# Install a number of symlinks to keep software that expects a normal unix
1025# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001026frameworkinstallmaclib:
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001027 ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
Jack Jansencb4321e2002-08-09 00:18:21 +00001028
1029# This installs the IDE, the Launcher and other apps into /Applications
1030frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001031 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001032
Georg Brandlfcaf9102008-07-16 02:17:56 +00001033frameworkinstallapps4way:
1034 cd Mac && $(MAKE) installapps4way DESTDIR="$(DESTDIR)"
1035
Jack Jansencb4321e2002-08-09 00:18:21 +00001036# This install the unix python and pythonw tools in /usr/local/bin
1037frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001038 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1039
Georg Brandlfcaf9102008-07-16 02:17:56 +00001040frameworkinstallunixtools4way:
1041 cd Mac && $(MAKE) installunixtools4way DESTDIR="$(DESTDIR)"
1042
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001043frameworkaltinstallunixtools:
1044 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001045
Georg Brandlfcaf9102008-07-16 02:17:56 +00001046frameworkaltinstallunixtools4way:
1047 cd Mac && $(MAKE) altinstallunixtools4way DESTDIR="$(DESTDIR)"
1048
Jack Jansena1b77582003-06-19 22:35:20 +00001049# This installs the Demos and Tools into the applications directory.
1050# It is not part of a normal frameworkinstall
1051frameworkinstallextras:
Mark Dickinson09027aa2008-12-18 19:49:35 +00001052 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001053
Skip Montanarodecc6a42003-01-01 20:07:49 +00001054# This installs a few of the useful scripts in Tools/scripts
1055scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001056 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001057 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1058 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001059 --install-scripts=$(BINDIR) \
1060 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +00001061
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001062# Build the toplevel Makefile
1063Makefile.pre: Makefile.pre.in config.status
1064 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1065 $(MAKE) -f Makefile.pre Makefile
1066
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001067# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001068config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001069 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001070
Jack Jansen1999ef42001-12-06 21:47:20 +00001071.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001072
1073# Some make's put the object file in the current directory
1074.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001075 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001076
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001077# Run reindent on the library
1078reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001079 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001080
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001081# Rerun configure with the same options as it was run last time,
1082# provided the config.status script exists
1083recheck:
1084 $(SHELL) config.status --recheck
1085 $(SHELL) config.status
1086
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001087# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001088autoconf:
1089 (cd $(srcdir); autoconf)
1090 (cd $(srcdir); autoheader)
1091
1092# Create a tags file for vi
1093tags::
1094 cd $(srcdir); \
1095 ctags -w -t Include/*.h; \
1096 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1097 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001098 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001099
1100# Create a tags file for GNU Emacs
1101TAGS::
1102 cd $(srcdir); \
1103 etags Include/*.h; \
1104 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1105
1106# Sanitation targets -- clean leaves libraries, executables and tags
1107# files, which clobber removes those as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001108pycremoval:
1109 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001110
Guido van Rossum77b5e332007-08-29 23:24:02 +00001111rmtestturds:
1112 -rm -f *BAD *GOOD *SKIPPED
1113 -rm -rf OUT
1114 -rm -f *.TXT
1115 -rm -f *.txt
1116 -rm -f gb-18030-2000.xml
1117
Guido van Rossum8188e632007-08-29 23:48:29 +00001118docclean:
1119 -rm -rf Doc/build
1120 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1121
Guido van Rossum5420bc32007-08-29 23:35:30 +00001122clean: pycremoval
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +00001123 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001124 find . -name '*.s[ol]' -exec rm -f {} ';'
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001125 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1126 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001127
Christian Heimes33fe8092008-04-13 13:53:33 +00001128profile-removal:
1129 find . -name '*.gc??' -exec rm -f {} ';'
1130
1131clobber: clean profile-removal
Jack Jansen1999ef42001-12-06 21:47:20 +00001132 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001133 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001134 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001135 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001136 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001137
1138# Make things extra clean, before making a distribution:
1139# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001140# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001141distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001142 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001143 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001144 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1145 -o -name '[@,#]*' -o -name '*.old' \
1146 -o -name '*.orig' -o -name '*.rej' \
1147 -o -name '*.bak' ')' \
1148 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001149
1150# Check for smelly exported symbols (not starting with Py/_Py)
1151smelly: all
1152 nm -p $(LIBRARY) | \
1153 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1154
1155# Find files with funny names
1156funny:
Guido van Rossum77b5e332007-08-29 23:24:02 +00001157 find $(DISTDIRS) \
1158 -name .svn -prune \
1159 -o -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001160 -o -name '*.[chs]' \
1161 -o -name '*.py' \
1162 -o -name '*.doc' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001163 -o -name '*.dat' \
1164 -o -name '*.el' \
1165 -o -name '*.fd' \
1166 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001167 -o -name '*.gif' \
1168 -o -name '*.txt' \
1169 -o -name '*.xml' \
1170 -o -name '*.xbm' \
1171 -o -name '*.xpm' \
1172 -o -name '*.uue' \
1173 -o -name '*.decTest' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001174 -o -name '*,[vpt]' \
1175 -o -name 'Setup' \
1176 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001177 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001178 -o -name README \
1179 -o -name Makefile \
1180 -o -name ChangeLog \
1181 -o -name Repository \
1182 -o -name Root \
1183 -o -name Entries \
1184 -o -name Tag \
1185 -o -name tags \
1186 -o -name TAGS \
1187 -o -name .cvsignore \
1188 -o -name MANIFEST \
1189 -o -print
1190
Christian Heimesada8c3b2008-03-18 18:26:33 +00001191# Perform some verification checks on any modified files.
Brett Cannona741ebf2008-09-05 23:01:27 +00001192patchcheck:
Georg Brandlfcaf9102008-07-16 02:17:56 +00001193 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001194
Guido van Rossum9454ad72001-08-18 21:08:22 +00001195# Dependencies
1196
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001197Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001198
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001199# Declare targets that aren't real files
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001200.PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001201.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1202.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1203.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1204.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001205.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
Brett Cannon16512cd2008-10-06 22:48:11 +00001206.PHONY: smelly funny patchcheck
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001207
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001208# IF YOU PUT ANYTHING HERE IT WILL GO AWAY