blob: 8d887440fdf0ed5dca9592c5763b4dc6b723f008 [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
179PROFILE_TASK= Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
180#PROFILE_TASK= Lib/test/regrtest.py
181
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 \
266 Python/getmtime.o \
267 Python/getplatform.o \
268 Python/getversion.o \
269 Python/graminit.o \
270 Python/import.o \
271 Python/importdl.o \
272 Python/marshal.o \
273 Python/modsupport.o \
274 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000275 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000276 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000277 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000278 Python/pyfpe.o \
Christian Heimes53876d92008-04-19 00:31:39 +0000279 Python/pymath.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000280 Python/pystate.o \
281 Python/pythonrun.o \
282 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000283 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000284 Python/sysmodule.o \
285 Python/traceback.o \
286 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000287 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000288 Python/pystrtod.o \
Eric Smith8c663262007-08-25 02:26:07 +0000289 Python/formatter_unicode.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000290 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000291 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000292 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000293 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000294
295
296##########################################################################
297# Objects
298OBJECT_OBJS= \
299 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000300 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000301 Objects/bytes_methods.o \
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000302 Objects/bytearrayobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000303 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000304 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000305 Objects/classobject.o \
306 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000307 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000308 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000309 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000310 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000311 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000312 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000313 Objects/fileobject.o \
314 Objects/floatobject.o \
315 Objects/frameobject.o \
316 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000317 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000318 Objects/listobject.o \
319 Objects/longobject.o \
320 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000321 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000322 Objects/methodobject.o \
323 Objects/moduleobject.o \
324 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000325 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000326 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000327 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000328 Objects/sliceobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000329 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000330 Objects/tupleobject.o \
331 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000332 Objects/unicodeobject.o \
333 Objects/unicodectype.o \
334 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000335
336
337##########################################################################
338# objects that get linked into the Python library
339LIBRARY_OBJS= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000340 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000341 $(PARSER_OBJS) \
342 $(OBJECT_OBJS) \
343 $(PYTHON_OBJS) \
344 $(MODULE_OBJS) \
345 $(SIGNAL_OBJS) \
346 $(MODOBJS)
347
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000348#########################################################################
349# Rules
350
351# Default target
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000352all: build_all
353build_all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000354
Christian Heimes33fe8092008-04-13 13:53:33 +0000355# Compile a binary with gcc profile guided optimization.
356profile-opt:
357 @echo "Building with support for profile generation:"
358 $(MAKE) clean
359 $(MAKE) build_all_generate_profile
360 @echo "Running benchmark to generate profile data:"
361 $(MAKE) profile-removal
362 $(MAKE) run_profile_task
363 @echo "Rebuilding with profile guided optimizations:"
364 $(MAKE) clean
365 $(MAKE) build_all_use_profile
366
367build_all_generate_profile:
368 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-generate" LIBS="$(LIBS) -lgcov"
369
370run_profile_task:
371 ./$(BUILDPYTHON) $(PROFILE_TASK)
372
373build_all_use_profile:
374 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use"
375
Georg Brandlb533e262008-05-25 18:19:30 +0000376coverage:
377 @echo "Building with support for coverage checking:"
378 $(MAKE) clean
379 $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
380
381
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000382# Build the interpreter
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000383$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000384 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000385 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000386 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000387
Jack Jansen1999ef42001-12-06 21:47:20 +0000388platform: $(BUILDPYTHON)
Guido van Rossum452bf512007-02-09 05:32:43 +0000389 $(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 +0000390
391
392# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000393sharedmods: $(BUILDPYTHON)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000394 @case $$MAKEFLAGS in \
Christian Heimes1af737c2008-01-23 08:24:23 +0000395 *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000396 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000397 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000398
399# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000400# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000401$(LIBRARY): $(LIBRARY_OBJS)
402 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000403 $(AR) cr $@ Modules/getbuildinfo.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000404 $(AR) cr $@ $(PARSER_OBJS)
405 $(AR) cr $@ $(OBJECT_OBJS)
406 $(AR) cr $@ $(PYTHON_OBJS)
407 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
408 $(AR) cr $@ $(MODOBJS)
409 $(RANLIB) $@
410
Martin v. Löwis1142de32002-03-29 16:28:31 +0000411libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000412 if test $(INSTSONAME) != $(LDLIBRARY); then \
Martin v. Löwis4d9559a2004-09-26 17:26:55 +0000413 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000414 $(LN) -f $(INSTSONAME) $@; \
415 else\
416 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
417 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000418
419libpython$(VERSION).sl: $(LIBRARY_OBJS)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000420 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000421
Jack Jansenea0c3822002-08-01 21:57:49 +0000422# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
423# minimal framework (not including the Lib directory and such) in the current
424# directory.
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000425RESSRCDIR=Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000426$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
427 $(LIBRARY) \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000428 $(RESSRCDIR)/Info.plist
Jack Jansen246debb2002-02-12 21:30:53 +0000429 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000430 if test "${UNIVERSALSDK}"; then \
Georg Brandlfcaf9102008-07-16 02:17:56 +0000431 $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000432 -isysroot "${UNIVERSALSDK}" \
433 -all_load $(LIBRARY) -Wl,-single_module \
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000434 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000435 -compatibility_version $(VERSION) \
436 -current_version $(VERSION); \
437 else \
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000438 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000439 @LIBTOOL_CRUFT@ ;\
440 fi
Jack Jansenea0c3822002-08-01 21:57:49 +0000441 $(INSTALL) -d -m $(DIRMODE) \
442 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
443 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
444 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
Jack Jansenc736b8d2002-08-04 21:17:20 +0000445 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000446 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000447 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
448 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000449
Jason Tishler30765592003-09-04 11:04:06 +0000450# This rule builds the Cygwin Python DLL and import library if configured
451# for a shared core library; otherwise, this rule is a noop.
452$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
453 if test -n "$(DLLLIBRARY)"; then \
454 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
455 $(LIBS) $(MODLIBS) $(SYSLIBS); \
456 else true; \
457 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000458
459
460oldsharedmods: $(SHAREDMODS)
461
462
463Makefile Modules/config.c: Makefile.pre \
464 $(srcdir)/Modules/config.c.in \
465 $(MAKESETUP) \
466 Modules/Setup.config \
467 Modules/Setup \
468 Modules/Setup.local
469 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
470 -s Modules \
471 Modules/Setup.config \
472 Modules/Setup.local \
473 Modules/Setup
474 @mv config.c Modules
475 @echo "The Makefile was updated, you may need to re-run make."
476
477
478Modules/Setup: $(srcdir)/Modules/Setup.dist
479 @if test -f Modules/Setup; then \
480 echo "-----------------------------------------------"; \
481 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
482 echo "check to make sure you have all the updates you"; \
483 echo "need in your Modules/Setup file."; \
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000484 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000485 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000486 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000487
488############################################################################
489# Special rules for object files
490
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000491Modules/getbuildinfo.o: $(PARSER_OBJS) \
492 $(OBJECT_OBJS) \
493 $(PYTHON_OBJS) \
494 $(MODULE_OBJS) \
495 $(SIGNAL_OBJS) \
496 $(MODOBJS) \
497 $(srcdir)/Modules/getbuildinfo.c
Thomas Wouters89f507f2006-12-13 04:49:30 +0000498 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000499
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000500Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000501 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
502 -DPREFIX='"$(prefix)"' \
503 -DEXEC_PREFIX='"$(exec_prefix)"' \
504 -DVERSION='"$(VERSION)"' \
505 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000506 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000507
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000508Modules/python.o: $(srcdir)/Modules/python.c
509 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000510
511
512$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000513 -@$(INSTALL) -d Include
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000514 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000515
516$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000517 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000518
519Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000520 $(srcdir)/Include/token.h \
521 $(srcdir)/Include/grammar.h
522Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
523
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000524Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
525
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000526Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
527
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000528$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
529 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000530
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000531$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
532 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000533
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000534Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000535
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000536Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000537 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000538
539Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000540 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000541
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000542Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
543 $(srcdir)/Objects/unicodetype_db.h
544
Christian Heimesda996832008-03-22 18:37:22 +0000545BYTESTR_DEPS = \
Neal Norwitz22c65422008-03-24 05:03:36 +0000546 $(srcdir)/Include/bytes_methods.h \
Christian Heimesda996832008-03-22 18:37:22 +0000547 $(srcdir)/Objects/stringlib/count.h \
548 $(srcdir)/Objects/stringlib/ctype.h \
549 $(srcdir)/Objects/stringlib/eq.h \
550 $(srcdir)/Objects/stringlib/fastsearch.h \
551 $(srcdir)/Objects/stringlib/find.h \
552 $(srcdir)/Objects/stringlib/partition.h \
553 $(srcdir)/Objects/stringlib/stringdefs.h \
554 $(srcdir)/Objects/stringlib/string_format.h \
555 $(srcdir)/Objects/stringlib/transmogrify.h \
556 $(srcdir)/Objects/stringlib/unicodedefs.h \
Eric Smith5807c412008-05-11 21:00:57 +0000557 $(srcdir)/Objects/stringlib/localeutil.h
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000558
559Objects/stringobject.o: $(srcdir)/Objects/stringobject.c $(BYTESTR_DEPS)
560
561Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
562
Eric Smith8c663262007-08-25 02:26:07 +0000563Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
Christian Heimes23daade02008-02-25 12:39:23 +0000564 $(BYTESTR_DEPS)
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 \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000798 $(DESTDIR)$(MANDIR)/man1/python.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@
Jack Jansen7b59b422003-03-17 15:44:10 +0000803EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
Jack Jansen83f898c2002-12-30 22:23:40 +0000804MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000805XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Georg Brandl6e47a332008-05-17 19:15:58 +0000806LIBSUBDIRS= tkinter site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000807 test/decimaltestdata \
Fred Drake0e474a82007-10-11 18:01:43 +0000808 encodings \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000809 email email/mime email/test email/test/data \
Brett Cannon35af8d42008-05-26 18:56:21 +0000810 html json json/tests http dbm xmlrpc \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000811 sqlite3 sqlite3/test \
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000812 logging bsddb bsddb/test csv wsgiref urllib \
Alexandre Vassalottie9f305f2008-05-16 04:39:54 +0000813 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000814 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000815 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000816 setuptools setuptools/command setuptools/tests setuptools.egg-info \
Benjamin Peterson6bf2d6b2008-06-20 02:54:41 +0000817 multiprocessing multiprocessing/dummy \
Fred Drakee612c8e2005-01-19 06:24:58 +0000818 curses $(MACHDEPS)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000819libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000820 @for i in $(SCRIPTDIR) $(LIBDEST); \
821 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000822 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000823 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000824 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000825 else true; \
826 fi; \
827 done
828 @for d in $(LIBSUBDIRS); \
829 do \
830 a=$(srcdir)/Lib/$$d; \
831 if test ! -d $$a; then continue; else true; fi; \
832 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000833 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000834 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000835 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000836 else true; \
837 fi; \
838 done
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000839 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000840 do \
841 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000842 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000843 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000844 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000845 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000846 echo $(INSTALL_DATA) $$i $(LIBDEST); \
847 fi; \
848 done
849 @for d in $(LIBSUBDIRS); \
850 do \
851 a=$(srcdir)/Lib/$$d; \
852 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000853 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000854 b=$(LIBDEST)/$$d; \
855 for i in $$a/*; \
856 do \
857 case $$i in \
858 *CVS) ;; \
859 *.py[co]) ;; \
860 *.orig) ;; \
861 *~) ;; \
862 *) \
863 if test -d $$i; then continue; fi; \
864 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000865 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000866 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000867 else \
868 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000869 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000870 fi;; \
871 esac; \
872 done; \
873 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000874 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Guido van Rossum827bfd02007-07-15 13:12:42 +0000875 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000876 ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000877 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000878 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +0000879 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000880 ./$(BUILDPYTHON) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000881 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000882 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000883 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000884 ./$(BUILDPYTHON) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000885 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000886 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000887 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000888 ./$(BUILDPYTHON) -Wi -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000889 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000890 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Martin v. Löwis3faa84f2008-03-22 00:07:09 +0000891 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Georg Brandle1b5ac62008-06-04 13:06:58 +0000892 ./$(BUILDPYTHON) -Wi -c "import lib2to3.pygram"
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000893
894# Create the PLATDIR source directory, if one wasn't distributed..
895$(srcdir)/Lib/$(PLATDIR):
896 mkdir $(srcdir)/Lib/$(PLATDIR)
897 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
898 export PATH; PATH="`pwd`:$$PATH"; \
899 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000900 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000901 export EXE; EXE="$(BUILDEXE)"; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000902 cd $(srcdir)/Lib/$(PLATDIR); ./regen
903
904# Install the include files
905INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
906inclinstall:
907 @for i in $(INCLDIRSTOMAKE); \
908 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000909 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000910 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000911 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000912 else true; \
913 fi; \
914 done
915 @for i in $(srcdir)/Include/*.h; \
916 do \
917 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000918 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000919 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000920 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000921
922# Install the library and miscellaneous stuff needed for extending/embedding
923# This goes into $(exec_prefix)
924LIBPL= $(LIBP)/config
925libainstall: all
926 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
927 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000928 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000929 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000930 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000931 else true; \
932 fi; \
933 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000934 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000935 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000936 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000937 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000938 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000939 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
940 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000941 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000942 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000943 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000944 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000945 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000946 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000947 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000948 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
949 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
950 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
951 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
952 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
953 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
954 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000955 # Substitution happens here, as the completely-expanded BINDIR
956 # is not available in configure
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000957 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
958 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000959 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000960 @if [ -s Modules/python.exp -a \
961 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
962 echo; echo "Installing support files for building shared extension modules on AIX:"; \
963 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000964 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000965 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000966 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000967 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000968 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000969 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000970 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000971 echo "$(LIBPL)/ld_so_aix"; \
972 echo; echo "See Misc/AIX-NOTES for details."; \
973 else true; \
974 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000975
976# Install the dynamically loadable modules
977# This goes into $(exec_prefix)
978sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000979 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
980 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000981 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000982 --install-platlib=$(DESTSHARED) \
983 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000984
Jack Jansencb4321e2002-08-09 00:18:21 +0000985# Here are a couple of targets for MacOSX again, to install a full
986# framework-based Python. frameworkinstall installs everything, the
987# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000988# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +0000989#
Thomas Wouters477c8d52006-05-27 19:21:47 +0000990#
991# This target is here for backward compatiblity, previous versions of Python
992# hadn't integrated framework installation in the normal install process.
993frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +0000994
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000995# On install, we re-make the framework
996# structure in the install location, /Library/Frameworks/ or the argument to
997# --enable-framework. If --enable-framework has been specified then we have
998# automatically set prefix to the location deep down in the framework, so we
999# only have to cater for the structural bits of the framework.
1000
Jack Jansencb4321e2002-08-09 00:18:21 +00001001frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1002
1003frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +00001004 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001005 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +00001006 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001007 else true; \
1008 fi
Jack Jansencb4321e2002-08-09 00:18:21 +00001009 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001010 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +00001011 echo "Creating directory $(DESTDIR)$$i"; \
1012 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001013 else true; \
1014 fi; \
1015 done
Jack Jansen9592fe92003-05-25 22:01:32 +00001016 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
Benjamin Peterson4c29b472008-07-01 14:42:51 +00001017 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 +00001018 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001019 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
Jack Jansen9592fe92003-05-25 22:01:32 +00001020 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1021 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +00001022 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001023
Jack Jansencb4321e2002-08-09 00:18:21 +00001024# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001025# Install a number of symlinks to keep software that expects a normal unix
1026# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001027frameworkinstallmaclib:
Christian Heimes81ee3ef2008-05-04 22:42:01 +00001028 ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
Jack Jansencb4321e2002-08-09 00:18:21 +00001029
1030# This installs the IDE, the Launcher and other apps into /Applications
1031frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001032 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001033
Georg Brandlfcaf9102008-07-16 02:17:56 +00001034frameworkinstallapps4way:
1035 cd Mac && $(MAKE) installapps4way DESTDIR="$(DESTDIR)"
1036
Jack Jansencb4321e2002-08-09 00:18:21 +00001037# This install the unix python and pythonw tools in /usr/local/bin
1038frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001039 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1040
Georg Brandlfcaf9102008-07-16 02:17:56 +00001041frameworkinstallunixtools4way:
1042 cd Mac && $(MAKE) installunixtools4way DESTDIR="$(DESTDIR)"
1043
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001044frameworkaltinstallunixtools:
1045 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001046
Georg Brandlfcaf9102008-07-16 02:17:56 +00001047frameworkaltinstallunixtools4way:
1048 cd Mac && $(MAKE) altinstallunixtools4way DESTDIR="$(DESTDIR)"
1049
Jack Jansena1b77582003-06-19 22:35:20 +00001050# This installs the Demos and Tools into the applications directory.
1051# It is not part of a normal frameworkinstall
1052frameworkinstallextras:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001053 cd Mac && Make installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001054
Skip Montanarodecc6a42003-01-01 20:07:49 +00001055# This installs a few of the useful scripts in Tools/scripts
1056scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001057 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001058 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1059 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001060 --install-scripts=$(BINDIR) \
1061 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +00001062
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001063# Build the toplevel Makefile
1064Makefile.pre: Makefile.pre.in config.status
1065 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1066 $(MAKE) -f Makefile.pre Makefile
1067
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001068# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001069config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001070 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001071
Jack Jansen1999ef42001-12-06 21:47:20 +00001072.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001073
1074# Some make's put the object file in the current directory
1075.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001076 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001077
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001078# Run reindent on the library
1079reindent:
Christian Heimesfd66e512008-01-29 12:18:50 +00001080 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001081
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001082# Rerun configure with the same options as it was run last time,
1083# provided the config.status script exists
1084recheck:
1085 $(SHELL) config.status --recheck
1086 $(SHELL) config.status
1087
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001088# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001089autoconf:
1090 (cd $(srcdir); autoconf)
1091 (cd $(srcdir); autoheader)
1092
1093# Create a tags file for vi
1094tags::
1095 cd $(srcdir); \
1096 ctags -w -t Include/*.h; \
1097 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1098 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001099 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001100
1101# Create a tags file for GNU Emacs
1102TAGS::
1103 cd $(srcdir); \
1104 etags Include/*.h; \
1105 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1106
1107# Sanitation targets -- clean leaves libraries, executables and tags
1108# files, which clobber removes those as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001109pycremoval:
1110 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001111
Guido van Rossum77b5e332007-08-29 23:24:02 +00001112rmtestturds:
1113 -rm -f *BAD *GOOD *SKIPPED
1114 -rm -rf OUT
1115 -rm -f *.TXT
1116 -rm -f *.txt
1117 -rm -f gb-18030-2000.xml
1118
Guido van Rossum8188e632007-08-29 23:48:29 +00001119docclean:
1120 -rm -rf Doc/build
1121 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1122
Guido van Rossum5420bc32007-08-29 23:35:30 +00001123clean: pycremoval
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +00001124 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001125 find . -name '*.s[ol]' -exec rm -f {} ';'
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001126 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1127 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001128
Christian Heimes33fe8092008-04-13 13:53:33 +00001129profile-removal:
1130 find . -name '*.gc??' -exec rm -f {} ';'
1131
1132clobber: clean profile-removal
Jack Jansen1999ef42001-12-06 21:47:20 +00001133 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001134 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001135 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001136 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001137 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001138
1139# Make things extra clean, before making a distribution:
1140# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001141# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001142distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001143 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001144 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001145 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1146 -o -name '[@,#]*' -o -name '*.old' \
1147 -o -name '*.orig' -o -name '*.rej' \
1148 -o -name '*.bak' ')' \
1149 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001150
1151# Check for smelly exported symbols (not starting with Py/_Py)
1152smelly: all
1153 nm -p $(LIBRARY) | \
1154 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1155
1156# Find files with funny names
1157funny:
Guido van Rossum77b5e332007-08-29 23:24:02 +00001158 find $(DISTDIRS) \
1159 -name .svn -prune \
1160 -o -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001161 -o -name '*.[chs]' \
1162 -o -name '*.py' \
1163 -o -name '*.doc' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001164 -o -name '*.dat' \
1165 -o -name '*.el' \
1166 -o -name '*.fd' \
1167 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001168 -o -name '*.gif' \
1169 -o -name '*.txt' \
1170 -o -name '*.xml' \
1171 -o -name '*.xbm' \
1172 -o -name '*.xpm' \
1173 -o -name '*.uue' \
1174 -o -name '*.decTest' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001175 -o -name '*,[vpt]' \
1176 -o -name 'Setup' \
1177 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001178 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001179 -o -name README \
1180 -o -name Makefile \
1181 -o -name ChangeLog \
1182 -o -name Repository \
1183 -o -name Root \
1184 -o -name Entries \
1185 -o -name Tag \
1186 -o -name tags \
1187 -o -name TAGS \
1188 -o -name .cvsignore \
1189 -o -name MANIFEST \
1190 -o -print
1191
Christian Heimesada8c3b2008-03-18 18:26:33 +00001192# Perform some verification checks on any modified files.
1193check:
Georg Brandlfcaf9102008-07-16 02:17:56 +00001194 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
Christian Heimesada8c3b2008-03-18 18:26:33 +00001195
Guido van Rossum9454ad72001-08-18 21:08:22 +00001196# Dependencies
1197
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001198Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001199
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001200# Declare targets that aren't real files
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001201.PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001202.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1203.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1204.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1205.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001206.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1207.PHONY: smelly funny
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001208
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001209# IF YOU PUT ANYTHING HERE IT WILL GO AWAY