blob: 0a03d87ab676fda8b322f20c67cf3974112a9589 [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
178# === Definitions added by makesetup ===
179
180
181##########################################################################
182# Modules
183MODULE_OBJS= \
184 Modules/config.o \
185 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000186 Modules/main.o \
187 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000188
189# Used of signalmodule.o is not available
190SIGNAL_OBJS= @SIGNAL_OBJS@
191
192
193##########################################################################
194# Grammar
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000195GRAMMAR_H= $(srcdir)/Include/graminit.h
196GRAMMAR_C= $(srcdir)/Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000197GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
198
199
200##########################################################################
201# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000202PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000203
204POBJS= \
205 Parser/acceler.o \
206 Parser/grammar1.o \
207 Parser/listnode.o \
208 Parser/node.o \
209 Parser/parser.o \
210 Parser/parsetok.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000211 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000212 Parser/metagrammar.o \
213 Parser/firstsets.o \
214 Parser/grammar.o \
215 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000216
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000217PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000218
219PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000220 Objects/obmalloc.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000221 Python/mysnprintf.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000222 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000223 Parser/printgrammar.o \
224 Parser/pgenmain.o
225
Georg Brandl86def6c2008-01-21 20:36:10 +0000226PARSER_HEADERS= \
227 Parser/parser.h \
228 Parser/tokenizer.h
229
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000230PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
231
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000232##########################################################################
233# AST
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000234AST_H_DIR= $(srcdir)/Include
235AST_H= $(AST_H_DIR)/Python-ast.h
236AST_C_DIR= $(srcdir)/Python
237AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000238AST_ASDL= $(srcdir)/Parser/Python.asdl
239
240ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
241# XXX Note that a build now requires Python exist before the build starts
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000242ASDLGEN= $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000243
244##########################################################################
245# Python
246PYTHON_OBJS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000247 Python/Python-ast.o \
248 Python/asdl.o \
249 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000250 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000251 Python/ceval.o \
252 Python/compile.o \
253 Python/codecs.o \
254 Python/errors.o \
255 Python/frozen.o \
256 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000257 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000258 Python/getargs.o \
259 Python/getcompiler.o \
260 Python/getcopyright.o \
261 Python/getmtime.o \
262 Python/getplatform.o \
263 Python/getversion.o \
264 Python/graminit.o \
265 Python/import.o \
266 Python/importdl.o \
267 Python/marshal.o \
268 Python/modsupport.o \
269 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000270 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000271 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000272 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000273 Python/pyfpe.o \
274 Python/pystate.o \
275 Python/pythonrun.o \
276 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000277 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000278 Python/sysmodule.o \
279 Python/traceback.o \
280 Python/getopt.o \
Christian Heimes99170a52007-12-19 02:07:34 +0000281 Python/pystrcmp.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000282 Python/pystrtod.o \
Eric Smith8c663262007-08-25 02:26:07 +0000283 Python/formatter_unicode.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000284 Python/$(DYNLOADFILE) \
Christian Heimes32fbe592007-11-12 15:01:33 +0000285 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000286 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000287 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000288
289
290##########################################################################
291# Objects
292OBJECT_OBJS= \
293 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000294 Objects/boolobject.o \
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000295 Objects/bytes_methods.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000296 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000297 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000298 Objects/classobject.o \
299 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000300 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000301 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000302 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000303 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000304 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000305 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000306 Objects/fileobject.o \
307 Objects/floatobject.o \
308 Objects/frameobject.o \
309 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000310 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000311 Objects/listobject.o \
312 Objects/longobject.o \
313 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000314 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000315 Objects/methodobject.o \
316 Objects/moduleobject.o \
317 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000318 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000319 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000320 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000321 Objects/sliceobject.o \
322 Objects/stringobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000323 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000324 Objects/tupleobject.o \
325 Objects/typeobject.o \
Georg Brandl52d168a2008-01-07 18:10:24 +0000326 Objects/unicodeobject.o \
327 Objects/unicodectype.o \
328 Objects/weakrefobject.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329
330
331##########################################################################
332# objects that get linked into the Python library
333LIBRARY_OBJS= \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000334 Modules/_typesmodule.o \
Neil Schemenauer18821822001-01-27 21:42:38 +0000335 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000336 $(PARSER_OBJS) \
337 $(OBJECT_OBJS) \
338 $(PYTHON_OBJS) \
339 $(MODULE_OBJS) \
340 $(SIGNAL_OBJS) \
341 $(MODOBJS)
342
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000343#########################################################################
344# Rules
345
346# Default target
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000347all: build_all
348build_all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000349
350# Build the interpreter
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000351$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000352 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000353 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000354 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000355
Jack Jansen1999ef42001-12-06 21:47:20 +0000356platform: $(BUILDPYTHON)
Guido van Rossum452bf512007-02-09 05:32:43 +0000357 $(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 +0000358
359
360# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000361sharedmods: $(BUILDPYTHON)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000362 @case $$MAKEFLAGS in \
Christian Heimes1af737c2008-01-23 08:24:23 +0000363 *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000364 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000365 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000366
367# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000368# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000369$(LIBRARY): $(LIBRARY_OBJS)
370 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000371 $(AR) cr $@ Modules/getbuildinfo.o
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000372 $(AR) cr $@ Modules/_typesmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000373 $(AR) cr $@ $(PARSER_OBJS)
374 $(AR) cr $@ $(OBJECT_OBJS)
375 $(AR) cr $@ $(PYTHON_OBJS)
376 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
377 $(AR) cr $@ $(MODOBJS)
378 $(RANLIB) $@
379
Martin v. Löwis1142de32002-03-29 16:28:31 +0000380libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000381 if test $(INSTSONAME) != $(LDLIBRARY); then \
Martin v. Löwis4d9559a2004-09-26 17:26:55 +0000382 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000383 $(LN) -f $(INSTSONAME) $@; \
384 else\
385 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
386 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000387
388libpython$(VERSION).sl: $(LIBRARY_OBJS)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000389 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000390
Jack Jansenea0c3822002-08-01 21:57:49 +0000391# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
392# minimal framework (not including the Lib directory and such) in the current
393# directory.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000394RESSRCDIR=$(srcdir)/Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000395$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
396 $(LIBRARY) \
397 $(RESSRCDIR)/Info.plist \
398 $(RESSRCDIR)/version.plist \
399 $(RESSRCDIR)/English.lproj/InfoPlist.strings
Jack Jansen246debb2002-02-12 21:30:53 +0000400 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000401 if test "${UNIVERSALSDK}"; then \
402 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
403 -isysroot "${UNIVERSALSDK}" \
404 -all_load $(LIBRARY) -Wl,-single_module \
405 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
406 -compatibility_version $(VERSION) \
407 -current_version $(VERSION); \
408 else \
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000409 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000410 @LIBTOOL_CRUFT@ ;\
411 fi
Jack Jansenea0c3822002-08-01 21:57:49 +0000412 $(INSTALL) -d -m $(DIRMODE) \
413 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
414 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
415 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
416 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
417 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
418 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
419 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
Jack Jansenc736b8d2002-08-04 21:17:20 +0000420 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000421 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000422 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
423 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000424
Jason Tishler30765592003-09-04 11:04:06 +0000425# This rule builds the Cygwin Python DLL and import library if configured
426# for a shared core library; otherwise, this rule is a noop.
427$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
428 if test -n "$(DLLLIBRARY)"; then \
429 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
430 $(LIBS) $(MODLIBS) $(SYSLIBS); \
431 else true; \
432 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000433
434
435oldsharedmods: $(SHAREDMODS)
436
437
438Makefile Modules/config.c: Makefile.pre \
439 $(srcdir)/Modules/config.c.in \
440 $(MAKESETUP) \
441 Modules/Setup.config \
442 Modules/Setup \
443 Modules/Setup.local
444 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
445 -s Modules \
446 Modules/Setup.config \
447 Modules/Setup.local \
448 Modules/Setup
449 @mv config.c Modules
450 @echo "The Makefile was updated, you may need to re-run make."
451
452
453Modules/Setup: $(srcdir)/Modules/Setup.dist
454 @if test -f Modules/Setup; then \
455 echo "-----------------------------------------------"; \
456 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
457 echo "check to make sure you have all the updates you"; \
458 echo "need in your Modules/Setup file."; \
Guido van Rossumbb29b9c2001-09-29 00:42:19 +0000459 echo "Usually, copying Setup.dist to Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000460 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000461 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000462
463############################################################################
464# Special rules for object files
465
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000466Modules/getbuildinfo.o: $(PARSER_OBJS) \
467 $(OBJECT_OBJS) \
468 $(PYTHON_OBJS) \
469 $(MODULE_OBJS) \
470 $(SIGNAL_OBJS) \
471 $(MODOBJS) \
472 $(srcdir)/Modules/getbuildinfo.c
Thomas Wouters89f507f2006-12-13 04:49:30 +0000473 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000474
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000475Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000476 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
477 -DPREFIX='"$(prefix)"' \
478 -DEXEC_PREFIX='"$(exec_prefix)"' \
479 -DVERSION='"$(VERSION)"' \
480 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000481 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000482
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000483Modules/python.o: $(srcdir)/Modules/python.c
484 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000485
486
487$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000488 -@$(INSTALL) -d Include
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000489 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000490
491$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000492 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000493
494Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000495 $(srcdir)/Include/token.h \
496 $(srcdir)/Include/grammar.h
497Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
498
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000499Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
500
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000501Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
502
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000503$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
504 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000505
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000506$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
507 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000508
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000509Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000510
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000511Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000512 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000513
514Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000515 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000516
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000517Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
518 $(srcdir)/Objects/unicodetype_db.h
519
Gregory P. Smith60d241f2007-10-16 06:31:30 +0000520BYTESTR_DEPS = Include/bytes_methods.h \
521 $(srcdir)/Objects/stringlib/fastsearch.h \
522 $(srcdir)/Objects/stringlib/count.h \
523 $(srcdir)/Objects/stringlib/find.h \
524 $(srcdir)/Objects/stringlib/partition.h \
525 $(srcdir)/Objects/stringlib/ctype.h \
526 $(srcdir)/Objects/stringlib/transmogrify.h
527
528Objects/stringobject.o: $(srcdir)/Objects/stringobject.c $(BYTESTR_DEPS)
529
530Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
531
Eric Smith8c663262007-08-25 02:26:07 +0000532Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
533 $(srcdir)/Objects/stringlib/string_format.h \
534 $(srcdir)/Objects/stringlib/unicodedefs.h \
535 $(srcdir)/Objects/stringlib/fastsearch.h \
536 $(srcdir)/Objects/stringlib/count.h \
537 $(srcdir)/Objects/stringlib/find.h \
538 $(srcdir)/Objects/stringlib/partition.h
539
540Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
541 $(srcdir)/Objects/stringlib/formatter.h
542
543
544
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000545############################################################################
546# Header files
547
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000548PYTHON_HEADERS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000549 Include/Python-ast.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000550 Include/Python.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000551 Include/abstract.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000552 Include/asdl.h \
553 Include/ast.h \
554 Include/bitset.h \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000555 Include/boolobject.h \
Christian Heimesf78b1c62007-12-02 16:52:32 +0000556 Include/bytes_methods.h \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000557 Include/bytesobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000558 Include/cellobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000559 Include/ceval.h \
560 Include/classobject.h \
561 Include/cobject.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000562 Include/code.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000563 Include/codecs.h \
564 Include/compile.h \
565 Include/complexobject.h \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000566 Include/descrobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000567 Include/dictobject.h \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000568 Include/enumobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000569 Include/errcode.h \
570 Include/eval.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000571 Include/fileobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000572 Include/floatobject.h \
Eric Smith8c663262007-08-25 02:26:07 +0000573 Include/formatter_unicode.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000574 Include/frameobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000575 Include/funcobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000576 Include/genobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000577 Include/import.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000578 Include/intrcheck.h \
579 Include/iterobject.h \
580 Include/listobject.h \
Christian Heimesf78b1c62007-12-02 16:52:32 +0000581 Include/longintrepr.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000582 Include/longobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000583 Include/marshal.h \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000584 Include/memoryobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000585 Include/metagrammar.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000586 Include/methodobject.h \
587 Include/modsupport.h \
588 Include/moduleobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000589 Include/node.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000590 Include/object.h \
591 Include/objimpl.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000592 Include/opcode.h \
593 Include/osdefs.h \
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000594 Include/parsetok.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000595 Include/patchlevel.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000596 Include/pgen.h \
597 Include/pgenheaders.h \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000598 Include/pyarena.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000599 Include/pydebug.h \
600 Include/pyerrors.h \
601 Include/pyfpe.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000602 Include/pygetopt.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000603 Include/pymem.h \
604 Include/pyport.h \
605 Include/pystate.h \
Christian Heimes99170a52007-12-19 02:07:34 +0000606 Include/pystrcmp.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000607 Include/pystrtod.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000608 Include/pythonrun.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000609 Include/pythread.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000610 Include/rangeobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000611 Include/setobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000612 Include/sliceobject.h \
613 Include/stringobject.h \
614 Include/structmember.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000615 Include/structseq.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000616 Include/symtable.h \
617 Include/sysmodule.h \
618 Include/traceback.h \
619 Include/tupleobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000620 Include/ucnhash.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000621 Include/unicodeobject.h \
Fred Drake502ed822001-10-05 21:56:02 +0000622 Include/weakrefobject.h \
Georg Brandl86def6c2008-01-21 20:36:10 +0000623 pyconfig.h \
624 $(PARSER_HEADERS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000625
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000626$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000627
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000628
629######################################################################
630
631# Test the interpreter (twice, once without .pyc files, once with)
Skip Montanaroc9803ab2003-05-06 16:17:27 +0000632# In the past, we've had problems where bugs in the marshalling or
633# elsewhere caused bytecode read from .pyc files to behave differently
634# than bytecode generated directly from a .py source file. Sometimes
635# the bytecode read from a .pyc file had the bug, somtimes the directly
636# generated bytecode. This is sometimes a very shy bug needing a lot of
637# sample data.
638
Neal Norwitzdf431652006-02-22 07:24:06 +0000639TESTOPTS= -l $(EXTRATESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000640TESTPROG= $(srcdir)/Lib/test/regrtest.py
Christian Heimes905a9042007-11-21 02:51:50 +0000641TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt -bb
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000642test: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000643 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000644 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
645 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000646
Skip Montanaro446ad712003-05-06 15:30:20 +0000647testall: all platform
648 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Thomas Woutersd2d29152008-01-25 23:21:16 +0000649 $(TESTPYTHON) $(srcdir)/Lib/compileall.py
Christian Heimes905a9042007-11-21 02:51:50 +0000650 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Skip Montanaro446ad712003-05-06 15:30:20 +0000651 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
652 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
653
Thomas Wouters477c8d52006-05-27 19:21:47 +0000654# Run the unitests for both architectures in a Universal build on OSX
655# Must be run on an Intel box.
656testuniversal: all platform
657 if [ `arch` != 'i386' ];then \
658 echo "This can only be used on OSX/i386" ;\
659 exit 1 ;\
660 fi
661 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
662 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
663 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
664 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
665
666
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000667# Like testall, but with a single pass only
Thomas Wouters89d996e2007-09-08 17:39:28 +0000668# run an optional script to include some information about the build environment
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000669buildbottest: all platform
Thomas Wouters89d996e2007-09-08 17:39:28 +0000670 -@if which pybuildbot.identify >/dev/null 2>&1; then \
671 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
672 fi
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000673 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
674
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000675QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
Fred Drake042f3132001-02-02 03:03:33 +0000676 test_unicodedata test_re test_sre test_select test_poll \
Guido van Rossum33d26892007-08-05 15:29:28 +0000677 test_struct test_zlib
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000678quicktest: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000679 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000680 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
681 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000682
Barry Warsaw42119252001-03-03 04:14:21 +0000683MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
684 test_longexp
685memtest: all platform
686 -rm -f $(srcdir)/Lib/test/*.py[co]
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000687 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
688 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
Barry Warsaw42119252001-03-03 04:14:21 +0000689
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000690# Install everything
Thomas Wouters477c8d52006-05-27 19:21:47 +0000691install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000692
693# Install almost everything without disturbing previous versions
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000694altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
695 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000696
697# Install shared libraries enabled by Setup
698DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
699
700oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
701 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000702 if test $$i != X; then \
703 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000704 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000705 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000706 done
707
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000708$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000709 @for i in $(DESTDIRS); \
710 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000711 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000712 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000713 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000714 else true; \
715 fi; \
716 done
717
718
719# Install the interpreter (by creating a hard link to python$(VERSION))
720bininstall: altbininstall
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000721 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
722 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000723 else true; \
724 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000725 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
Thomas Wouters89d996e2007-09-08 17:39:28 +0000726 -rm -f $(DESTDIR)$(BINDIR)/python-config
727 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000728
729# Install the interpreter with $(VERSION) affixed
730# This goes into $(exec_prefix)
Jack Jansen1999ef42001-12-06 21:47:20 +0000731altbininstall: $(BUILDPYTHON)
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000732 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000733 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000734 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000735 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000736 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000737 else true; \
738 fi; \
739 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000740 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000741 if test -f libpython$(VERSION)$(SO); then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000742 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000743 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000744 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000745 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000746 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
747 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
748 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000749 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000750 else true; \
751 fi
752
753# Install the manual page
754maninstall:
755 @for i in $(MANDIR) $(MANDIR)/man1; \
756 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000757 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000758 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000759 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000760 else true; \
761 fi; \
762 done
763 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000764 $(DESTDIR)$(MANDIR)/man1/python.1
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000765
766# Install the library
767PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +0000768EXTRAPLATDIR= @EXTRAPLATDIR@
Jack Jansen7b59b422003-03-17 15:44:10 +0000769EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
Jack Jansen83f898c2002-12-30 22:23:40 +0000770MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000771XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Jack Jansen83f898c2002-12-30 22:23:40 +0000772PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
Jack Jansend68d9292003-01-21 15:05:02 +0000773 plat-mac/lib-scriptpackages/_builtinSuites \
Jack Jansen83f898c2002-12-30 22:23:40 +0000774 plat-mac/lib-scriptpackages/CodeWarrior \
775 plat-mac/lib-scriptpackages/Explorer \
776 plat-mac/lib-scriptpackages/Finder \
777 plat-mac/lib-scriptpackages/Netscape \
778 plat-mac/lib-scriptpackages/StdSuites \
Jack Jansen1fff6972003-03-31 09:39:54 +0000779 plat-mac/lib-scriptpackages/SystemEvents \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000780 plat-mac/lib-scriptpackages/Terminal
Jack Jansen7b59b422003-03-17 15:44:10 +0000781PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000782LIBSUBDIRS= lib-tk site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000783 test/decimaltestdata \
Fred Drake0e474a82007-10-11 18:01:43 +0000784 encodings \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000785 email email/mime email/test email/test/data \
786 sqlite3 sqlite3/test \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000787 logging bsddb bsddb/test csv wsgiref \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000788 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000789 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000790 setuptools setuptools/command setuptools/tests setuptools.egg-info \
Fred Drakee612c8e2005-01-19 06:24:58 +0000791 curses $(MACHDEPS)
Guido van Rossum8ce8a782007-11-01 19:42:39 +0000792libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000793 @for i in $(SCRIPTDIR) $(LIBDEST); \
794 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000795 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000796 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000797 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000798 else true; \
799 fi; \
800 done
801 @for d in $(LIBSUBDIRS); \
802 do \
803 a=$(srcdir)/Lib/$$d; \
804 if test ! -d $$a; then continue; else true; fi; \
805 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000806 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000807 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000808 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000809 else true; \
810 fi; \
811 done
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000812 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000813 do \
814 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000815 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000816 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000817 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000818 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000819 echo $(INSTALL_DATA) $$i $(LIBDEST); \
820 fi; \
821 done
822 @for d in $(LIBSUBDIRS); \
823 do \
824 a=$(srcdir)/Lib/$$d; \
825 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000826 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000827 b=$(LIBDEST)/$$d; \
828 for i in $$a/*; \
829 do \
830 case $$i in \
831 *CVS) ;; \
832 *.py[co]) ;; \
833 *.orig) ;; \
834 *~) ;; \
835 *) \
836 if test -d $$i; then continue; fi; \
837 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000838 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000839 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000840 else \
841 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000842 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000843 fi;; \
844 esac; \
845 done; \
846 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000847 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Guido van Rossum827bfd02007-07-15 13:12:42 +0000848 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000849 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000850 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000851 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +0000852 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000853 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000854 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000855 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000856 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000857 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000858 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000859 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000860 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000861 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000862 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000863 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000864
865# Create the PLATDIR source directory, if one wasn't distributed..
866$(srcdir)/Lib/$(PLATDIR):
867 mkdir $(srcdir)/Lib/$(PLATDIR)
868 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
869 export PATH; PATH="`pwd`:$$PATH"; \
870 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000871 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000872 export EXE; EXE="$(BUILDEXE)"; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000873 cd $(srcdir)/Lib/$(PLATDIR); ./regen
874
875# Install the include files
876INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
877inclinstall:
878 @for i in $(INCLDIRSTOMAKE); \
879 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000880 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000881 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000882 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000883 else true; \
884 fi; \
885 done
886 @for i in $(srcdir)/Include/*.h; \
887 do \
888 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000889 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000890 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000891 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000892
893# Install the library and miscellaneous stuff needed for extending/embedding
894# This goes into $(exec_prefix)
895LIBPL= $(LIBP)/config
896libainstall: all
897 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
898 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000899 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000900 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000901 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000902 else true; \
903 fi; \
904 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000905 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000906 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000907 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000908 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000909 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000910 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
911 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000912 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000913 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000914 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000915 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000916 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000917 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000918 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000919 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
920 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
921 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
922 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
923 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
924 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
925 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000926 # Substitution happens here, as the completely-expanded BINDIR
927 # is not available in configure
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000928 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
929 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000930 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000931 @if [ -s Modules/python.exp -a \
932 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
933 echo; echo "Installing support files for building shared extension modules on AIX:"; \
934 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000935 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000936 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000937 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000938 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000939 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000940 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000941 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000942 echo "$(LIBPL)/ld_so_aix"; \
943 echo; echo "See Misc/AIX-NOTES for details."; \
944 else true; \
945 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000946
947# Install the dynamically loadable modules
948# This goes into $(exec_prefix)
949sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000950 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
951 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000952 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000953 --install-platlib=$(DESTSHARED) \
954 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000955
Jack Jansencb4321e2002-08-09 00:18:21 +0000956# Here are a couple of targets for MacOSX again, to install a full
957# framework-based Python. frameworkinstall installs everything, the
958# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000959# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +0000960#
Thomas Wouters477c8d52006-05-27 19:21:47 +0000961#
962# This target is here for backward compatiblity, previous versions of Python
963# hadn't integrated framework installation in the normal install process.
964frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +0000965
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000966# On install, we re-make the framework
967# structure in the install location, /Library/Frameworks/ or the argument to
968# --enable-framework. If --enable-framework has been specified then we have
969# automatically set prefix to the location deep down in the framework, so we
970# only have to cater for the structural bits of the framework.
971
Jack Jansencb4321e2002-08-09 00:18:21 +0000972frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
973
974frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +0000975 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000976 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +0000977 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000978 else true; \
979 fi
Jack Jansencb4321e2002-08-09 00:18:21 +0000980 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000981 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +0000982 echo "Creating directory $(DESTDIR)$$i"; \
983 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000984 else true; \
985 fi; \
986 done
Jack Jansen9592fe92003-05-25 22:01:32 +0000987 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
988 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
989 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000990 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
Jack Jansen9592fe92003-05-25 22:01:32 +0000991 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
992 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
993 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
994 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
995 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +0000996 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000997
Jack Jansencb4321e2002-08-09 00:18:21 +0000998# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000999# Install a number of symlinks to keep software that expects a normal unix
1000# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +00001001frameworkinstallmaclib:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001002 ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001003 cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001004
1005# This installs the IDE, the Launcher and other apps into /Applications
1006frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001007 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +00001008
1009# This install the unix python and pythonw tools in /usr/local/bin
1010frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001011 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1012
1013frameworkaltinstallunixtools:
1014 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +00001015
Jack Jansena1b77582003-06-19 22:35:20 +00001016# This installs the Demos and Tools into the applications directory.
1017# It is not part of a normal frameworkinstall
1018frameworkinstallextras:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001019 cd Mac && Make installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +00001020
Skip Montanarodecc6a42003-01-01 20:07:49 +00001021# This installs a few of the useful scripts in Tools/scripts
1022scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +00001023 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +00001024 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1025 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +00001026 --install-scripts=$(BINDIR) \
1027 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +00001028
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001029# Build the toplevel Makefile
1030Makefile.pre: Makefile.pre.in config.status
1031 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1032 $(MAKE) -f Makefile.pre Makefile
1033
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001034# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001035config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +00001036 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001037
Jack Jansen1999ef42001-12-06 21:47:20 +00001038.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001039
1040# Some make's put the object file in the current directory
1041.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001042 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001043
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001044# Run reindent on the library
1045reindent:
1046 ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1047
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001048# Rerun configure with the same options as it was run last time,
1049# provided the config.status script exists
1050recheck:
1051 $(SHELL) config.status --recheck
1052 $(SHELL) config.status
1053
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001054# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001055autoconf:
1056 (cd $(srcdir); autoconf)
1057 (cd $(srcdir); autoheader)
1058
1059# Create a tags file for vi
1060tags::
1061 cd $(srcdir); \
1062 ctags -w -t Include/*.h; \
1063 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1064 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001065 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001066
1067# Create a tags file for GNU Emacs
1068TAGS::
1069 cd $(srcdir); \
1070 etags Include/*.h; \
1071 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1072
1073# Sanitation targets -- clean leaves libraries, executables and tags
1074# files, which clobber removes those as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001075pycremoval:
1076 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001077
Guido van Rossum77b5e332007-08-29 23:24:02 +00001078rmtestturds:
1079 -rm -f *BAD *GOOD *SKIPPED
1080 -rm -rf OUT
1081 -rm -f *.TXT
1082 -rm -f *.txt
1083 -rm -f gb-18030-2000.xml
1084
Guido van Rossum8188e632007-08-29 23:48:29 +00001085docclean:
1086 -rm -rf Doc/build
1087 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1088
Guido van Rossum5420bc32007-08-29 23:35:30 +00001089clean: pycremoval
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +00001090 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001091 find . -name '*.s[ol]' -exec rm -f {} ';'
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001092 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1093 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001094
Guido van Rossum8188e632007-08-29 23:48:29 +00001095clobber: clean rmtestturds docclean
Jack Jansen1999ef42001-12-06 21:47:20 +00001096 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001097 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001098 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001099 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001100 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001101
1102# Make things extra clean, before making a distribution:
1103# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001104# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001105distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001106 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001107 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001108 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1109 -o -name '[@,#]*' -o -name '*.old' \
1110 -o -name '*.orig' -o -name '*.rej' \
1111 -o -name '*.bak' ')' \
1112 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001113
1114# Check for smelly exported symbols (not starting with Py/_Py)
1115smelly: all
1116 nm -p $(LIBRARY) | \
1117 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1118
1119# Find files with funny names
1120funny:
Guido van Rossum77b5e332007-08-29 23:24:02 +00001121 find $(DISTDIRS) \
1122 -name .svn -prune \
1123 -o -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001124 -o -name '*.[chs]' \
1125 -o -name '*.py' \
1126 -o -name '*.doc' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001127 -o -name '*.dat' \
1128 -o -name '*.el' \
1129 -o -name '*.fd' \
1130 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001131 -o -name '*.gif' \
1132 -o -name '*.txt' \
1133 -o -name '*.xml' \
1134 -o -name '*.xbm' \
1135 -o -name '*.xpm' \
1136 -o -name '*.uue' \
1137 -o -name '*.decTest' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001138 -o -name '*,[vpt]' \
1139 -o -name 'Setup' \
1140 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001141 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001142 -o -name README \
1143 -o -name Makefile \
1144 -o -name ChangeLog \
1145 -o -name Repository \
1146 -o -name Root \
1147 -o -name Entries \
1148 -o -name Tag \
1149 -o -name tags \
1150 -o -name TAGS \
1151 -o -name .cvsignore \
1152 -o -name MANIFEST \
1153 -o -print
1154
Guido van Rossum9454ad72001-08-18 21:08:22 +00001155# Dependencies
1156
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001157Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001158
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001159# Declare targets that aren't real files
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001160.PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001161.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1162.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1163.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1164.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001165.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1166.PHONY: smelly funny
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001167
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001168# IF YOU PUT ANYTHING HERE IT WILL GO AWAY