blob: aac765b0e9e6b33f652359caeaa4c4f05c5f4f5b [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@
Martin v. Löwis0f48d982006-04-14 14:34:26 +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
Martin v. Löwisd44a4e92007-09-05 11:47:34 +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
Ronald Oussoren9bc2dd62007-09-09 11:13:42 +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
Ronald Oussoren988117f2006-04-29 11:31:35 +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
Ronald Oussoren988117f2006-04-29 11:31:35 +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@
Martin v. Löwis63bf1492007-11-12 05:14:05 +0000172LIBOBJDIR= Python/
173LIBOBJS= @LIBOBJS@
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000174UNICODE_OBJS= @UNICODE_OBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000175
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000176PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000177BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000178
179# === Definitions added by makesetup ===
180
181
182##########################################################################
183# Modules
184MODULE_OBJS= \
185 Modules/config.o \
186 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000187 Modules/main.o \
188 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000189
190# Used of signalmodule.o is not available
191SIGNAL_OBJS= @SIGNAL_OBJS@
192
193
194##########################################################################
195# Grammar
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000196GRAMMAR_H= $(srcdir)/Include/graminit.h
197GRAMMAR_C= $(srcdir)/Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000198GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
199
200
201##########################################################################
202# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000203PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000204
205POBJS= \
206 Parser/acceler.o \
207 Parser/grammar1.o \
208 Parser/listnode.o \
209 Parser/node.o \
210 Parser/parser.o \
211 Parser/parsetok.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000212 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000213 Parser/metagrammar.o \
214 Parser/firstsets.o \
215 Parser/grammar.o \
216 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000217
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000218PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000219
220PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000221 Objects/obmalloc.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000222 Python/mysnprintf.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000223 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000224 Parser/printgrammar.o \
225 Parser/pgenmain.o
226
227PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
228
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000229##########################################################################
230# AST
Martin v. Löwis75801492006-04-14 15:02:32 +0000231AST_H_DIR= $(srcdir)/Include
232AST_H= $(AST_H_DIR)/Python-ast.h
233AST_C_DIR= $(srcdir)/Python
234AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000235AST_ASDL= $(srcdir)/Parser/Python.asdl
236
237ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
238# XXX Note that a build now requires Python exist before the build starts
Martin v. Löwis75801492006-04-14 15:02:32 +0000239ASDLGEN= $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000240
241##########################################################################
242# Python
243PYTHON_OBJS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000244 Python/Python-ast.o \
245 Python/asdl.o \
246 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000247 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000248 Python/ceval.o \
249 Python/compile.o \
250 Python/codecs.o \
251 Python/errors.o \
252 Python/frozen.o \
253 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000254 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000255 Python/getargs.o \
256 Python/getcompiler.o \
257 Python/getcopyright.o \
258 Python/getmtime.o \
259 Python/getplatform.o \
260 Python/getversion.o \
261 Python/graminit.o \
262 Python/import.o \
263 Python/importdl.o \
264 Python/marshal.o \
265 Python/modsupport.o \
266 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000267 Python/mysnprintf.o \
Jeremy Hylton644dddc2006-08-21 16:19:37 +0000268 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000269 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000270 Python/pyfpe.o \
271 Python/pystate.o \
272 Python/pythonrun.o \
273 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000274 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000275 Python/sysmodule.o \
276 Python/traceback.o \
277 Python/getopt.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000278 Python/pystrtod.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000279 Python/$(DYNLOADFILE) \
Martin v. Löwis63bf1492007-11-12 05:14:05 +0000280 $(LIBOBJS) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000281 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000282 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000283
284
285##########################################################################
286# Objects
287OBJECT_OBJS= \
288 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000289 Objects/boolobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000290 Objects/bufferobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000291 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000292 Objects/classobject.o \
293 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000294 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000295 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000296 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000297 Objects/enumobject.o \
Richard Jones7b9558d2006-05-27 12:29:24 +0000298 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000299 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000300 Objects/fileobject.o \
301 Objects/floatobject.o \
302 Objects/frameobject.o \
303 Objects/funcobject.o \
304 Objects/intobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000305 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000306 Objects/listobject.o \
307 Objects/longobject.o \
308 Objects/dictobject.o \
309 Objects/methodobject.o \
310 Objects/moduleobject.o \
311 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000312 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000313 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000314 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000315 Objects/sliceobject.o \
316 Objects/stringobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000317 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000318 Objects/tupleobject.o \
319 Objects/typeobject.o \
Fred Drake502ed822001-10-05 21:56:02 +0000320 Objects/weakrefobject.o \
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000321 $(UNICODE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000322
323
324##########################################################################
325# objects that get linked into the Python library
326LIBRARY_OBJS= \
Barry Warsaw00decd72006-07-27 23:43:15 +0000327 Modules/_typesmodule.o \
Neil Schemenauer18821822001-01-27 21:42:38 +0000328 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329 $(PARSER_OBJS) \
330 $(OBJECT_OBJS) \
331 $(PYTHON_OBJS) \
332 $(MODULE_OBJS) \
333 $(SIGNAL_OBJS) \
334 $(MODOBJS)
335
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000336#########################################################################
337# Rules
338
339# Default target
Sean Reifscheideraaad0d62007-09-21 06:33:28 +0000340all: build_all
341build_all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000342
343# Build the interpreter
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000344$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000345 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000346 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000347 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000348
Jack Jansen1999ef42001-12-06 21:47:20 +0000349platform: $(BUILDPYTHON)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000350 $(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 +0000351
352
353# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000354sharedmods: $(BUILDPYTHON)
Andrew M. Kuchling9627ce12006-10-27 18:15:02 +0000355 @case $$MAKEFLAGS in \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000356 *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
357 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000358 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000359
360# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000361# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000362$(LIBRARY): $(LIBRARY_OBJS)
363 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000364 $(AR) cr $@ Modules/getbuildinfo.o
Barry Warsaw00decd72006-07-27 23:43:15 +0000365 $(AR) cr $@ Modules/_typesmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000366 $(AR) cr $@ $(PARSER_OBJS)
367 $(AR) cr $@ $(OBJECT_OBJS)
368 $(AR) cr $@ $(PYTHON_OBJS)
369 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
370 $(AR) cr $@ $(MODOBJS)
371 $(RANLIB) $@
372
Martin v. Löwis1142de32002-03-29 16:28:31 +0000373libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000374 if test $(INSTSONAME) != $(LDLIBRARY); then \
Martin v. Löwis4d9559a2004-09-26 17:26:55 +0000375 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000376 $(LN) -f $(INSTSONAME) $@; \
377 else\
378 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
379 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000380
381libpython$(VERSION).sl: $(LIBRARY_OBJS)
Georg Brandl66a0dbb2006-06-08 12:54:13 +0000382 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000383
Jack Jansenea0c3822002-08-01 21:57:49 +0000384# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
385# minimal framework (not including the Lib directory and such) in the current
386# directory.
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000387RESSRCDIR=$(srcdir)/Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000388$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
389 $(LIBRARY) \
390 $(RESSRCDIR)/Info.plist \
391 $(RESSRCDIR)/version.plist \
392 $(RESSRCDIR)/English.lproj/InfoPlist.strings
Jack Jansen246debb2002-02-12 21:30:53 +0000393 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Ronald Oussoren988117f2006-04-29 11:31:35 +0000394 if test "${UNIVERSALSDK}"; then \
395 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
396 -isysroot "${UNIVERSALSDK}" \
397 -all_load $(LIBRARY) -Wl,-single_module \
398 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
399 -compatibility_version $(VERSION) \
400 -current_version $(VERSION); \
401 else \
Ronald Oussoren9cca9182007-07-09 08:41:15 +0000402 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Ronald Oussoren988117f2006-04-29 11:31:35 +0000403 @LIBTOOL_CRUFT@ ;\
404 fi
Jack Jansenea0c3822002-08-01 21:57:49 +0000405 $(INSTALL) -d -m $(DIRMODE) \
406 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
407 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
408 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
409 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
410 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
411 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
412 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
Jack Jansenc736b8d2002-08-04 21:17:20 +0000413 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000414 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000415 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
416 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000417
Jason Tishler30765592003-09-04 11:04:06 +0000418# This rule builds the Cygwin Python DLL and import library if configured
419# for a shared core library; otherwise, this rule is a noop.
420$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
421 if test -n "$(DLLLIBRARY)"; then \
422 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
423 $(LIBS) $(MODLIBS) $(SYSLIBS); \
424 else true; \
425 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000426
427
428oldsharedmods: $(SHAREDMODS)
429
430
431Makefile Modules/config.c: Makefile.pre \
432 $(srcdir)/Modules/config.c.in \
433 $(MAKESETUP) \
434 Modules/Setup.config \
435 Modules/Setup \
436 Modules/Setup.local
437 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
438 -s Modules \
439 Modules/Setup.config \
440 Modules/Setup.local \
441 Modules/Setup
442 @mv config.c Modules
443 @echo "The Makefile was updated, you may need to re-run make."
444
445
446Modules/Setup: $(srcdir)/Modules/Setup.dist
447 @if test -f Modules/Setup; then \
448 echo "-----------------------------------------------"; \
449 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
450 echo "check to make sure you have all the updates you"; \
451 echo "need in your Modules/Setup file."; \
Guido van Rossumbb29b9c2001-09-29 00:42:19 +0000452 echo "Usually, copying Setup.dist to Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000453 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000454 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000455
456############################################################################
457# Special rules for object files
458
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000459Modules/getbuildinfo.o: $(PARSER_OBJS) \
460 $(OBJECT_OBJS) \
461 $(PYTHON_OBJS) \
462 $(MODULE_OBJS) \
463 $(SIGNAL_OBJS) \
464 $(MODOBJS) \
465 $(srcdir)/Modules/getbuildinfo.c
Georg Brandl66fab422006-12-08 20:46:11 +0000466 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000467
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000468Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000469 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
470 -DPREFIX='"$(prefix)"' \
471 -DEXEC_PREFIX='"$(exec_prefix)"' \
472 -DVERSION='"$(VERSION)"' \
473 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000474 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000475
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000476Modules/python.o: $(srcdir)/Modules/python.c
477 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000478
479
480$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Neal Norwitze77d1032007-10-12 03:01:01 +0000481 -@$(INSTALL) -d Include
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000482 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000483
484$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000485 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000486
487Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000488 $(srcdir)/Include/token.h \
489 $(srcdir)/Include/grammar.h
490Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
491
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000492Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
493
Anthony Baxter24640872007-01-12 09:35:56 +0000494Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
495
Martin v. Löwis75801492006-04-14 15:02:32 +0000496$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
497 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000498
Martin v. Löwis75801492006-04-14 15:02:32 +0000499$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
500 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Barry Warsaw00decd72006-07-27 23:43:15 +0000501
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000502Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000503
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000504Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000505 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000506
507Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000508 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000509
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000510Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
511 $(srcdir)/Objects/unicodetype_db.h
512
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000513############################################################################
514# Header files
515
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000516PYTHON_HEADERS= \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000517 Include/Python.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000518 Include/Python-ast.h \
519 Include/asdl.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000520 Include/abstract.h \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000521 Include/boolobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000522 Include/bufferobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000523 Include/ceval.h \
524 Include/classobject.h \
525 Include/cobject.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000526 Include/code.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000527 Include/codecs.h \
528 Include/compile.h \
529 Include/complexobject.h \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000530 Include/descrobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000531 Include/dictobject.h \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000532 Include/enumobject.h \
Martin v. Löwise440e472004-06-01 15:22:42 +0000533 Include/genobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000534 Include/fileobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000535 Include/floatobject.h \
536 Include/funcobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000537 Include/import.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000538 Include/intobject.h \
539 Include/intrcheck.h \
540 Include/iterobject.h \
541 Include/listobject.h \
542 Include/longobject.h \
543 Include/methodobject.h \
544 Include/modsupport.h \
545 Include/moduleobject.h \
546 Include/object.h \
547 Include/objimpl.h \
Anthony Baxter24640872007-01-12 09:35:56 +0000548 Include/parsetok.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000549 Include/patchlevel.h \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000550 Include/pyarena.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000551 Include/pydebug.h \
552 Include/pyerrors.h \
553 Include/pyfpe.h \
554 Include/pymem.h \
555 Include/pyport.h \
556 Include/pystate.h \
557 Include/pythonrun.h \
558 Include/rangeobject.h \
Raymond Hettingera690a992003-11-16 16:17:49 +0000559 Include/setobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000560 Include/sliceobject.h \
561 Include/stringobject.h \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000562 Include/structseq.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000563 Include/structmember.h \
564 Include/symtable.h \
565 Include/sysmodule.h \
566 Include/traceback.h \
567 Include/tupleobject.h \
568 Include/unicodeobject.h \
Fred Drake502ed822001-10-05 21:56:02 +0000569 Include/weakrefobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000570 pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000571
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000572$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000573
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000574
575######################################################################
576
577# Test the interpreter (twice, once without .pyc files, once with)
Skip Montanaroc9803ab2003-05-06 16:17:27 +0000578# In the past, we've had problems where bugs in the marshalling or
579# elsewhere caused bytecode read from .pyc files to behave differently
580# than bytecode generated directly from a .py source file. Sometimes
581# the bytecode read from a .pyc file had the bug, somtimes the directly
582# generated bytecode. This is sometimes a very shy bug needing a lot of
583# sample data.
584
Neal Norwitzdf431652006-02-22 07:24:06 +0000585TESTOPTS= -l $(EXTRATESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000586TESTPROG= $(srcdir)/Lib/test/regrtest.py
Martin v. Löwis1142de32002-03-29 16:28:31 +0000587TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000588test: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000589 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000590 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
591 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000592
Skip Montanaro446ad712003-05-06 15:30:20 +0000593testall: all platform
594 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
595 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
596 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
597
Ronald Oussoren988117f2006-04-29 11:31:35 +0000598# Run the unitests for both architectures in a Universal build on OSX
599# Must be run on an Intel box.
600testuniversal: all platform
601 if [ `arch` != 'i386' ];then \
602 echo "This can only be used on OSX/i386" ;\
603 exit 1 ;\
604 fi
605 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
606 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
607 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
608 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
609
610
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000611# Like testall, but with a single pass only
Matthias Klose642ac852007-09-04 18:17:36 +0000612# run an optional script to include some information about the build environment
Neal Norwitz377f54e2006-05-31 08:01:08 +0000613buildbottest: all platform
Matthias Klose4f2ba552007-09-04 19:05:38 +0000614 -@if which pybuildbot.identify >/dev/null 2>&1; then \
615 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
616 fi
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000617 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
618
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000619QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
Fred Drake042f3132001-02-02 03:03:33 +0000620 test_unicodedata test_re test_sre test_select test_poll \
Guido van Rossumed2f7252002-08-09 19:18:25 +0000621 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000622quicktest: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000623 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000624 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
625 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000626
Barry Warsaw42119252001-03-03 04:14:21 +0000627MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
628 test_longexp
629memtest: all platform
630 -rm -f $(srcdir)/Lib/test/*.py[co]
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000631 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
632 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
Barry Warsaw42119252001-03-03 04:14:21 +0000633
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000634# Install everything
Ronald Oussoren567a8ff2006-05-26 11:43:26 +0000635install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000636
637# Install almost everything without disturbing previous versions
Ronald Oussoren5b787322006-06-06 19:50:24 +0000638altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
639 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000640
641# Install shared libraries enabled by Setup
642DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
643
644oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
645 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000646 if test $$i != X; then \
647 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000648 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000649 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000650 done
651
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000652$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000653 @for i in $(DESTDIRS); \
654 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000655 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000656 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000657 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000658 else true; \
659 fi; \
660 done
661
662
663# Install the interpreter (by creating a hard link to python$(VERSION))
664bininstall: altbininstall
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000665 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
666 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000667 else true; \
668 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000669 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
Georg Brandlbd9d5442007-09-07 20:10:49 +0000670 -rm -f $(DESTDIR)$(BINDIR)/python-config
671 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000672
673# Install the interpreter with $(VERSION) affixed
674# This goes into $(exec_prefix)
Jack Jansen1999ef42001-12-06 21:47:20 +0000675altbininstall: $(BUILDPYTHON)
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000676 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000677 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000678 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000679 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000680 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000681 else true; \
682 fi; \
683 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000684 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000685 if test -f libpython$(VERSION)$(SO); then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000686 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000687 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000688 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000689 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000690 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
691 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
692 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000693 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000694 else true; \
695 fi
696
697# Install the manual page
698maninstall:
699 @for i in $(MANDIR) $(MANDIR)/man1; \
700 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000701 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000702 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000703 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000704 else true; \
705 fi; \
706 done
707 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000708 $(DESTDIR)$(MANDIR)/man1/python.1
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000709
710# Install the library
711PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +0000712EXTRAPLATDIR= @EXTRAPLATDIR@
Jack Jansen7b59b422003-03-17 15:44:10 +0000713EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
Jack Jansen83f898c2002-12-30 22:23:40 +0000714MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Fred Drakefbdeaad2006-07-29 16:56:15 +0000715XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Jack Jansen83f898c2002-12-30 22:23:40 +0000716PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
Jack Jansend68d9292003-01-21 15:05:02 +0000717 plat-mac/lib-scriptpackages/_builtinSuites \
Jack Jansen83f898c2002-12-30 22:23:40 +0000718 plat-mac/lib-scriptpackages/CodeWarrior \
719 plat-mac/lib-scriptpackages/Explorer \
720 plat-mac/lib-scriptpackages/Finder \
721 plat-mac/lib-scriptpackages/Netscape \
722 plat-mac/lib-scriptpackages/StdSuites \
Jack Jansen1fff6972003-03-31 09:39:54 +0000723 plat-mac/lib-scriptpackages/SystemEvents \
Neal Norwitzc315a0f2006-06-27 04:28:56 +0000724 plat-mac/lib-scriptpackages/Terminal
Jack Jansen7b59b422003-03-17 15:44:10 +0000725PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
Neal Norwitz3b6b8012006-06-27 04:12:58 +0000726LIBSUBDIRS= lib-tk site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000727 test/decimaltestdata \
Barry Warsawd6316a92006-03-22 14:57:54 +0000728 encodings compiler hotshot \
729 email email/mime email/test email/test/data \
Skip Montanaro353aa872006-04-03 16:40:10 +0000730 sqlite3 sqlite3/test \
Neal Norwitz60373cd2006-06-22 06:30:50 +0000731 logging bsddb bsddb/test csv wsgiref \
Thomas Hellerfc9fc472006-04-03 20:10:50 +0000732 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000733 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Phillip J. Ebycea434c2006-04-18 04:34:50 +0000734 setuptools setuptools/command setuptools/tests setuptools.egg-info \
Fred Drakee612c8e2005-01-19 06:24:58 +0000735 curses $(MACHDEPS)
Sean Reifscheideraaad0d62007-09-21 06:33:28 +0000736libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000737 @for i in $(SCRIPTDIR) $(LIBDEST); \
738 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000739 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000740 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000741 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000742 else true; \
743 fi; \
744 done
745 @for d in $(LIBSUBDIRS); \
746 do \
747 a=$(srcdir)/Lib/$$d; \
748 if test ! -d $$a; then continue; else true; fi; \
749 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000750 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000751 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000752 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000753 else true; \
754 fi; \
755 done
Ronald Oussorenfb322cd2006-06-25 21:19:06 +0000756 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000757 do \
758 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000759 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000760 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000761 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000762 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000763 echo $(INSTALL_DATA) $$i $(LIBDEST); \
764 fi; \
765 done
766 @for d in $(LIBSUBDIRS); \
767 do \
768 a=$(srcdir)/Lib/$$d; \
769 if test ! -d $$a; then continue; else true; fi; \
Hye-Shik Changdfbd34c2006-03-23 12:12:44 +0000770 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000771 b=$(LIBDEST)/$$d; \
772 for i in $$a/*; \
773 do \
774 case $$i in \
775 *CVS) ;; \
776 *.py[co]) ;; \
777 *.orig) ;; \
778 *~) ;; \
779 *) \
780 if test -d $$i; then continue; fi; \
781 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000782 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000783 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000784 else \
785 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000786 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000787 fi;; \
788 esac; \
789 done; \
790 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000791 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
792 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
793 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000794 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000795 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000796 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
797 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000798 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000799 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000800 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000801 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000802 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000803 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000804 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000805 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000806 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000807 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000808
809# Create the PLATDIR source directory, if one wasn't distributed..
810$(srcdir)/Lib/$(PLATDIR):
811 mkdir $(srcdir)/Lib/$(PLATDIR)
812 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
813 export PATH; PATH="`pwd`:$$PATH"; \
814 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000815 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000816 export EXE; EXE="$(BUILDEXE)"; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000817 cd $(srcdir)/Lib/$(PLATDIR); ./regen
818
819# Install the include files
820INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
821inclinstall:
822 @for i in $(INCLDIRSTOMAKE); \
823 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000824 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000825 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000826 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000827 else true; \
828 fi; \
829 done
830 @for i in $(srcdir)/Include/*.h; \
831 do \
832 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000833 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000834 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000835 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000836
837# Install the library and miscellaneous stuff needed for extending/embedding
838# This goes into $(exec_prefix)
839LIBPL= $(LIBP)/config
840libainstall: all
841 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
842 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000843 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000844 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000845 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000846 else true; \
847 fi; \
848 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000849 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000850 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000851 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000852 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000853 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000854 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
855 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000856 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000857 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000858 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000859 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000860 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000861 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000862 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000863 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
864 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
865 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
866 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
867 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
868 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
869 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Martin v. Löwisc90b17e2006-04-15 08:13:05 +0000870 # Substitution happens here, as the completely-expanded BINDIR
871 # is not available in configure
Georg Brandlced52a92006-07-24 13:28:57 +0000872 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
Georg Brandlb142c632006-07-30 16:20:10 +0000873 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
Martin v. Löwisc90b17e2006-04-15 08:13:05 +0000874 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000875 @if [ -s Modules/python.exp -a \
876 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
877 echo; echo "Installing support files for building shared extension modules on AIX:"; \
878 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000879 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000880 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000881 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000882 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000883 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000884 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000885 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000886 echo "$(LIBPL)/ld_so_aix"; \
887 echo; echo "See Misc/AIX-NOTES for details."; \
888 else true; \
889 fi
890 @case "$(MACHDEP)" in beos*) \
891 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000892 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000893 echo; echo "$(LIBPL)/README"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000894 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
Neil Schemenauer75e33892001-02-16 03:36:53 +0000895 echo "$(LIBPL)/ar_beos"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000896 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
Neil Schemenauer75e33892001-02-16 03:36:53 +0000897 echo "$(LIBPL)/ld_so_beos"; \
898 echo; echo "See Misc/BeOS-NOTES for details."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000899 ;; \
900 esac
901
902# Install the dynamically loadable modules
903# This goes into $(exec_prefix)
904sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000905 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
906 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000907 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000908 --install-platlib=$(DESTSHARED) \
909 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000910
Jack Jansencb4321e2002-08-09 00:18:21 +0000911# Here are a couple of targets for MacOSX again, to install a full
912# framework-based Python. frameworkinstall installs everything, the
913# subtargets install specific parts. Much of the actual work is offloaded to
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000914# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +0000915#
Ronald Oussoren567a8ff2006-05-26 11:43:26 +0000916#
917# This target is here for backward compatiblity, previous versions of Python
918# hadn't integrated framework installation in the normal install process.
919frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +0000920
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000921# On install, we re-make the framework
922# structure in the install location, /Library/Frameworks/ or the argument to
923# --enable-framework. If --enable-framework has been specified then we have
924# automatically set prefix to the location deep down in the framework, so we
925# only have to cater for the structural bits of the framework.
926
Jack Jansencb4321e2002-08-09 00:18:21 +0000927frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
928
929frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +0000930 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000931 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +0000932 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000933 else true; \
934 fi
Jack Jansencb4321e2002-08-09 00:18:21 +0000935 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000936 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +0000937 echo "Creating directory $(DESTDIR)$$i"; \
938 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000939 else true; \
940 fi; \
941 done
Jack Jansen9592fe92003-05-25 22:01:32 +0000942 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
943 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
944 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000945 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
Jack Jansen9592fe92003-05-25 22:01:32 +0000946 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
947 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
948 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
949 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
950 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +0000951 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000952
Jack Jansencb4321e2002-08-09 00:18:21 +0000953# This installs Mac/Lib into the framework
Ronald Oussoren0350f812006-06-27 15:45:32 +0000954# Install a number of symlinks to keep software that expects a normal unix
955# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +0000956frameworkinstallmaclib:
Ronald Oussoren518b95c2006-07-25 19:13:35 +0000957 ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000958 cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +0000959
960# This installs the IDE, the Launcher and other apps into /Applications
961frameworkinstallapps:
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000962 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +0000963
964# This install the unix python and pythonw tools in /usr/local/bin
965frameworkinstallunixtools:
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000966 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +0000967
Ronald Oussoren5b787322006-06-06 19:50:24 +0000968frameworkaltinstallunixtools:
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000969 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Ronald Oussoren5b787322006-06-06 19:50:24 +0000970
Jack Jansena1b77582003-06-19 22:35:20 +0000971# This installs the Demos and Tools into the applications directory.
972# It is not part of a normal frameworkinstall
973frameworkinstallextras:
Ronald Oussoren2db3a8f2006-06-07 19:06:01 +0000974 cd Mac && Make installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +0000975
Skip Montanarodecc6a42003-01-01 20:07:49 +0000976# This installs a few of the useful scripts in Tools/scripts
977scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +0000978 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +0000979 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
980 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000981 --install-scripts=$(BINDIR) \
982 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000983
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000984# Build the toplevel Makefile
985Makefile.pre: Makefile.pre.in config.status
986 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
987 $(MAKE) -f Makefile.pre Makefile
988
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000989# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000990config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000991 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000992
Jack Jansen1999ef42001-12-06 21:47:20 +0000993.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000994
995# Some make's put the object file in the current directory
996.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000997 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000998
Martin v. Löwis4be4e652006-04-17 19:25:49 +0000999# Run reindent on the library
1000reindent:
1001 ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1002
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001003# Rerun configure with the same options as it was run last time,
1004# provided the config.status script exists
1005recheck:
1006 $(SHELL) config.status --recheck
1007 $(SHELL) config.status
1008
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001009# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001010autoconf:
1011 (cd $(srcdir); autoconf)
1012 (cd $(srcdir); autoheader)
1013
1014# Create a tags file for vi
1015tags::
1016 cd $(srcdir); \
1017 ctags -w -t Include/*.h; \
1018 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1019 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001020 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001021
1022# Create a tags file for GNU Emacs
1023TAGS::
1024 cd $(srcdir); \
1025 etags Include/*.h; \
1026 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1027
1028# Sanitation targets -- clean leaves libraries, executables and tags
1029# files, which clobber removes those as well
Brett Cannonab012af2006-04-18 23:58:52 +00001030pycremoval:
1031 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001032
Brett Cannonab012af2006-04-18 23:58:52 +00001033clean: pycremoval
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +00001034 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001035 find . -name '*.s[ol]' -exec rm -f {} ';'
Thomas Heller922ff4a2006-03-16 07:33:49 +00001036 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1037 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001038
1039clobber: clean
Jack Jansen1999ef42001-12-06 21:47:20 +00001040 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001041 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001042 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001043 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001044 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001045
1046# Make things extra clean, before making a distribution:
1047# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001048# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001049distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001050 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001051 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001052 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1053 -o -name '[@,#]*' -o -name '*.old' \
1054 -o -name '*.orig' -o -name '*.rej' \
1055 -o -name '*.bak' ')' \
1056 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001057
1058# Check for smelly exported symbols (not starting with Py/_Py)
1059smelly: all
1060 nm -p $(LIBRARY) | \
1061 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1062
1063# Find files with funny names
1064funny:
1065 find $(DISTDIRS) -type d \
1066 -o -name '*.[chs]' \
1067 -o -name '*.py' \
1068 -o -name '*.doc' \
1069 -o -name '*.sty' \
1070 -o -name '*.bib' \
1071 -o -name '*.dat' \
1072 -o -name '*.el' \
1073 -o -name '*.fd' \
1074 -o -name '*.in' \
1075 -o -name '*.tex' \
1076 -o -name '*,[vpt]' \
1077 -o -name 'Setup' \
1078 -o -name 'Setup.*' \
1079 -o -name README \
1080 -o -name Makefile \
1081 -o -name ChangeLog \
1082 -o -name Repository \
1083 -o -name Root \
1084 -o -name Entries \
1085 -o -name Tag \
1086 -o -name tags \
1087 -o -name TAGS \
1088 -o -name .cvsignore \
1089 -o -name MANIFEST \
1090 -o -print
1091
Guido van Rossum9454ad72001-08-18 21:08:22 +00001092# Dependencies
1093
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001094Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001095
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001096# Declare targets that aren't real files
Sean Reifscheideraaad0d62007-09-21 06:33:28 +00001097.PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001098.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1099.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1100.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1101.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Ronald Oussoren5b787322006-06-06 19:50:24 +00001102.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1103.PHONY: smelly funny
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001104
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001105# IF YOU PUT ANYTHING HERE IT WILL GO AWAY