blob: 91d4849c07df286c41dcdd835f3ff3990f652699 [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
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
111PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
112PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
113PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
114PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
Jack Jansen6b08a402004-06-03 12:41:45 +0000115# Deployment target selected during configure, to be checked
116# by distutils
117CONFIGURE_MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000118# Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
119OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000120
Martin v. Löwis1142de32002-03-29 16:28:31 +0000121# Environment to run shared python without installed libraries
122RUNSHARED= @RUNSHARED@
123
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000124# Modes for directories, executables and data files created by the
125# install process. Default to user-only-writable for all file types.
126DIRMODE= 755
127EXEMODE= 755
128FILEMODE= 644
129
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000130# configure script arguments
131CONFIG_ARGS= @CONFIG_ARGS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000132
133
134# Subdirectories with code
135SRCDIRS= @SRCDIRS@
136
137# Other subdirectories
138SUBDIRSTOO= Include Lib Misc Demo
139
140# Files and directories to be distributed
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000141CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000142DISTFILES= README ChangeLog $(CONFIGFILES)
143DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
144DIST= $(DISTFILES) $(DISTDIRS)
145
146
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000147LIBRARY= @LIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000148LDLIBRARY= @LDLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000149BLDLIBRARY= @BLDLIBRARY@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000150DLLLIBRARY= @DLLLIBRARY@
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000151LDLIBRARYDIR= @LDLIBRARYDIR@
Martin v. Löwis1142de32002-03-29 16:28:31 +0000152INSTSONAME= @INSTSONAME@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000153
154
155LIBS= @LIBS@
156LIBM= @LIBM@
157LIBC= @LIBC@
158SYSLIBS= $(LIBM) $(LIBC)
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000159SHLIBS= @SHLIBS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000160
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000161THREADOBJ= @THREADOBJ@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000162DLINCLDIR= @DLINCLDIR@
163DYNLOADFILE= @DYNLOADFILE@
Jack Jansenc49e5b72001-06-19 15:00:23 +0000164MACHDEP_OBJS= @MACHDEP_OBJS@
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000165UNICODE_OBJS= @UNICODE_OBJS@
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000166
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000167PYTHON= python$(EXE)
Jack Jansen1999ef42001-12-06 21:47:20 +0000168BUILDPYTHON= python$(BUILDEXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000169
170# === Definitions added by makesetup ===
171
172
173##########################################################################
174# Modules
175MODULE_OBJS= \
176 Modules/config.o \
177 Modules/getpath.o \
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +0000178 Modules/main.o \
179 Modules/gcmodule.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000180
181# Used of signalmodule.o is not available
182SIGNAL_OBJS= @SIGNAL_OBJS@
183
184
185##########################################################################
186# Grammar
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000187GRAMMAR_H= $(srcdir)/Include/graminit.h
188GRAMMAR_C= $(srcdir)/Python/graminit.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000189GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
190
191
192##########################################################################
193# Parser
Neil Schemenauercf9926c2001-02-27 18:50:56 +0000194PGEN= Parser/pgen$(EXE)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000195
196POBJS= \
197 Parser/acceler.o \
198 Parser/grammar1.o \
199 Parser/listnode.o \
200 Parser/node.o \
201 Parser/parser.o \
202 Parser/parsetok.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000203 Parser/bitset.o \
Guido van Rossumd3ab37f2003-04-17 14:55:42 +0000204 Parser/metagrammar.o \
205 Parser/firstsets.o \
206 Parser/grammar.o \
207 Parser/pgen.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000208
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000209PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000210
211PGOBJS= \
Neil Schemenauerfd1030e2002-04-22 03:05:25 +0000212 Objects/obmalloc.o \
Guido van Rossumf2272522001-12-04 03:54:08 +0000213 Python/mysnprintf.o \
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000214 Parser/tokenizer_pgen.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000215 Parser/printgrammar.o \
216 Parser/pgenmain.o
217
218PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
219
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000220##########################################################################
221# AST
Martin v. Löwis75801492006-04-14 15:02:32 +0000222AST_H_DIR= $(srcdir)/Include
223AST_H= $(AST_H_DIR)/Python-ast.h
224AST_C_DIR= $(srcdir)/Python
225AST_C= $(AST_C_DIR)/Python-ast.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000226AST_ASDL= $(srcdir)/Parser/Python.asdl
227
228ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
229# XXX Note that a build now requires Python exist before the build starts
Martin v. Löwis75801492006-04-14 15:02:32 +0000230ASDLGEN= $(srcdir)/Parser/asdl_c.py
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000231
232##########################################################################
233# Python
234PYTHON_OBJS= \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000235 Python/Python-ast.o \
236 Python/asdl.o \
237 Python/ast.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000238 Python/bltinmodule.o \
239 Python/exceptions.o \
240 Python/ceval.o \
241 Python/compile.o \
242 Python/codecs.o \
243 Python/errors.o \
244 Python/frozen.o \
245 Python/frozenmain.o \
Jeremy Hylton4db62b12001-02-27 19:07:02 +0000246 Python/future.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000247 Python/getargs.o \
248 Python/getcompiler.o \
249 Python/getcopyright.o \
250 Python/getmtime.o \
251 Python/getplatform.o \
252 Python/getversion.o \
253 Python/graminit.o \
254 Python/import.o \
255 Python/importdl.o \
256 Python/marshal.o \
257 Python/modsupport.o \
258 Python/mystrtoul.o \
Marc-André Lemburge5006eb2001-07-31 13:24:44 +0000259 Python/mysnprintf.o \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000260 Python/pyarena.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000261 Python/pyfpe.o \
262 Python/pystate.o \
263 Python/pythonrun.o \
264 Python/structmember.o \
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +0000265 Python/symtable.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000266 Python/sysmodule.o \
267 Python/traceback.o \
268 Python/getopt.o \
Martin v. Löwis737ea822004-06-08 18:52:54 +0000269 Python/pystrtod.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000270 Python/$(DYNLOADFILE) \
Jack Jansenc49e5b72001-06-19 15:00:23 +0000271 $(MACHDEP_OBJS) \
Martin v. Löwis2d7e2642002-04-05 16:50:53 +0000272 $(THREADOBJ)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000273
274
275##########################################################################
276# Objects
277OBJECT_OBJS= \
278 Objects/abstract.o \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000279 Objects/boolobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000280 Objects/bufferobject.o \
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +0000281 Objects/cellobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000282 Objects/classobject.o \
283 Objects/cobject.o \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000284 Objects/codeobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000285 Objects/complexobject.o \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000286 Objects/descrobject.o \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000287 Objects/enumobject.o \
Martin v. Löwise440e472004-06-01 15:22:42 +0000288 Objects/genobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000289 Objects/fileobject.o \
290 Objects/floatobject.o \
291 Objects/frameobject.o \
292 Objects/funcobject.o \
293 Objects/intobject.o \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000294 Objects/iterobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000295 Objects/listobject.o \
296 Objects/longobject.o \
297 Objects/dictobject.o \
298 Objects/methodobject.o \
299 Objects/moduleobject.o \
300 Objects/object.o \
Tim Peters1221c0a2002-03-23 00:20:15 +0000301 Objects/obmalloc.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000302 Objects/rangeobject.o \
Raymond Hettingera690a992003-11-16 16:17:49 +0000303 Objects/setobject.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000304 Objects/sliceobject.o \
305 Objects/stringobject.o \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000306 Objects/structseq.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000307 Objects/tupleobject.o \
308 Objects/typeobject.o \
Fred Drake502ed822001-10-05 21:56:02 +0000309 Objects/weakrefobject.o \
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000310 $(UNICODE_OBJS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000311
312
313##########################################################################
314# objects that get linked into the Python library
315LIBRARY_OBJS= \
Neil Schemenauer18821822001-01-27 21:42:38 +0000316 Modules/getbuildinfo.o \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000317 $(PARSER_OBJS) \
318 $(OBJECT_OBJS) \
319 $(PYTHON_OBJS) \
320 $(MODULE_OBJS) \
321 $(SIGNAL_OBJS) \
322 $(MODOBJS)
323
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000324#########################################################################
325# Rules
326
327# Default target
Jack Jansen1999ef42001-12-06 21:47:20 +0000328all: $(BUILDPYTHON) oldsharedmods sharedmods
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000329
330# Build the interpreter
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000331$(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
Fred Drakea1a84e72001-03-06 05:52:16 +0000332 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000333 Modules/python.o \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000334 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000335
Jack Jansen1999ef42001-12-06 21:47:20 +0000336platform: $(BUILDPYTHON)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000337 $(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 +0000338
339
340# Build the shared modules
Jack Jansen1999ef42001-12-06 21:47:20 +0000341sharedmods: $(BUILDPYTHON)
Guido van Rossum1140cb22001-09-12 18:59:25 +0000342 case $$MAKEFLAGS in \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000343 *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
344 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
Guido van Rossum1140cb22001-09-12 18:59:25 +0000345 esac
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000346
347# Build static library
Guido van Rossum4e6a7a62001-04-09 22:23:22 +0000348# avoid long command lines, same as LIBRARY_OBJS
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000349$(LIBRARY): $(LIBRARY_OBJS)
350 -rm -f $@
Neil Schemenauer18821822001-01-27 21:42:38 +0000351 $(AR) cr $@ Modules/getbuildinfo.o
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000352 $(AR) cr $@ $(PARSER_OBJS)
353 $(AR) cr $@ $(OBJECT_OBJS)
354 $(AR) cr $@ $(PYTHON_OBJS)
355 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
356 $(AR) cr $@ $(MODOBJS)
357 $(RANLIB) $@
358
Martin v. Löwis1142de32002-03-29 16:28:31 +0000359libpython$(VERSION).so: $(LIBRARY_OBJS)
Martin v. Löwisbc122622003-06-14 13:11:24 +0000360 if test $(INSTSONAME) != $(LDLIBRARY); then \
Martin v. Löwis4d9559a2004-09-26 17:26:55 +0000361 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
Martin v. Löwis45ec95d2003-03-30 15:37:33 +0000362 $(LN) -f $(INSTSONAME) $@; \
363 else\
364 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
365 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +0000366
367libpython$(VERSION).sl: $(LIBRARY_OBJS)
368 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000369
Jack Jansenea0c3822002-08-01 21:57:49 +0000370# This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
371# minimal framework (not including the Lib directory and such) in the current
372# directory.
373RESSRCDIR=$(srcdir)/Mac/OSXResources/framework
374$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
375 $(LIBRARY) \
376 $(RESSRCDIR)/Info.plist \
377 $(RESSRCDIR)/version.plist \
378 $(RESSRCDIR)/English.lproj/InfoPlist.strings
Jack Jansen246debb2002-02-12 21:30:53 +0000379 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000380 libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000381 @LIBTOOL_CRUFT@
Jack Jansenea0c3822002-08-01 21:57:49 +0000382 $(INSTALL) -d -m $(DIRMODE) \
383 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
384 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
385 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
386 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
387 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
388 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
389 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
Jack Jansenc736b8d2002-08-04 21:17:20 +0000390 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
Jack Jansenb36687a2004-07-16 08:43:47 +0000391 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
Jack Jansenc736b8d2002-08-04 21:17:20 +0000392 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
393 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000394
Jason Tishler30765592003-09-04 11:04:06 +0000395# This rule builds the Cygwin Python DLL and import library if configured
396# for a shared core library; otherwise, this rule is a noop.
397$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
398 if test -n "$(DLLLIBRARY)"; then \
399 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
400 $(LIBS) $(MODLIBS) $(SYSLIBS); \
401 else true; \
402 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000403
404
405oldsharedmods: $(SHAREDMODS)
406
407
408Makefile Modules/config.c: Makefile.pre \
409 $(srcdir)/Modules/config.c.in \
410 $(MAKESETUP) \
411 Modules/Setup.config \
412 Modules/Setup \
413 Modules/Setup.local
414 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
415 -s Modules \
416 Modules/Setup.config \
417 Modules/Setup.local \
418 Modules/Setup
419 @mv config.c Modules
420 @echo "The Makefile was updated, you may need to re-run make."
421
422
423Modules/Setup: $(srcdir)/Modules/Setup.dist
424 @if test -f Modules/Setup; then \
425 echo "-----------------------------------------------"; \
426 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
427 echo "check to make sure you have all the updates you"; \
428 echo "need in your Modules/Setup file."; \
Guido van Rossumbb29b9c2001-09-29 00:42:19 +0000429 echo "Usually, copying Setup.dist to Setup will work."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000430 echo "-----------------------------------------------"; \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000431 fi
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000432
433############################################################################
434# Special rules for object files
435
Martin v. Löwisdea59e52006-01-05 10:00:36 +0000436Modules/getbuildinfo.o: $(PARSER_OBJS) \
437 $(OBJECT_OBJS) \
438 $(PYTHON_OBJS) \
439 $(MODULE_OBJS) \
440 $(SIGNAL_OBJS) \
441 $(MODOBJS) \
442 $(srcdir)/Modules/getbuildinfo.c
Martin v. Löwisc5bf5a02006-01-05 10:33:59 +0000443 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LANG=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
Andrew M. Kuchling03184e22001-01-26 22:52:45 +0000444
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000445Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000446 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
447 -DPREFIX='"$(prefix)"' \
448 -DEXEC_PREFIX='"$(exec_prefix)"' \
449 -DVERSION='"$(VERSION)"' \
450 -DVPATH='"$(VPATH)"' \
Sjoerd Mullender30be8702001-01-29 09:39:14 +0000451 -o $@ $(srcdir)/Modules/getpath.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000452
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000453Modules/python.o: $(srcdir)/Modules/python.c
454 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000455
456
457$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
Neil Schemenauer7cd124c2001-02-27 02:19:16 +0000458 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000459
460$(PGEN): $(PGENOBJS)
Martin v. Löwis6702d8a2003-07-13 10:10:42 +0000461 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000462
463Parser/grammar.o: $(srcdir)/Parser/grammar.c \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000464 $(srcdir)/Include/token.h \
465 $(srcdir)/Include/grammar.h
466Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
467
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000468Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
469
Martin v. Löwis75801492006-04-14 15:02:32 +0000470$(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
471 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000472
Martin v. Löwis75801492006-04-14 15:02:32 +0000473$(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
474 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
475
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000476Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
Neil Schemenauer40417742001-02-27 02:45:36 +0000477
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000478Python/getplatform.o: $(srcdir)/Python/getplatform.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000479 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000480
481Python/importdl.o: $(srcdir)/Python/importdl.c
Mark Hammond8235ea12002-07-19 06:55:41 +0000482 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000483
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000484Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
485 $(srcdir)/Objects/unicodetype_db.h
486
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000487############################################################################
488# Header files
489
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000490PYTHON_HEADERS= \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000491 Include/Python.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000492 Include/Python-ast.h \
493 Include/asdl.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000494 Include/abstract.h \
Guido van Rossum77f6a652002-04-03 22:41:51 +0000495 Include/boolobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000496 Include/bufferobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000497 Include/ceval.h \
498 Include/classobject.h \
499 Include/cobject.h \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000500 Include/code.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000501 Include/codecs.h \
502 Include/compile.h \
503 Include/complexobject.h \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000504 Include/descrobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000505 Include/dictobject.h \
Guido van Rossum7dab2422002-04-26 19:40:56 +0000506 Include/enumobject.h \
Martin v. Löwise440e472004-06-01 15:22:42 +0000507 Include/genobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000508 Include/fileobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000509 Include/floatobject.h \
510 Include/funcobject.h \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000511 Include/import.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000512 Include/intobject.h \
513 Include/intrcheck.h \
514 Include/iterobject.h \
515 Include/listobject.h \
516 Include/longobject.h \
517 Include/methodobject.h \
518 Include/modsupport.h \
519 Include/moduleobject.h \
520 Include/object.h \
521 Include/objimpl.h \
522 Include/patchlevel.h \
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000523 Include/pyarena.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000524 Include/pydebug.h \
525 Include/pyerrors.h \
526 Include/pyfpe.h \
527 Include/pymem.h \
528 Include/pyport.h \
529 Include/pystate.h \
530 Include/pythonrun.h \
531 Include/rangeobject.h \
Raymond Hettingera690a992003-11-16 16:17:49 +0000532 Include/setobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000533 Include/sliceobject.h \
534 Include/stringobject.h \
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000535 Include/structseq.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000536 Include/structmember.h \
537 Include/symtable.h \
538 Include/sysmodule.h \
539 Include/traceback.h \
540 Include/tupleobject.h \
541 Include/unicodeobject.h \
Fred Drake502ed822001-10-05 21:56:02 +0000542 Include/weakrefobject.h \
Guido van Rossum427ce802001-09-18 02:40:21 +0000543 pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000544
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000545$(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
Neil Schemenauerf65e5002001-01-25 20:07:50 +0000546
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000547
548######################################################################
549
550# Test the interpreter (twice, once without .pyc files, once with)
Skip Montanaroc9803ab2003-05-06 16:17:27 +0000551# In the past, we've had problems where bugs in the marshalling or
552# elsewhere caused bytecode read from .pyc files to behave differently
553# than bytecode generated directly from a .py source file. Sometimes
554# the bytecode read from a .pyc file had the bug, somtimes the directly
555# generated bytecode. This is sometimes a very shy bug needing a lot of
556# sample data.
557
Neal Norwitzdf431652006-02-22 07:24:06 +0000558TESTOPTS= -l $(EXTRATESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000559TESTPROG= $(srcdir)/Lib/test/regrtest.py
Martin v. Löwis1142de32002-03-29 16:28:31 +0000560TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000561test: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000562 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000563 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
564 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000565
Skip Montanaro446ad712003-05-06 15:30:20 +0000566testall: all platform
567 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
568 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
569 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
570
Martin v. Löwisbfa8bd72006-03-13 10:59:32 +0000571# Like testall, but with a single pass only
572buildbottest: all platform
573 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
574
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000575QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
Fred Drake042f3132001-02-02 03:03:33 +0000576 test_unicodedata test_re test_sre test_select test_poll \
Guido van Rossumed2f7252002-08-09 19:18:25 +0000577 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000578quicktest: all platform
Guido van Rossumcd81ea12001-03-01 00:36:53 +0000579 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000580 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
581 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
Jeremy Hylton2a850d92001-02-01 19:51:28 +0000582
Barry Warsaw42119252001-03-03 04:14:21 +0000583MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
584 test_longexp
585memtest: all platform
586 -rm -f $(srcdir)/Lib/test/*.py[co]
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000587 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
588 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
Barry Warsaw42119252001-03-03 04:14:21 +0000589
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000590# Install everything
Guido van Rossumb1ab4d92003-06-13 20:35:41 +0000591install: altinstall bininstall maninstall
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000592
593# Install almost everything without disturbing previous versions
Andrew M. Kuchlingbddd8782001-01-29 20:18:59 +0000594altinstall: altbininstall libinstall inclinstall libainstall \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000595 sharedinstall oldsharedinstall
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000596
597# Install shared libraries enabled by Setup
598DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
599
600oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
601 @for i in X $(SHAREDMODS); do \
Neil Schemenauerac959772001-02-06 14:50:27 +0000602 if test $$i != X; then \
603 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000604 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
Neil Schemenauerac959772001-02-06 14:50:27 +0000605 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000606 done
607
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000608$(DESTSHARED):
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000609 @for i in $(DESTDIRS); \
610 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000611 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000612 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000613 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000614 else true; \
615 fi; \
616 done
617
618
619# Install the interpreter (by creating a hard link to python$(VERSION))
620bininstall: altbininstall
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000621 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
622 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000623 else true; \
624 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000625 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000626
627# Install the interpreter with $(VERSION) affixed
628# This goes into $(exec_prefix)
Jack Jansen1999ef42001-12-06 21:47:20 +0000629altbininstall: $(BUILDPYTHON)
Jack Jansen3a451b12002-08-06 13:40:31 +0000630 @if test "$(PYTHONFRAMEWORKDIR)" != no-framework; then \
Jack Jansen9592fe92003-05-25 22:01:32 +0000631 if test ! -f $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current/Resources/Info.plist; then \
Jack Jansen3a451b12002-08-06 13:40:31 +0000632 echo 'Framework build: use "make frameworkinstall" in stead of "make install"'; \
633 exit 1; \
634 fi; \
635 fi
Martin v. Löwisd8a20d22002-05-08 08:59:59 +0000636 @for i in $(BINDIR) $(LIBDIR); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000637 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000638 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000639 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000640 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000641 else true; \
642 fi; \
643 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000644 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000645 if test -f libpython$(VERSION)$(SO); then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000646 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000647 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000648 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000649 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
Martin v. Löwise3be8602003-11-18 19:54:20 +0000650 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
651 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
652 fi \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000653 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000654 else true; \
655 fi
656
657# Install the manual page
658maninstall:
659 @for i in $(MANDIR) $(MANDIR)/man1; \
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 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000668 $(DESTDIR)$(MANDIR)/man1/python.1
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000669
670# Install the library
671PLATDIR= plat-$(MACHDEP)
Jack Jansen83f898c2002-12-30 22:23:40 +0000672EXTRAPLATDIR= @EXTRAPLATDIR@
Jack Jansen7b59b422003-03-17 15:44:10 +0000673EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
Jack Jansen83f898c2002-12-30 22:23:40 +0000674MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
Fredrik Lundhd3968332005-12-14 17:36:36 +0000675XMLLIBSUBDIRS= xmlcore xmlcore/dom xmlcore/etree xmlcore/parsers xmlcore/sax
Jack Jansen83f898c2002-12-30 22:23:40 +0000676PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
Jack Jansend68d9292003-01-21 15:05:02 +0000677 plat-mac/lib-scriptpackages/_builtinSuites \
Jack Jansen83f898c2002-12-30 22:23:40 +0000678 plat-mac/lib-scriptpackages/CodeWarrior \
679 plat-mac/lib-scriptpackages/Explorer \
680 plat-mac/lib-scriptpackages/Finder \
681 plat-mac/lib-scriptpackages/Netscape \
682 plat-mac/lib-scriptpackages/StdSuites \
Jack Jansen1fff6972003-03-31 09:39:54 +0000683 plat-mac/lib-scriptpackages/SystemEvents \
Jack Jansen83f898c2002-12-30 22:23:40 +0000684 plat-mac/lib-scriptpackages/Terminal
Jack Jansen7b59b422003-03-17 15:44:10 +0000685PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
Barry Warsawf4c20d32001-12-03 18:51:41 +0000686LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \
Anthony Baxter1e2bd5b2004-07-12 09:25:18 +0000687 test/decimaltestdata \
Barry Warsawd6316a92006-03-22 14:57:54 +0000688 encodings compiler hotshot \
689 email email/mime email/test email/test/data \
Skip Montanaro353aa872006-04-03 16:40:10 +0000690 sqlite3 sqlite3/test \
Armin Rigoefb6e752006-03-28 20:30:45 +0000691 logging bsddb bsddb/test csv \
Thomas Hellerfc9fc472006-04-03 20:10:50 +0000692 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
Fred Drakee612c8e2005-01-19 06:24:58 +0000693 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
694 curses $(MACHDEPS)
Jack Jansen1999ef42001-12-06 21:47:20 +0000695libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000696 @for i in $(SCRIPTDIR) $(LIBDEST); \
697 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000698 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000699 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000700 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000701 else true; \
702 fi; \
703 done
704 @for d in $(LIBSUBDIRS); \
705 do \
706 a=$(srcdir)/Lib/$$d; \
707 if test ! -d $$a; then continue; else true; fi; \
708 b=$(LIBDEST)/$$d; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000709 if test ! -d $(DESTDIR)$$b; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000710 echo "Creating directory $$b"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000711 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000712 else true; \
713 fi; \
714 done
715 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
716 do \
717 if test -x $$i; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000718 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000719 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000720 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000721 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000722 echo $(INSTALL_DATA) $$i $(LIBDEST); \
723 fi; \
724 done
725 @for d in $(LIBSUBDIRS); \
726 do \
727 a=$(srcdir)/Lib/$$d; \
728 if test ! -d $$a; then continue; else true; fi; \
Hye-Shik Changdfbd34c2006-03-23 12:12:44 +0000729 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000730 b=$(LIBDEST)/$$d; \
731 for i in $$a/*; \
732 do \
733 case $$i in \
734 *CVS) ;; \
735 *.py[co]) ;; \
736 *.orig) ;; \
737 *~) ;; \
738 *) \
739 if test -d $$i; then continue; fi; \
740 if test -x $$i; then \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000741 echo $(INSTALL_SCRIPT) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000742 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000743 else \
744 echo $(INSTALL_DATA) $$i $$b; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000745 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000746 fi;; \
747 esac; \
748 done; \
749 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000750 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
751 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
752 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000753 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000754 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000755 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
756 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000757 -d $(LIBDEST) -f \
Neal Norwitz892a33f2005-10-04 04:32:42 +0000758 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000759 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000760 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000761 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000762 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Hye-Shik Chang0e5e6c72004-03-18 07:51:27 +0000763 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000764 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
Martin v. Löwis975302d2003-06-21 13:26:28 +0000765 -d $(LIBDEST)/site-packages -f \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000766 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000767
768# Create the PLATDIR source directory, if one wasn't distributed..
769$(srcdir)/Lib/$(PLATDIR):
770 mkdir $(srcdir)/Lib/$(PLATDIR)
771 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
772 export PATH; PATH="`pwd`:$$PATH"; \
773 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000774 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
Jack Jansen0d153662001-12-19 09:24:40 +0000775 export EXE; EXE="$(BUILDEXE)"; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000776 cd $(srcdir)/Lib/$(PLATDIR); ./regen
777
778# Install the include files
779INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
780inclinstall:
781 @for i in $(INCLDIRSTOMAKE); \
782 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000783 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000784 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000785 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000786 else true; \
787 fi; \
788 done
789 @for i in $(srcdir)/Include/*.h; \
790 do \
791 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000792 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000793 done
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000794 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000795
796# Install the library and miscellaneous stuff needed for extending/embedding
797# This goes into $(exec_prefix)
798LIBPL= $(LIBP)/config
799libainstall: all
800 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
801 do \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000802 if test ! -d $(DESTDIR)$$i; then \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000803 echo "Creating directory $$i"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000804 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000805 else true; \
806 fi; \
807 done
Martin v. Löwis1142de32002-03-29 16:28:31 +0000808 @if test -d $(LIBRARY); then :; else \
Jack Jansen127e56e2001-09-11 14:41:54 +0000809 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000810 if test "$(SO)" = .dll; then \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000811 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000812 else \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000813 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
814 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
Jason Tishlerc0f1e772002-07-29 16:18:23 +0000815 fi; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000816 else \
Martin v. Löwis1142de32002-03-29 16:28:31 +0000817 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000818 fi; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000819 fi
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000820 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
Martin v. Löwis0f48d982006-04-14 14:34:26 +0000821 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000822 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
823 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
824 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
825 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
826 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
827 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
828 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
Martin v. Löwisc90b17e2006-04-15 08:13:05 +0000829 # Substitution happens here, as the completely-expanded BINDIR
830 # is not available in configure
831 sed -e "s,@BINDIR@,$(BINDIR)," < $(srcdir)/Misc/python-config.in >python-config
832 $(INSTALL_SCRIPT) python-config $(BINDIR)/python-config
833 rm python-config
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000834 @if [ -s Modules/python.exp -a \
835 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
836 echo; echo "Installing support files for building shared extension modules on AIX:"; \
837 $(INSTALL_DATA) Modules/python.exp \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000838 $(DESTDIR)$(LIBPL)/python.exp; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000839 echo; echo "$(LIBPL)/python.exp"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000840 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000841 $(DESTDIR)$(LIBPL)/makexp_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000842 echo "$(LIBPL)/makexp_aix"; \
Neil Schemenauer3f5cc202001-04-10 23:03:35 +0000843 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000844 $(DESTDIR)$(LIBPL)/ld_so_aix; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000845 echo "$(LIBPL)/ld_so_aix"; \
846 echo; echo "See Misc/AIX-NOTES for details."; \
847 else true; \
848 fi
849 @case "$(MACHDEP)" in beos*) \
850 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000851 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000852 echo; echo "$(LIBPL)/README"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000853 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
Neil Schemenauer75e33892001-02-16 03:36:53 +0000854 echo "$(LIBPL)/ar_beos"; \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000855 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
Neil Schemenauer75e33892001-02-16 03:36:53 +0000856 echo "$(LIBPL)/ld_so_beos"; \
857 echo; echo "See Misc/BeOS-NOTES for details."; \
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000858 ;; \
859 esac
860
861# Install the dynamically loadable modules
862# This goes into $(exec_prefix)
863sharedinstall:
Martin v. Löwis1142de32002-03-29 16:28:31 +0000864 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
865 --prefix=$(prefix) \
Guido van Rossumb33e7892001-10-17 06:26:53 +0000866 --install-scripts=$(BINDIR) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000867 --install-platlib=$(DESTSHARED) \
868 --root=/$(DESTDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000869
Jack Jansencb4321e2002-08-09 00:18:21 +0000870# Here are a couple of targets for MacOSX again, to install a full
871# framework-based Python. frameworkinstall installs everything, the
872# subtargets install specific parts. Much of the actual work is offloaded to
873# the Makefile in Mac/OSX
874#
875frameworkinstall: frameworkinstallframework \
876 frameworkinstallapps frameworkinstallunixtools
Guido van Rossumed2f7252002-08-09 19:18:25 +0000877
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000878# On install, we re-make the framework
879# structure in the install location, /Library/Frameworks/ or the argument to
880# --enable-framework. If --enable-framework has been specified then we have
881# automatically set prefix to the location deep down in the framework, so we
882# only have to cater for the structural bits of the framework.
883
Jack Jansencb4321e2002-08-09 00:18:21 +0000884frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
885
886frameworkinstallstructure: $(LDLIBRARY)
Jack Jansen127e56e2001-09-11 14:41:54 +0000887 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000888 echo Not configured with --enable-framework; \
Jack Jansen127e56e2001-09-11 14:41:54 +0000889 exit 1; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000890 else true; \
891 fi
Jack Jansencb4321e2002-08-09 00:18:21 +0000892 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000893 if test ! -d $(DESTDIR)$$i; then \
Jack Jansen9592fe92003-05-25 22:01:32 +0000894 echo "Creating directory $(DESTDIR)$$i"; \
895 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000896 else true; \
897 fi; \
898 done
Jack Jansen9592fe92003-05-25 22:01:32 +0000899 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
900 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
901 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000902 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
Jack Jansen9592fe92003-05-25 22:01:32 +0000903 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
904 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
905 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
906 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
907 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
Jack Jansen4735b232003-06-20 20:36:53 +0000908 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000909
Jack Jansencb4321e2002-08-09 00:18:21 +0000910# This installs Mac/Lib into the framework
911frameworkinstallmaclib:
912 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \
Jack Jansen66b84832003-07-04 12:14:39 +0000913 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
Jack Jansen9592fe92003-05-25 22:01:32 +0000914 srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST) \
915 DESTDIR=$(DESTDIR)
Jack Jansencb4321e2002-08-09 00:18:21 +0000916
917# This installs the IDE, the Launcher and other apps into /Applications
918frameworkinstallapps:
919 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \
Jack Jansen66b84832003-07-04 12:14:39 +0000920 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
Jack Jansen48e02e42003-12-07 21:52:07 +0000921 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) prefix=$(prefix)
Jack Jansencb4321e2002-08-09 00:18:21 +0000922
923# This install the unix python and pythonw tools in /usr/local/bin
924frameworkinstallunixtools:
925 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \
Jack Jansena226b572003-05-09 15:08:39 +0000926 DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
Jack Jansen48e02e42003-12-07 21:52:07 +0000927 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR) prefix=$(prefix)
Jack Jansen0b06be72002-06-21 14:48:38 +0000928
Jack Jansena1b77582003-06-19 22:35:20 +0000929# This installs the Demos and Tools into the applications directory.
930# It is not part of a normal frameworkinstall
931frameworkinstallextras:
932 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installextras \
Jack Jansen66b84832003-07-04 12:14:39 +0000933 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
Jack Jansena1b77582003-06-19 22:35:20 +0000934 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
935
Skip Montanarodecc6a42003-01-01 20:07:49 +0000936# This installs a few of the useful scripts in Tools/scripts
937scriptsinstall:
Martin v. Löwis01f43112003-01-03 20:39:29 +0000938 SRCDIR=$(srcdir) $(RUNSHARED) \
Skip Montanarodecc6a42003-01-01 20:07:49 +0000939 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
940 --prefix=$(prefix) \
Martin v. Löwis3b8ee082003-05-11 20:25:35 +0000941 --install-scripts=$(BINDIR) \
942 --root=/$(DESTDIR)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000943
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000944# Build the toplevel Makefile
945Makefile.pre: Makefile.pre.in config.status
946 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
947 $(MAKE) -f Makefile.pre Makefile
948
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000949# Run the configure script.
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000950config.status: $(srcdir)/configure
Neil Schemenauer64b1b682001-03-22 00:32:32 +0000951 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000952
Jack Jansen1999ef42001-12-06 21:47:20 +0000953.PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000954
955# Some make's put the object file in the current directory
956.c.o:
Neil Schemenauer7ac954b2001-01-26 16:14:41 +0000957 $(CC) -c $(PY_CFLAGS) -o $@ $<
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000958
959# Rerun configure with the same options as it was run last time,
960# provided the config.status script exists
961recheck:
962 $(SHELL) config.status --recheck
963 $(SHELL) config.status
964
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000965# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000966autoconf:
967 (cd $(srcdir); autoconf)
968 (cd $(srcdir); autoheader)
969
970# Create a tags file for vi
971tags::
972 cd $(srcdir); \
973 ctags -w -t Include/*.h; \
974 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
975 done; \
Guido van Rossumc9489662002-02-28 19:26:08 +0000976 sort -o tags tags
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000977
978# Create a tags file for GNU Emacs
979TAGS::
980 cd $(srcdir); \
981 etags Include/*.h; \
982 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
983
984# Sanitation targets -- clean leaves libraries, executables and tags
985# files, which clobber removes those as well
986
987clean:
Neil Schemenauerc5cfcb42001-02-19 04:35:11 +0000988 find . -name '*.o' -exec rm -f {} ';'
Guido van Rossumcd0ed972001-04-14 17:57:07 +0000989 find . -name '*.s[ol]' -exec rm -f {} ';'
Neil Schemenauere0d43572001-02-03 17:16:29 +0000990 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
Thomas Heller922ff4a2006-03-16 07:33:49 +0000991 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
992 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
Neil Schemenauer85515ad2001-01-24 17:11:43 +0000993
994clobber: clean
Jack Jansen1999ef42001-12-06 21:47:20 +0000995 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
Guido van Rossumcd0ed972001-04-14 17:57:07 +0000996 tags TAGS \
Guido van Rossum7cb32ae2001-08-17 15:32:31 +0000997 config.cache config.log pyconfig.h Modules/config.c
Guido van Rossum1d88c592001-06-06 17:51:57 +0000998 -rm -rf build platform
Jack Jansenc6096892003-02-27 23:19:46 +0000999 -rm -rf $(PYTHONFRAMEWORKDIR)
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001000
1001# Make things extra clean, before making a distribution:
1002# remove all generated files, even Makefile[.pre]
Neal Norwitz1a196b52006-01-03 01:38:53 +00001003# Keep configure and Python-ast.[ch], it's possible they can't be generated
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001004distclean: clobber
Martin v. Löwisdea59e52006-01-05 10:00:36 +00001005 -rm -f core Makefile Makefile.pre config.status \
Neil Schemenauer7ac954b2001-01-26 16:14:41 +00001006 Modules/Setup Modules/Setup.local Modules/Setup.config
Neil Schemenauere0d43572001-02-03 17:16:29 +00001007 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1008 -o -name '[@,#]*' -o -name '*.old' \
1009 -o -name '*.orig' -o -name '*.rej' \
1010 -o -name '*.bak' ')' \
1011 -exec rm -f {} ';'
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001012
1013# Check for smelly exported symbols (not starting with Py/_Py)
1014smelly: all
1015 nm -p $(LIBRARY) | \
1016 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1017
1018# Find files with funny names
1019funny:
1020 find $(DISTDIRS) -type d \
1021 -o -name '*.[chs]' \
1022 -o -name '*.py' \
1023 -o -name '*.doc' \
1024 -o -name '*.sty' \
1025 -o -name '*.bib' \
1026 -o -name '*.dat' \
1027 -o -name '*.el' \
1028 -o -name '*.fd' \
1029 -o -name '*.in' \
1030 -o -name '*.tex' \
1031 -o -name '*,[vpt]' \
1032 -o -name 'Setup' \
1033 -o -name 'Setup.*' \
1034 -o -name README \
1035 -o -name Makefile \
1036 -o -name ChangeLog \
1037 -o -name Repository \
1038 -o -name Root \
1039 -o -name Entries \
1040 -o -name Tag \
1041 -o -name tags \
1042 -o -name TAGS \
1043 -o -name .cvsignore \
1044 -o -name MANIFEST \
1045 -o -print
1046
Guido van Rossum9454ad72001-08-18 21:08:22 +00001047# Dependencies
1048
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00001049Python/thread.o: @THREADHEADERS@
Guido van Rossum9454ad72001-08-18 21:08:22 +00001050
Guido van Rossumd4f7da32002-10-10 15:04:04 +00001051# Declare targets that aren't real files
1052.PHONY: all sharedmods oldsharedmods test quicktest memtest
1053.PHONY: install altinstall oldsharedinstall bininstall altbininstall
1054.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1055.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1056.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1057.PHONY: recheck autoconf clean clobber distclean smelly funny
1058
Neil Schemenauer85515ad2001-01-24 17:11:43 +00001059# IF YOU PUT ANYTHING HERE IT WILL GO AWAY