blob: 1942f885785237744e459f5f6ff5da4e16cdb064 [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
64CPPFLAGS= -I. -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
85# Expanded directories
86BINDIR= $(exec_prefix)/bin
87LIBDIR= $(exec_prefix)/lib
Martin v. Löwisd429ab62001-08-02 06:20:20 +000088MANDIR= @mandir@
89INCLUDEDIR= @includedir@
Neil Schemenauer85515ad2001-01-24 17:11:43 +000090CONFINCLUDEDIR= $(exec_prefix)/include
91SCRIPTDIR= $(prefix)/lib
92
93# Detailed destination directories
94BINLIBDEST= $(LIBDIR)/python$(VERSION)
95LIBDEST= $(SCRIPTDIR)/python$(VERSION)
96INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
97CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
98LIBP= $(LIBDIR)/python$(VERSION)
99
100# Symbols used for using shared libraries
101SO= @SO@
102LDSHARED= @LDSHARED@
Neil Schemenauer75e33892001-02-16 03:36:53 +0000103BLDSHARED= @BLDSHARED@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000104DESTSHARED= $(BINLIBDEST)/lib-dynload
105
106# Executable suffix (.exe on Windows and Mac OS X)
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000107EXE= @EXEEXT@
Jack Jansen1999ef42001-12-06 21:47:20 +0000108BUILDEXE= @BUILDEXEEXT@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000109
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000110# Short name and location for Mac OS X Python framework
Thomas Wouters477c8d52006-05-27 19:21:47 +0000111UNIVERSALSDK=@UNIVERSALSDK@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000112PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
113PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
114PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
115PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000116# Deployment target selected during configure, to be checked
Thomas Wouters477c8d52006-05-27 19:21:47 +0000117# by distutils. The export statement is needed to ensure that the
118# deployment target is active during build.
119MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
120@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
121
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000122# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
123OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000124
Martin v. Löwis1142de32002-03-29 16:28:31 +0000125# Environment to run shared python without installed libraries
126RUNSHARED= @RUNSHARED@
127
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000128# Modes for directories, executables and data files created by the
129# install process. Default to user-only-writable for all file types.
130DIRMODE= 755
131EXEMODE= 755
132FILEMODE= 644
133
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000134# configure script arguments
135CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000136
137
138# Subdirectories with code
139SRCDIRS= @SRCDIRS@
140
141# Other subdirectories
142SUBDIRSTOO= Include Lib Misc Demo
143
144# Files and directories to be distributed
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000145CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000146DISTFILES= README ChangeLog $(CONFIGFILES)
147DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
148DIST= $(DISTFILES) $(DISTDIRS)
149
150
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000151LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000152LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000153BLDLIBRARY= @BLDLIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000154DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000155LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000156INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000157
158
159LIBS= @LIBS@
160LIBM= @LIBM@
161LIBC= @LIBC@
162SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000163SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000164
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000165THREADOBJ= @THREADOBJ@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000166DLINCLDIR= @DLINCLDIR@
167DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000168MACHDEP_OBJS= @MACHDEP_OBJS@
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000169UNICODE_OBJS= @UNICODE_OBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000170
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000171PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000172BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000173
174# === Definitions added by makesetup ===
175
176
177##########################################################################
178# Modules
179MODULE_OBJS= \
180 Modules/config.o \
181 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000182 Modules/main.o \
183 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000184
185# Used of signalmodule.o is not available
186SIGNAL_OBJS= @SIGNAL_OBJS@
187
188
189##########################################################################
190# Grammar
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000191GRAMMAR_H= $(srcdir)/Include/graminit.h
192GRAMMAR_C= $(srcdir)/Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000193GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
194
195
196##########################################################################
197# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000198PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000199
200POBJS= \
201 Parser/acceler.o \
202 Parser/grammar1.o \
203 Parser/listnode.o \
204 Parser/node.o \
205 Parser/parser.o \
206 Parser/parsetok.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000207 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000208 Parser/metagrammar.o \
209 Parser/firstsets.o \
210 Parser/grammar.o \
211 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000212
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000213PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000214
215PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000216 Objects/obmalloc.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000217 Python/mysnprintf.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000218 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000219 Parser/printgrammar.o \
220 Parser/pgenmain.o
221
222PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
223
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000224##########################################################################
225# AST
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000226AST_H_DIR= $(srcdir)/Include
227AST_H= $(AST_H_DIR)/Python-ast.h
228AST_C_DIR= $(srcdir)/Python
229AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000230AST_ASDL= $(srcdir)/Parser/Python.asdl
231
232ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
233# XXX Note that a build now requires Python exist before the build starts
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000234ASDLGEN= $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000235
236##########################################################################
237# Python
238PYTHON_OBJS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000239 Python/Python-ast.o \
240 Python/asdl.o \
241 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000242 Python/bltinmodule.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000243 Python/ceval.o \
244 Python/compile.o \
245 Python/codecs.o \
246 Python/errors.o \
247 Python/frozen.o \
248 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000249 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000250 Python/getargs.o \
251 Python/getcompiler.o \
252 Python/getcopyright.o \
253 Python/getmtime.o \
254 Python/getplatform.o \
255 Python/getversion.o \
256 Python/graminit.o \
257 Python/import.o \
258 Python/importdl.o \
259 Python/marshal.o \
260 Python/modsupport.o \
261 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000262 Python/mysnprintf.o \
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000263 Python/peephole.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000264 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000265 Python/pyfpe.o \
266 Python/pystate.o \
267 Python/pythonrun.o \
268 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000269 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000270 Python/sysmodule.o \
271 Python/traceback.o \
272 Python/getopt.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000273 Python/pystrtod.o \
Eric Smith8c663262007-08-25 02:26:07 +0000274 Python/formatter_unicode.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000275 Python/$(DYNLOADFILE) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000276 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000277 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000278
279
280##########################################################################
281# Objects
282OBJECT_OBJS= \
283 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000284 Objects/boolobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000285 Objects/bufferobject.o \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000286 Objects/bytesobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000287 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000288 Objects/classobject.o \
289 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000290 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000291 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000292 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000293 Objects/enumobject.o \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000294 Objects/exceptions.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000295 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000296 Objects/fileobject.o \
297 Objects/floatobject.o \
298 Objects/frameobject.o \
299 Objects/funcobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000300 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000301 Objects/listobject.o \
302 Objects/longobject.o \
303 Objects/dictobject.o \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000304 Objects/memoryobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000305 Objects/methodobject.o \
306 Objects/moduleobject.o \
307 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000308 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000309 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000310 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000311 Objects/sliceobject.o \
312 Objects/stringobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000313 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000314 Objects/tupleobject.o \
315 Objects/typeobject.o \
Fred Drake502ed822001-10-05 21:56:02 +0000316 Objects/weakrefobject.o \
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000317 $(UNICODE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000318
319
320##########################################################################
321# objects that get linked into the Python library
322LIBRARY_OBJS= \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000323 Modules/_typesmodule.o \
Neil Schemenauer18821822001-01-27 21:42:38 +0000324 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000325 $(PARSER_OBJS) \
326 $(OBJECT_OBJS) \
327 $(PYTHON_OBJS) \
328 $(MODULE_OBJS) \
329 $(SIGNAL_OBJS) \
330 $(MODOBJS)
331
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000332#########################################################################
333# Rules
334
335# Default target
Jack Jansen1999ef42001-12-06 21:47:20 +0000336all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000337
338# Build the interpreter
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000339$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000340 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000341 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000342 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000343
Jack Jansen1999ef42001-12-06 21:47:20 +0000344platform: $(BUILDPYTHON)
Guido van Rossum452bf512007-02-09 05:32:43 +0000345 $(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 +0000346
347
348# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000349sharedmods: $(BUILDPYTHON)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000350 @case $$MAKEFLAGS in \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000351 *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
352 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000353 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000354
355# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000356# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000357$(LIBRARY): $(LIBRARY_OBJS)
358 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000359 $(AR) cr $@ Modules/getbuildinfo.o
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000360 $(AR) cr $@ Modules/_typesmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000361 $(AR) cr $@ $(PARSER_OBJS)
362 $(AR) cr $@ $(OBJECT_OBJS)
363 $(AR) cr $@ $(PYTHON_OBJS)
364 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
365 $(AR) cr $@ $(MODOBJS)
366 $(RANLIB) $@
367
Martin v. Löwis1142de32002-03-29 16:28:31 +0000368libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000369 if test $(INSTSONAME) != $(LDLIBRARY); then \
Martin v. Löwis4d9559a2004-09-26 17:26:55 +0000370 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000371 $(LN) -f $(INSTSONAME) $@; \
372 else\
373 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
374 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000375
376libpython$(VERSION).sl: $(LIBRARY_OBJS)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000377 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000378
Jack Jansenea0c3822002-08-01 21:57:49 +0000379# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
380# minimal framework (not including the Lib directory and such) in the current
381# directory.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000382RESSRCDIR=$(srcdir)/Mac/Resources/framework
Jack Jansenea0c3822002-08-01 21:57:49 +0000383$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
384 $(LIBRARY) \
385 $(RESSRCDIR)/Info.plist \
386 $(RESSRCDIR)/version.plist \
387 $(RESSRCDIR)/English.lproj/InfoPlist.strings
Jack Jansen246debb2002-02-12 21:30:53 +0000388 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000389 if test "${UNIVERSALSDK}"; then \
390 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
391 -isysroot "${UNIVERSALSDK}" \
392 -all_load $(LIBRARY) -Wl,-single_module \
393 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
394 -compatibility_version $(VERSION) \
395 -current_version $(VERSION); \
396 else \
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000397 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000398 @LIBTOOL_CRUFT@ ;\
399 fi
Jack Jansenea0c3822002-08-01 21:57:49 +0000400 $(INSTALL) -d -m $(DIRMODE) \
401 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
402 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
403 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
404 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
405 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
406 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
407 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
Jack Jansenc736b8d2002-08-04 21:17:20 +0000408 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000409 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000410 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
411 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000412
Jason Tishler30765592003-09-04 11:04:06 +0000413# This rule builds the Cygwin Python DLL and import library if configured
414# for a shared core library; otherwise, this rule is a noop.
415$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
416 if test -n "$(DLLLIBRARY)"; then \
417 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
418 $(LIBS) $(MODLIBS) $(SYSLIBS); \
419 else true; \
420 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000421
422
423oldsharedmods: $(SHAREDMODS)
424
425
426Makefile Modules/config.c: Makefile.pre \
427 $(srcdir)/Modules/config.c.in \
428 $(MAKESETUP) \
429 Modules/Setup.config \
430 Modules/Setup \
431 Modules/Setup.local
432 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
433 -s Modules \
434 Modules/Setup.config \
435 Modules/Setup.local \
436 Modules/Setup
437 @mv config.c Modules
438 @echo "The Makefile was updated, you may need to re-run make."
439
440
441Modules/Setup: $(srcdir)/Modules/Setup.dist
442 @if test -f Modules/Setup; then \
443 echo "-----------------------------------------------"; \
444 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
445 echo "check to make sure you have all the updates you"; \
446 echo "need in your Modules/Setup file."; \
Guido van Rossumbb29b9c2001-09-29 00:42:19 +0000447 echo "Usually, copying Setup.dist to Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000448 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000449 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000450
451############################################################################
452# Special rules for object files
453
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000454Modules/getbuildinfo.o: $(PARSER_OBJS) \
455 $(OBJECT_OBJS) \
456 $(PYTHON_OBJS) \
457 $(MODULE_OBJS) \
458 $(SIGNAL_OBJS) \
459 $(MODOBJS) \
460 $(srcdir)/Modules/getbuildinfo.c
Thomas Wouters89f507f2006-12-13 04:49:30 +0000461 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000462
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000463Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000464 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
465 -DPREFIX='"$(prefix)"' \
466 -DEXEC_PREFIX='"$(exec_prefix)"' \
467 -DVERSION='"$(VERSION)"' \
468 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000469 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000470
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000471Modules/python.o: $(srcdir)/Modules/python.c
472 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000473
474
475$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000476 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000477
478$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000479 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000480
481Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000482 $(srcdir)/Include/token.h \
483 $(srcdir)/Include/grammar.h
484Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
485
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000486Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
487
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000488Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
489
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000490$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
491 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000492
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000493$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
494 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000495
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000496Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000497
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000498Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000499 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000500
501Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000502 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000503
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000504Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
505 $(srcdir)/Objects/unicodetype_db.h
506
Eric Smith8c663262007-08-25 02:26:07 +0000507Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
508 $(srcdir)/Objects/stringlib/string_format.h \
509 $(srcdir)/Objects/stringlib/unicodedefs.h \
510 $(srcdir)/Objects/stringlib/fastsearch.h \
511 $(srcdir)/Objects/stringlib/count.h \
512 $(srcdir)/Objects/stringlib/find.h \
513 $(srcdir)/Objects/stringlib/partition.h
514
515Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
516 $(srcdir)/Objects/stringlib/formatter.h
517
518
519
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000520############################################################################
521# Header files
522
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000523PYTHON_HEADERS= \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000524 Include/Python.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000525 Include/Python-ast.h \
526 Include/asdl.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000527 Include/abstract.h \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000528 Include/boolobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000529 Include/bufferobject.h \
Guido van Rossum4dfe8a12006-04-22 23:28:04 +0000530 Include/bytesobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000531 Include/ceval.h \
532 Include/classobject.h \
533 Include/cobject.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000534 Include/code.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000535 Include/codecs.h \
536 Include/compile.h \
537 Include/complexobject.h \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000538 Include/descrobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000539 Include/dictobject.h \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000540 Include/enumobject.h \
Martin v. Löwise440e472004-06-01 15:22:42 +0000541 Include/genobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000542 Include/fileobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000543 Include/floatobject.h \
Eric Smith8c663262007-08-25 02:26:07 +0000544 Include/formatter_unicode.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000545 Include/funcobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000546 Include/import.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000547 Include/intobject.h \
548 Include/intrcheck.h \
549 Include/iterobject.h \
550 Include/listobject.h \
551 Include/longobject.h \
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000552 Include/memoryobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000553 Include/methodobject.h \
554 Include/modsupport.h \
555 Include/moduleobject.h \
556 Include/object.h \
557 Include/objimpl.h \
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000558 Include/parsetok.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000559 Include/patchlevel.h \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000560 Include/pyarena.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000561 Include/pydebug.h \
562 Include/pyerrors.h \
563 Include/pyfpe.h \
564 Include/pymem.h \
565 Include/pyport.h \
566 Include/pystate.h \
567 Include/pythonrun.h \
568 Include/rangeobject.h \
Raymond Hettingera690a992003-11-16 16:17:49 +0000569 Include/setobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000570 Include/sliceobject.h \
571 Include/stringobject.h \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000572 Include/structseq.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000573 Include/structmember.h \
574 Include/symtable.h \
575 Include/sysmodule.h \
576 Include/traceback.h \
577 Include/tupleobject.h \
578 Include/unicodeobject.h \
Fred Drake502ed822001-10-05 21:56:02 +0000579 Include/weakrefobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000580 pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000581
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000582$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000583
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000584
585######################################################################
586
587# Test the interpreter (twice, once without .pyc files, once with)
Skip Montanaroc9803ab2003-05-06 16:17:27 +0000588# In the past, we've had problems where bugs in the marshalling or
589# elsewhere caused bytecode read from .pyc files to behave differently
590# than bytecode generated directly from a .py source file. Sometimes
591# the bytecode read from a .pyc file had the bug, somtimes the directly
592# generated bytecode. This is sometimes a very shy bug needing a lot of
593# sample data.
594
Neal Norwitzdf431652006-02-22 07:24:06 +0000595TESTOPTS= -l $(EXTRATESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000596TESTPROG= $(srcdir)/Lib/test/regrtest.py
Martin v. Löwis1142de32002-03-29 16:28:31 +0000597TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000598test: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000599 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000600 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
601 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000602
Skip Montanaro446ad712003-05-06 15:30:20 +0000603testall: all platform
604 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
605 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
606 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
607
Thomas Wouters477c8d52006-05-27 19:21:47 +0000608# Run the unitests for both architectures in a Universal build on OSX
609# Must be run on an Intel box.
610testuniversal: all platform
611 if [ `arch` != 'i386' ];then \
612 echo "This can only be used on OSX/i386" ;\
613 exit 1 ;\
614 fi
615 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
616 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
617 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
618 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
619
620
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000621# Like testall, but with a single pass only
622buildbottest: all platform
623 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
624
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000625QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
Fred Drake042f3132001-02-02 03:03:33 +0000626 test_unicodedata test_re test_sre test_select test_poll \
Guido van Rossum33d26892007-08-05 15:29:28 +0000627 test_struct test_zlib
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000628quicktest: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000629 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000630 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
631 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000632
Barry Warsaw42119252001-03-03 04:14:21 +0000633MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
634 test_longexp
635memtest: all platform
636 -rm -f $(srcdir)/Lib/test/*.py[co]
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000637 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
638 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
Barry Warsaw42119252001-03-03 04:14:21 +0000639
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000640# Install everything
Thomas Wouters477c8d52006-05-27 19:21:47 +0000641install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000642
643# Install almost everything without disturbing previous versions
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000644altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
645 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000646
647# Install shared libraries enabled by Setup
648DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
649
650oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
651 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000652 if test $$i != X; then \
653 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000654 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000655 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000656 done
657
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000658$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000659 @for i in $(DESTDIRS); \
660 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000661 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000662 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000663 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000664 else true; \
665 fi; \
666 done
667
668
669# Install the interpreter (by creating a hard link to python$(VERSION))
670bininstall: altbininstall
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000671 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
672 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000673 else true; \
674 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000675 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000676 (cd $(DESTDIR)$(BINDIR); $(LN) -sf python$(VERSION)-config python-config)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000677
678# Install the interpreter with $(VERSION) affixed
679# This goes into $(exec_prefix)
Jack Jansen1999ef42001-12-06 21:47:20 +0000680altbininstall: $(BUILDPYTHON)
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000681 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000682 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000683 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000684 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000685 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000686 else true; \
687 fi; \
688 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000689 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000690 if test -f libpython$(VERSION)$(SO); then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000691 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000692 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000693 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000694 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000695 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
696 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
697 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000698 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000699 else true; \
700 fi
701
702# Install the manual page
703maninstall:
704 @for i in $(MANDIR) $(MANDIR)/man1; \
705 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000706 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000707 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000708 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000709 else true; \
710 fi; \
711 done
712 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000713 $(DESTDIR)$(MANDIR)/man1/python.1
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000714
715# Install the library
716PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +0000717EXTRAPLATDIR= @EXTRAPLATDIR@
Jack Jansen7b59b422003-03-17 15:44:10 +0000718EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
Jack Jansen83f898c2002-12-30 22:23:40 +0000719MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000720XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
Jack Jansen83f898c2002-12-30 22:23:40 +0000721PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
Jack Jansend68d9292003-01-21 15:05:02 +0000722 plat-mac/lib-scriptpackages/_builtinSuites \
Jack Jansen83f898c2002-12-30 22:23:40 +0000723 plat-mac/lib-scriptpackages/CodeWarrior \
724 plat-mac/lib-scriptpackages/Explorer \
725 plat-mac/lib-scriptpackages/Finder \
726 plat-mac/lib-scriptpackages/Netscape \
727 plat-mac/lib-scriptpackages/StdSuites \
Jack Jansen1fff6972003-03-31 09:39:54 +0000728 plat-mac/lib-scriptpackages/SystemEvents \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000729 plat-mac/lib-scriptpackages/Terminal
Jack Jansen7b59b422003-03-17 15:44:10 +0000730PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000731LIBSUBDIRS= lib-tk site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000732 test/decimaltestdata \
Guido van Rossum1bc535d2007-05-15 18:46:22 +0000733 encodings hotshot \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000734 email email/mime email/test email/test/data \
735 sqlite3 sqlite3/test \
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000736 logging bsddb bsddb/test csv wsgiref \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000737 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000738 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000739 setuptools setuptools/command setuptools/tests setuptools.egg-info \
Fred Drakee612c8e2005-01-19 06:24:58 +0000740 curses $(MACHDEPS)
Jack Jansen1999ef42001-12-06 21:47:20 +0000741libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000742 @for i in $(SCRIPTDIR) $(LIBDEST); \
743 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000744 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000745 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000746 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000747 else true; \
748 fi; \
749 done
750 @for d in $(LIBSUBDIRS); \
751 do \
752 a=$(srcdir)/Lib/$$d; \
753 if test ! -d $$a; then continue; else true; fi; \
754 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000755 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000756 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000757 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000758 else true; \
759 fi; \
760 done
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000761 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000762 do \
763 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000764 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000765 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000766 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000767 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000768 echo $(INSTALL_DATA) $$i $(LIBDEST); \
769 fi; \
770 done
771 @for d in $(LIBSUBDIRS); \
772 do \
773 a=$(srcdir)/Lib/$$d; \
774 if test ! -d $$a; then continue; else true; fi; \
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000775 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000776 b=$(LIBDEST)/$$d; \
777 for i in $$a/*; \
778 do \
779 case $$i in \
780 *CVS) ;; \
781 *.py[co]) ;; \
782 *.orig) ;; \
783 *~) ;; \
784 *) \
785 if test -d $$i; then continue; fi; \
786 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000787 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000788 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000789 else \
790 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000791 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000792 fi;; \
793 esac; \
794 done; \
795 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000796 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
Guido van Rossum827bfd02007-07-15 13:12:42 +0000797 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000798 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000799 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000800 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Guido van Rossum827bfd02007-07-15 13:12:42 +0000801 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000802 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000803 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000804 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000805 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000806 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000807 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000808 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000809 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000810 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000811 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000812 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000813
814# Create the PLATDIR source directory, if one wasn't distributed..
815$(srcdir)/Lib/$(PLATDIR):
816 mkdir $(srcdir)/Lib/$(PLATDIR)
817 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
818 export PATH; PATH="`pwd`:$$PATH"; \
819 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000820 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000821 export EXE; EXE="$(BUILDEXE)"; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000822 cd $(srcdir)/Lib/$(PLATDIR); ./regen
823
824# Install the include files
825INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
826inclinstall:
827 @for i in $(INCLDIRSTOMAKE); \
828 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000829 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000830 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000831 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000832 else true; \
833 fi; \
834 done
835 @for i in $(srcdir)/Include/*.h; \
836 do \
837 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000838 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000839 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000840 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000841
842# Install the library and miscellaneous stuff needed for extending/embedding
843# This goes into $(exec_prefix)
844LIBPL= $(LIBP)/config
845libainstall: all
846 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
847 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000848 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000849 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000850 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000851 else true; \
852 fi; \
853 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000854 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000855 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000856 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000857 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000858 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000859 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
860 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000861 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000862 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000863 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000864 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000865 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000866 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000867 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000868 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
869 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
870 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
871 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
872 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
873 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
874 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000875 # Substitution happens here, as the completely-expanded BINDIR
876 # is not available in configure
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000877 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
878 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000879 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000880 @if [ -s Modules/python.exp -a \
881 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
882 echo; echo "Installing support files for building shared extension modules on AIX:"; \
883 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000884 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000885 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000886 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000887 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000888 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000889 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000890 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000891 echo "$(LIBPL)/ld_so_aix"; \
892 echo; echo "See Misc/AIX-NOTES for details."; \
893 else true; \
894 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000895
896# Install the dynamically loadable modules
897# This goes into $(exec_prefix)
898sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000899 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
900 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000901 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000902 --install-platlib=$(DESTSHARED) \
903 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000904
Jack Jansencb4321e2002-08-09 00:18:21 +0000905# Here are a couple of targets for MacOSX again, to install a full
906# framework-based Python. frameworkinstall installs everything, the
907# subtargets install specific parts. Much of the actual work is offloaded to
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000908# the Makefile in Mac
Jack Jansencb4321e2002-08-09 00:18:21 +0000909#
Thomas Wouters477c8d52006-05-27 19:21:47 +0000910#
911# This target is here for backward compatiblity, previous versions of Python
912# hadn't integrated framework installation in the normal install process.
913frameworkinstall: install
Guido van Rossumed2f7252002-08-09 19:18:25 +0000914
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000915# On install, we re-make the framework
916# structure in the install location, /Library/Frameworks/ or the argument to
917# --enable-framework. If --enable-framework has been specified then we have
918# automatically set prefix to the location deep down in the framework, so we
919# only have to cater for the structural bits of the framework.
920
Jack Jansencb4321e2002-08-09 00:18:21 +0000921frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
922
923frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +0000924 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000925 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +0000926 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000927 else true; \
928 fi
Jack Jansencb4321e2002-08-09 00:18:21 +0000929 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000930 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +0000931 echo "Creating directory $(DESTDIR)$$i"; \
932 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000933 else true; \
934 fi; \
935 done
Jack Jansen9592fe92003-05-25 22:01:32 +0000936 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
937 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
938 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000939 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
Jack Jansen9592fe92003-05-25 22:01:32 +0000940 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
941 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
942 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
943 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
944 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +0000945 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000946
Jack Jansencb4321e2002-08-09 00:18:21 +0000947# This installs Mac/Lib into the framework
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000948# Install a number of symlinks to keep software that expects a normal unix
949# install (which includes python-config) happy.
Jack Jansencb4321e2002-08-09 00:18:21 +0000950frameworkinstallmaclib:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000951 ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000952 cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +0000953
954# This installs the IDE, the Launcher and other apps into /Applications
955frameworkinstallapps:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000956 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
Jack Jansencb4321e2002-08-09 00:18:21 +0000957
958# This install the unix python and pythonw tools in /usr/local/bin
959frameworkinstallunixtools:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000960 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
961
962frameworkaltinstallunixtools:
963 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
Jack Jansen0b06be72002-06-21 14:48:38 +0000964
Jack Jansena1b77582003-06-19 22:35:20 +0000965# This installs the Demos and Tools into the applications directory.
966# It is not part of a normal frameworkinstall
967frameworkinstallextras:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000968 cd Mac && Make installextras DESTDIR="$(DESTDIR)"
Jack Jansena1b77582003-06-19 22:35:20 +0000969
Skip Montanarodecc6a42003-01-01 20:07:49 +0000970# This installs a few of the useful scripts in Tools/scripts
971scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +0000972 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +0000973 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
974 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000975 --install-scripts=$(BINDIR) \
976 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000977
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000978# Build the toplevel Makefile
979Makefile.pre: Makefile.pre.in config.status
980 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
981 $(MAKE) -f Makefile.pre Makefile
982
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000983# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000984config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000985 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000986
Jack Jansen1999ef42001-12-06 21:47:20 +0000987.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000988
989# Some make's put the object file in the current directory
990.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000991 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000992
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000993# Run reindent on the library
994reindent:
995 ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
996
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000997# Rerun configure with the same options as it was run last time,
998# provided the config.status script exists
999recheck:
1000 $(SHELL) config.status --recheck
1001 $(SHELL) config.status
1002
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00001003# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001004autoconf:
1005 (cd $(srcdir); autoconf)
1006 (cd $(srcdir); autoheader)
1007
1008# Create a tags file for vi
1009tags::
1010 cd $(srcdir); \
1011 ctags -w -t Include/*.h; \
1012 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1013 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +00001014 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001015
1016# Create a tags file for GNU Emacs
1017TAGS::
1018 cd $(srcdir); \
1019 etags Include/*.h; \
1020 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1021
1022# Sanitation targets -- clean leaves libraries, executables and tags
1023# files, which clobber removes those as well
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001024pycremoval:
1025 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001026
Guido van Rossum77b5e332007-08-29 23:24:02 +00001027rmtestturds:
1028 -rm -f *BAD *GOOD *SKIPPED
1029 -rm -rf OUT
1030 -rm -f *.TXT
1031 -rm -f *.txt
1032 -rm -f gb-18030-2000.xml
1033
Guido van Rossum8188e632007-08-29 23:48:29 +00001034docclean:
1035 -rm -rf Doc/build
1036 -rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
1037
Guido van Rossum5420bc32007-08-29 23:35:30 +00001038clean: pycremoval
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +00001039 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001040 find . -name '*.s[ol]' -exec rm -f {} ';'
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001041 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1042 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001043
Guido van Rossum8188e632007-08-29 23:48:29 +00001044clobber: clean rmtestturds docclean
Jack Jansen1999ef42001-12-06 21:47:20 +00001045 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +00001046 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +00001047 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +00001048 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +00001049 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001050
1051# Make things extra clean, before making a distribution:
1052# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001053# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001054distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001055 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001056 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001057 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1058 -o -name '[@,#]*' -o -name '*.old' \
1059 -o -name '*.orig' -o -name '*.rej' \
1060 -o -name '*.bak' ')' \
1061 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001062
1063# Check for smelly exported symbols (not starting with Py/_Py)
1064smelly: all
1065 nm -p $(LIBRARY) | \
1066 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1067
1068# Find files with funny names
1069funny:
Guido van Rossum77b5e332007-08-29 23:24:02 +00001070 find $(DISTDIRS) \
1071 -name .svn -prune \
1072 -o -type d \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001073 -o -name '*.[chs]' \
1074 -o -name '*.py' \
1075 -o -name '*.doc' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001076 -o -name '*.dat' \
1077 -o -name '*.el' \
1078 -o -name '*.fd' \
1079 -o -name '*.in' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001080 -o -name '*.gif' \
1081 -o -name '*.txt' \
1082 -o -name '*.xml' \
1083 -o -name '*.xbm' \
1084 -o -name '*.xpm' \
1085 -o -name '*.uue' \
1086 -o -name '*.decTest' \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001087 -o -name '*,[vpt]' \
1088 -o -name 'Setup' \
1089 -o -name 'Setup.*' \
Guido van Rossum77b5e332007-08-29 23:24:02 +00001090 -o -name regen \
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001091 -o -name README \
1092 -o -name Makefile \
1093 -o -name ChangeLog \
1094 -o -name Repository \
1095 -o -name Root \
1096 -o -name Entries \
1097 -o -name Tag \
1098 -o -name tags \
1099 -o -name TAGS \
1100 -o -name .cvsignore \
1101 -o -name MANIFEST \
1102 -o -print
1103
Guido van Rossum9454ad72001-08-18 21:08:22 +00001104# Dependencies
1105
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001106Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001107
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001108# Declare targets that aren't real files
1109.PHONY: all sharedmods oldsharedmods test quicktest memtest
1110.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1111.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1112.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1113.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001114.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1115.PHONY: smelly funny
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001116
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001117# IF YOU PUT ANYTHING HERE IT WILL GO AWAY