blob: 304c0d9d7b7f5e82248c27929293171453198263 [file] [log] [blame]
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001########################################################################
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00002# Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3# The Netherlands.
4#
Guido van Rossum433c8ad1994-08-01 12:07:07 +00005# All Rights Reserved
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00006#
7# Permission to use, copy, modify, and distribute this software and its
8# documentation for any purpose and without fee is hereby granted,
Guido van Rossum433c8ad1994-08-01 12:07:07 +00009# provided that the above copyright notice appear in all copies and that
Guido van Rossumaf5b83e1995-01-04 19:02:35 +000010# both that copyright notice and this permission notice appear in
Guido van Rossum433c8ad1994-08-01 12:07:07 +000011# supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000012# Centrum or CWI or Corporation for National Research Initiatives or
13# CNRI not be used in advertising or publicity pertaining to
14# distribution of the software without specific, written prior
15# permission.
16#
17# While CWI is the initial source for this software, a modified version
18# is made available by the Corporation for National Research Initiatives
19# (CNRI) at the Internet address ftp://ftp.python.org.
20#
21# STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22# REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23# MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24# CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26# PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28# PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum433c8ad1994-08-01 12:07:07 +000029########################################################################
Guido van Rossum627b2d71993-12-24 10:39:16 +000030
Guido van Rossum586480b1996-05-28 22:49:08 +000031# Top-level Makefile for Python
32#
33# As distributed, this file is called Makefile.in; it is processed
34# into the real Makefile by running the script ./configure, which
35# replaces things like @spam@ with values appropriate for your system.
36# This means that if you edit Makefile, your changes get lost the next
37# time you run the configure script. Ideally, you can do:
38#
39# ./configure
40# make
41# make test
42# make install
43#
44# The top-level Makefile invokes make recursively in a number of
45# subdirectories (see the SUBDIRS variable below). If you want to,
46# you can invoke make in individual subdirectories. However, the
47# sub-Makefiles are also generated by configure, and the quickest way
48# to make sure they are up to date is by running make (or "make
49# Makefiles") at the top level. This is particularly important for
50# Modules/Makefile, which has to be regenerated every time you edit
51# Modules/Setup. The python executable is built in the Modules
52# directory and then moved to the top-level directory. The recursive
53# makes pass three options to subordinate makes: OPT (a quick way to
Guido van Rossumb535da31996-07-30 18:04:22 +000054# change some compiler options; it usually defaults to -O), prefix and
Guido van Rossum586480b1996-05-28 22:49:08 +000055# exec_prefix (the installation paths).
56#
Guido van Rossumb535da31996-07-30 18:04:22 +000057# If you have a previous version of Python installed that you don't
58# want to overwrite, you can use "make altinstall" instead of "make
59# install". This changes the install procedure so it installs the
60# Python binary as "python<version>". The libraries and include files
61# are always installed in a subdirectory called "python<version>".
62# "make altinstall" does not install the manual page. If you want to
63# make this installation the "official" installation but want to keep
64# the old binary around "just in case", rename the installed python
65# binary to "python<oldversion>" before running "make install".
66# (This only works between different versions, e.g. 1.3 and 1.4 --
67# different betas of the same version will overwrite each other in
68# installation unless you override the VERSION Make variable.)
69#
Guido van Rossum64b65671996-07-30 20:42:12 +000070# In fact, "make install" or "make bininstall" installs the binary
71# as python<version> and makes a hard link to python, so when
72# installing a new version in the future, nothing of the current
73# version will be lost (except for the man page).
74#
Guido van Rossum586480b1996-05-28 22:49:08 +000075# If recursive makes fail, try invoking make as "make MAKE=make".
76#
77# See also the section "Build instructions" in the README file.
Guido van Rossum627b2d71993-12-24 10:39:16 +000078
Guido van Rossum433c8ad1994-08-01 12:07:07 +000079# Substitutions by configure
Guido van Rossum914fbd91997-07-19 19:38:43 +000080VERSION= @VERSION@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000081srcdir= @srcdir@
82VPATH= @srcdir@
Guido van Rossum1eec5281997-07-25 22:34:08 +000083CC= @CC@
Guido van Rossum4a91df41994-10-10 17:58:27 +000084RANLIB= @RANLIB@
Guido van Rossum1eec5281997-07-25 22:34:08 +000085DEFS= @DEFS@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000086
Guido van Rossumac405f61994-09-12 10:56:06 +000087# Machine-dependent subdirectories
88MACHDEP= @MACHDEP@
89
Guido van Rossum433c8ad1994-08-01 12:07:07 +000090# Install prefix for architecture-independent files
Guido van Rossum76be6ed1995-01-02 18:33:54 +000091prefix= @prefix@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000092
93# Install prefix for architecture-dependent files
Guido van Rossum76be6ed1995-01-02 18:33:54 +000094exec_prefix= @exec_prefix@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000095
Guido van Rossum90412791994-10-20 22:04:30 +000096# Expanded directories
Guido van Rossumb535da31996-07-30 18:04:22 +000097BINDIR= $(exec_prefix)/bin
98LIBDIR= $(exec_prefix)/lib
99MANDIR= $(prefix)/man
100INCLUDEDIR= $(prefix)/include
101SCRIPTDIR= $(prefix)/lib
Guido van Rossum90412791994-10-20 22:04:30 +0000102
Guido van Rossumbed23fe1996-07-31 17:30:37 +0000103# Detailed destination directories
104BINLIBDEST= $(LIBDIR)/python$(VERSION)
105LIBDEST= $(SCRIPTDIR)/python$(VERSION)
106INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
107LIBP= $(LIBDIR)/python$(VERSION)
108
Guido van Rossumac405f61994-09-12 10:56:06 +0000109# Symbols used for using shared libraries
110SO= @SO@
111LDSHARED= @LDSHARED@
112CCSHARED= @CCSHARED@
113LINKFORSHARED= @LINKFORSHARED@
Guido van Rossumbed23fe1996-07-31 17:30:37 +0000114DESTSHARED= $(BINLIBDEST)/sharedmodules
Guido van Rossumac405f61994-09-12 10:56:06 +0000115
Guido van Rossum586480b1996-05-28 22:49:08 +0000116# Shell used by make (some versions default to the login shell, which is bad)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000117SHELL= /bin/sh
118
Guido van Rossum586480b1996-05-28 22:49:08 +0000119# Portable install script (configure doesn't always guess right)
120INSTALL= @srcdir@/install-sh -c
Guido van Rossumb535da31996-07-30 18:04:22 +0000121INSTALL_PROGRAM=${INSTALL} -m 755
Guido van Rossum586480b1996-05-28 22:49:08 +0000122INSTALL_DATA= ${INSTALL} -m 644
123
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000124# --with-PACKAGE options for configure script
125# e.g. --with-readline --with-svr5 --with-solaris --with-thread
126# (see README for an explanation)
127WITH=
128
129# Compiler options passed to subordinate makes
Guido van Rossum4e8af441994-08-19 15:33:54 +0000130OPT= @OPT@
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000131
132# Subdirectories where to run make recursively
133SUBDIRS= Parser Objects Python Modules
134
135# Other subdirectories
Guido van Rossumb535da31996-07-30 18:04:22 +0000136SUBDIRSTOO= Include Lib Doc Misc Demo Grammar
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000137
138# Files and directories to be distributed
139CONFIGFILES= configure configure.in acconfig.h config.h.in Makefile.in
140DISTFILES= README ChangeLog $(CONFIGFILES)
141DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
142DIST= $(DISTFILES) $(DISTDIRS)
143
Guido van Rossum1eec5281997-07-25 22:34:08 +0000144# Compilation flags for getbuildinfo.c only
145CFLAGS= $(OPT) -I. $(DEFS)
146
Guido van Rossum914fbd91997-07-19 19:38:43 +0000147LIBRARY= libpython$(VERSION).a
148
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000149# Default target
Guido van Rossum506ef9e1997-08-18 14:22:24 +0000150all: $(LIBRARY) python sharedmods
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000151
152# Build the interpreter
Guido van Rossum1eec5281997-07-25 22:34:08 +0000153python: $(LIBRARY) buildno
154 expr `cat buildno` + 1 >@buildno
155 mv @buildno buildno
156 $(CC) -c $(CFLAGS) -DBUILD=`cat buildno` \
157 $(srcdir)/Modules/getbuildinfo.c
158 $(AR) cr $(LIBRARY) getbuildinfo.o
159 $(RANLIB) $(LIBRARY)
Guido van Rossum914fbd91997-07-19 19:38:43 +0000160 cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
161 prefix="$(prefix)" exec_prefix="$(exec_prefix)" \
162 LIBRARY=../$(LIBRARY) link
163
Guido van Rossum1eec5281997-07-25 22:34:08 +0000164buildno:
165 echo 0 >buildno
166
Guido van Rossum506ef9e1997-08-18 14:22:24 +0000167# Build the shared modules
168sharedmods: python
169 cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
170 prefix="$(prefix)" exec_prefix="$(exec_prefix)" \
171 sharedmods
172
Guido van Rossum914fbd91997-07-19 19:38:43 +0000173# Build the library
174$(LIBRARY): $(SUBDIRS)
175 if test ! -f $(LIBRARY); \
176 then for i in $(SUBDIRS); do rm -f $$i/add2lib; done; true; \
177 else true; fi
178 for i in $(SUBDIRS); do \
179 (cd $$i; $(MAKE) VERSION="$(VERSION)" add2lib); done
Guido van Rossum4246edd1997-04-23 15:14:24 +0000180
181$(SUBDIRS): Makefiles
182
183Parser:
184 cd Parser ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
185 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
186
187Python:
188 cd Python ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
189 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
190
191Objects:
192 cd Objects ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
193 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
194
Guido van Rossum914fbd91997-07-19 19:38:43 +0000195Modules: Parser Python Objects
Guido van Rossum4246edd1997-04-23 15:14:24 +0000196 cd Modules ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
197 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
Guido van Rossum810a92f1993-12-28 19:39:56 +0000198
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000199# Test the interpreter (twice, once without .pyc files, once with)
Barry Warsaw9121ab91997-01-02 20:01:44 +0000200TESTOPTS=
Guido van Rossum042a0511997-01-03 15:54:36 +0000201TESTPROG= $(srcdir)/Lib/test/regrtest.py
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000202test: python
203 -rm -f $(srcdir)/Lib/test/*.pyc
Guido van Rossum36bab7d1997-06-02 23:15:09 +0000204 -PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
Guido van Rossumfde51691997-05-22 20:11:55 +0000205 PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
Guido van Rossum810a92f1993-12-28 19:39:56 +0000206
Guido van Rossum586480b1996-05-28 22:49:08 +0000207# Install everything
Guido van Rossum6d472981996-07-30 21:41:56 +0000208install: altinstall bininstall maninstall
Guido van Rossum586480b1996-05-28 22:49:08 +0000209
Guido van Rossum64b65671996-07-30 20:42:12 +0000210# Install almost everything without disturbing previous versions
Guido van Rossumb535da31996-07-30 18:04:22 +0000211altinstall: altbininstall libinstall inclinstall libainstall sharedinstall
Guido van Rossum3912fd81996-07-24 02:35:43 +0000212
Guido van Rossum64b65671996-07-30 20:42:12 +0000213# Install the interpreter (by creating a hard link to python$(VERSION))
214bininstall: altbininstall
215 -if test -f $(BINDIR)/python; \
216 then rm -f $(BINDIR)/python; \
217 else true; \
218 fi
219 (cd $(BINDIR); ln python$(VERSION) python)
Guido van Rossum810a92f1993-12-28 19:39:56 +0000220
Guido van Rossum3912fd81996-07-24 02:35:43 +0000221# Install the interpreter with $(VERSION) affixed
Guido van Rossum64b65671996-07-30 20:42:12 +0000222# This goes into $(exec_prefix)
Guido van Rossum3912fd81996-07-24 02:35:43 +0000223altbininstall: python
224 @for i in $(BINDIR); \
225 do \
226 if test ! -d $$i; then \
227 echo "Creating directory $$i"; \
228 mkdir $$i; \
229 chmod 755 $$i; \
230 else true; \
231 fi; \
232 done
233 $(INSTALL_PROGRAM) python $(BINDIR)/python$(VERSION)
234
Guido van Rossum586480b1996-05-28 22:49:08 +0000235# Install the manual page
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000236maninstall:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000237 @for i in $(MANDIR) $(MANDIR)/man1; \
Guido van Rossum586480b1996-05-28 22:49:08 +0000238 do \
239 if test ! -d $$i; then \
240 echo "Creating directory $$i"; \
241 mkdir $$i; \
242 chmod 755 $$i; \
243 else true; \
244 fi; \
245 done
Guido van Rossum6403d281995-01-20 16:51:32 +0000246 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Guido van Rossum90412791994-10-20 22:04:30 +0000247 $(MANDIR)/man1/python.1
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000248
Guido van Rossumb535da31996-07-30 18:04:22 +0000249# Install the library
Guido van Rossumb8dccd21996-07-30 21:55:17 +0000250MACHDEPS= $(MACHDEP)
251LIBSUBDIRS= stdwin tkinter test $(MACHDEPS)
Guido van Rossum64b65671996-07-30 20:42:12 +0000252libinstall: python $(srcdir)/Lib/$(MACHDEP)
Guido van Rossumb535da31996-07-30 18:04:22 +0000253 @for i in $(SCRIPTDIR) $(LIBDEST); \
254 do \
255 if test ! -d $$i; then \
256 echo "Creating directory $$i"; \
257 mkdir $$i; \
258 chmod 755 $$i; \
259 else true; \
260 fi; \
261 done
262 @for d in $(LIBSUBDIRS); \
263 do \
264 a=$(srcdir)/Lib/$$d; \
265 if test ! -d $$a; then continue; else true; fi; \
266 b=$(LIBDEST)/$$d; \
267 if test ! -d $$b; then \
268 echo "Creating directory $$b"; \
269 mkdir $$b; \
270 chmod 755 $$b; \
271 else true; \
272 fi; \
273 done
274 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
275 do \
276 if test -x $$i; then \
277 $(INSTALL_PROGRAM) $$i $(LIBDEST); \
278 echo $(INSTALL_PROGRAM) $$i $(LIBDEST); \
279 else \
280 $(INSTALL_DATA) $$i $(LIBDEST); \
281 echo $(INSTALL_DATA) $$i $(LIBDEST); \
282 fi; \
283 done
284 @for d in $(LIBSUBDIRS); \
285 do \
286 a=$(srcdir)/Lib/$$d; \
287 if test ! -d $$a; then continue; else true; fi; \
288 b=$(LIBDEST)/$$d; \
289 for i in $$a/*; \
290 do \
291 case $$i in \
292 *CVS) ;; \
293 *.pyc) ;; \
294 *~) ;; \
295 *) \
296 if test -x $$i; then \
297 echo $(INSTALL_PROGRAM) $$i $$b; \
298 $(INSTALL_PROGRAM) $$i $$b; \
299 else \
300 echo $(INSTALL_DATA) $$i $$b; \
301 $(INSTALL_DATA) $$i $$b; \
302 fi;; \
303 esac; \
304 done; \
305 done
306 PYTHONPATH=$(LIBDEST) \
307 ./python $(LIBDEST)/compileall.py $(LIBDEST)
Fred Drakedb5a41f1997-03-13 14:14:29 +0000308 PYTHONPATH=$(LIBDEST) \
309 ./python -O $(LIBDEST)/compileall.py $(LIBDEST)
Guido van Rossumb535da31996-07-30 18:04:22 +0000310
Guido van Rossum64b65671996-07-30 20:42:12 +0000311# Create the MACHDEP source directory, if one wasn't distributed..
Guido van Rossumcda848f1996-08-21 20:18:29 +0000312$(srcdir)/Lib/$(MACHDEP):
Guido van Rossum64b65671996-07-30 20:42:12 +0000313 mkdir $(srcdir)/Lib/$(MACHDEP)
314 cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen
Guido van Rossum04831d11996-09-10 18:21:32 +0000315 export PATH; PATH="`pwd`:$$PATH"; \
Guido van Rossumf71bd681996-08-28 19:23:01 +0000316 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Guido van Rossumfc8ebb11996-08-19 21:51:24 +0000317 cd $(srcdir)/Lib/$(MACHDEP); ./regen
Guido van Rossum64b65671996-07-30 20:42:12 +0000318
Guido van Rossum586480b1996-05-28 22:49:08 +0000319# Install the include files
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000320inclinstall:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000321 @for i in $(INCLUDEDIR) $(INCLUDEPY); \
Guido van Rossum586480b1996-05-28 22:49:08 +0000322 do \
323 if test ! -d $$i; then \
324 echo "Creating directory $$i"; \
325 mkdir $$i; \
326 chmod 755 $$i; \
327 else true; \
328 fi; \
329 done
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000330 @for i in $(srcdir)/Include/*.h; \
331 do \
332 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
333 $(INSTALL_DATA) $$i $(INCLUDEPY); \
334 done
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000335
Guido van Rossum914fbd91997-07-19 19:38:43 +0000336# Install the library and miscellaneous stuff needed for extending/embedding
Guido van Rossum64b65671996-07-30 20:42:12 +0000337# This goes into $(exec_prefix)
Guido van Rossumb535da31996-07-30 18:04:22 +0000338LIBPL= $(LIBP)/config
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000339libainstall: all
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000340 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
Guido van Rossum586480b1996-05-28 22:49:08 +0000341 do \
342 if test ! -d $$i; then \
343 echo "Creating directory $$i"; \
344 mkdir $$i; \
345 chmod 755 $$i; \
346 else true; \
347 fi; \
348 done
Guido van Rossum914fbd91997-07-19 19:38:43 +0000349 $(INSTALL_DATA) $(LIBRARY) $(LIBPL)/$(LIBRARY)
350 $(RANLIB) $(LIBPL)/$(LIBRARY)
Guido van Rossum6403d281995-01-20 16:51:32 +0000351 $(INSTALL_DATA) Modules/config.c $(LIBPL)/config.c
Guido van Rossum895e1051997-07-19 22:53:39 +0000352 $(INSTALL_DATA) Modules/python.o $(LIBPL)/python.o
Guido van Rossum6403d281995-01-20 16:51:32 +0000353 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(LIBPL)/config.c.in
354 $(INSTALL_DATA) Modules/Makefile $(LIBPL)/Makefile
355 $(INSTALL_DATA) Modules/Setup $(LIBPL)/Setup
Guido van Rossumded2e201997-07-19 22:00:45 +0000356 $(INSTALL_DATA) Modules/Setup.local $(LIBPL)/Setup.local
Guido van Rossum70a86591996-07-21 02:46:47 +0000357 $(INSTALL_PROGRAM) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup
Guido van Rossum6403d281995-01-20 16:51:32 +0000358 $(INSTALL_DATA) config.h $(LIBPL)/config.h
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000359
Guido van Rossum586480b1996-05-28 22:49:08 +0000360# Install the dynamically loadable modules
Guido van Rossum64b65671996-07-30 20:42:12 +0000361# This goes into $(exec_prefix)
Guido van Rossumac405f61994-09-12 10:56:06 +0000362sharedinstall:
363 cd Modules; $(MAKE) \
364 OPT="$(OPT)" \
Guido van Rossumb535da31996-07-30 18:04:22 +0000365 VERSION="$(VERSION)" \
Guido van Rossumac405f61994-09-12 10:56:06 +0000366 SO="$(SO)" \
367 LDSHARED="$(LDSHARED)" \
368 CCSHARED="$(CCSHARED)" \
369 LINKFORSHARED="$(LINKFORSHARED)" \
370 DESTSHARED="$(DESTSHARED)" \
Guido van Rossum3912fd81996-07-24 02:35:43 +0000371 prefix="$(prefix)" \
372 exec_prefix="$(exec_prefix)" \
Guido van Rossumac405f61994-09-12 10:56:06 +0000373 sharedinstall
374
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000375# Build the sub-Makefiles
Guido van Rossumd09119e1995-01-17 16:45:08 +0000376Makefiles: config.status Modules/Makefile.pre
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000377 (cd Modules; $(MAKE) -f Makefile.pre Makefile)
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000378 @for i in . $(SUBDIRS); do \
379 (echo making Makefile in subdirectory $$i; cd $$i; \
380 $(MAKE) Makefile); \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000381 done
382
Guido van Rossumd09119e1995-01-17 16:45:08 +0000383# Build the intermediate Makefile in Modules
384Modules/Makefile.pre: config.status
385 $(SHELL) config.status
386
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000387# Build the toplevel Makefile
388Makefile: Makefile.in config.status
389 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
390
391# Run the configure script. If config.status already exists,
392# call it with the --recheck argument, which reruns configure with the
393# same options as it was run last time; otherwise run the configure
394# script with options taken from the $(WITH) variable
395config.status: $(srcdir)/configure
396 if test -f config.status; \
397 then $(SHELL) config.status --recheck; \
Guido van Rossumfb00a991995-01-12 12:26:50 +0000398 $(SHELL) config.status; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000399 else $(SHELL) $(srcdir)/configure $(WITH); \
400 fi
401
402.PRECIOUS: config.status python
403
404# Rerun configure with the same options as it was run last time,
405# provided the config.status script exists
406recheck:
407 $(SHELL) config.status --recheck
Guido van Rossumaf5b83e1995-01-04 19:02:35 +0000408 $(SHELL) config.status
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000409
410# Rebuild the configure script from configure.in; also rebuild config.h.in
411autoconf:
Guido van Rossum00682671996-06-28 20:15:41 +0000412 (cd $(srcdir); autoconf)
413 (cd $(srcdir); autoheader)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000414
415# Create a tags file for vi
416tags::
417 ctags -w -t Include/*.h
418 for i in $(SUBDIRS); do ctags -w -t -a $$i/*.[ch]; done
419 sort tags -o tags
420
421# Create a tags file for GNU Emacs
422TAGS::
Guido van Rossum5552eb71994-08-05 15:51:00 +0000423 etags Include/*.h
424 for i in $(SUBDIRS); do etags -a $$i/*.[ch]; done
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000425
426# Add dependencies to sub-Makefiles
Guido van Rossum810a92f1993-12-28 19:39:56 +0000427depend:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000428 @for i in $(SUBDIRS); do \
429 (echo making depend in subdirectory $$i; cd $$i; \
430 $(MAKE) depend); \
Guido van Rossum810a92f1993-12-28 19:39:56 +0000431 done
Guido van Rossum627b2d71993-12-24 10:39:16 +0000432
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000433# Sanitation targets -- clean leaves libraries, executables and tags
434# files, which clobber removes those as well
435
Guido van Rossum627b2d71993-12-24 10:39:16 +0000436localclean:
437 -rm -f core *~ [@,#]* *.old *.orig *.rej
Guido van Rossum627b2d71993-12-24 10:39:16 +0000438
439clean: localclean
440 -for i in $(SUBDIRS); do \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000441 (echo making clean in subdirectory $$i; cd $$i; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000442 if test -f Makefile; \
443 then $(MAKE) clean; \
444 else $(MAKE) -f Makefile.*in clean; \
445 fi); \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000446 done
447
Guido van Rossum810a92f1993-12-28 19:39:56 +0000448localclobber: localclean
Guido van Rossum914fbd91997-07-19 19:38:43 +0000449 -rm -f tags TAGS python $(LIBRARY)
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000450 -rm -f config.log config.cache config.h
Guido van Rossum810a92f1993-12-28 19:39:56 +0000451
452clobber: localclobber
Guido van Rossum627b2d71993-12-24 10:39:16 +0000453 -for i in $(SUBDIRS); do \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000454 (echo clobbering subdirectory $$i; cd $$i; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000455 if test -f Makefile; \
456 then $(MAKE) clobber; \
Guido van Rossum7b4d4601995-03-22 12:27:16 +0000457 else $(MAKE) -f $(srcdir)/Makefile.in clobber; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000458 fi); \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000459 done
460
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000461# Make things extra clean, before making a distribution:
462# remove all generated files, even Makefile[.pre]
Guido van Rossum627b2d71993-12-24 10:39:16 +0000463distclean: clobber
Guido van Rossum7b4d4601995-03-22 12:27:16 +0000464 -$(MAKE) -f $(srcdir)/Makefile.in \
465 SUBDIRS="$(SUBDIRSTOO)" clobber
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000466 -rm -f config.status config.log config.cache config.h Makefile
Guido van Rossume7abf4e1995-09-18 22:12:20 +0000467 -rm -f Modules/Makefile
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000468 -for i in $(SUBDIRS) $(SUBDIRSTOO); do \
469 for f in $$i/*.in; do \
470 f=`basename "$$f" .in`; \
471 if test "$$f" != "*"; then \
472 echo rm -f "$$i/$$f"; \
473 rm -f "$$i/$$f"; \
474 fi; \
475 done; \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000476 done
Guido van Rossum627b2d71993-12-24 10:39:16 +0000477
Guido van Rossum586480b1996-05-28 22:49:08 +0000478# Check for smelly exported symbols (not starting with Py/_Py)
479smelly: all
480 for i in $(SUBDIRS); do \
481 echo --- $$i ---; \
482 nm -p $$i/lib$$i.a | \
483 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
484 done
485
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000486# Find files with funny names
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000487funny:
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000488 find $(DISTDIRS) -type d \
489 -o -name '*.[chs]' \
490 -o -name '*.py' \
491 -o -name '*.doc' \
492 -o -name '*.sty' \
493 -o -name '*.bib' \
494 -o -name '*.dat' \
495 -o -name '*.el' \
496 -o -name '*.fd' \
497 -o -name '*.in' \
498 -o -name '*.tex' \
499 -o -name '*,[vpt]' \
500 -o -name 'Setup' \
501 -o -name 'Setup.*' \
502 -o -name README \
503 -o -name Makefile \
504 -o -name ChangeLog \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000505 -o -name Repository \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000506 -o -name Root \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000507 -o -name Entries \
508 -o -name Tag \
509 -o -name tags \
510 -o -name TAGS \
511 -o -name .cvsignore \
512 -o -name MANIFEST \
513 -o -print