blob: a093aaa73eed20d4182c888469c72d6ef176381b [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 Rossum4a91df41994-10-10 17:58:27 +000083RANLIB= @RANLIB@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000084
Guido van Rossumac405f61994-09-12 10:56:06 +000085# Machine-dependent subdirectories
86MACHDEP= @MACHDEP@
87
Guido van Rossum433c8ad1994-08-01 12:07:07 +000088# Install prefix for architecture-independent files
Guido van Rossum76be6ed1995-01-02 18:33:54 +000089prefix= @prefix@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000090
91# Install prefix for architecture-dependent files
Guido van Rossum76be6ed1995-01-02 18:33:54 +000092exec_prefix= @exec_prefix@
Guido van Rossum433c8ad1994-08-01 12:07:07 +000093
Guido van Rossum90412791994-10-20 22:04:30 +000094# Expanded directories
Guido van Rossumb535da31996-07-30 18:04:22 +000095BINDIR= $(exec_prefix)/bin
96LIBDIR= $(exec_prefix)/lib
97MANDIR= $(prefix)/man
98INCLUDEDIR= $(prefix)/include
99SCRIPTDIR= $(prefix)/lib
Guido van Rossum90412791994-10-20 22:04:30 +0000100
Guido van Rossumbed23fe1996-07-31 17:30:37 +0000101# Detailed destination directories
102BINLIBDEST= $(LIBDIR)/python$(VERSION)
103LIBDEST= $(SCRIPTDIR)/python$(VERSION)
104INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
105LIBP= $(LIBDIR)/python$(VERSION)
106
Guido van Rossumac405f61994-09-12 10:56:06 +0000107# Symbols used for using shared libraries
108SO= @SO@
109LDSHARED= @LDSHARED@
110CCSHARED= @CCSHARED@
111LINKFORSHARED= @LINKFORSHARED@
Guido van Rossumbed23fe1996-07-31 17:30:37 +0000112DESTSHARED= $(BINLIBDEST)/sharedmodules
Guido van Rossumac405f61994-09-12 10:56:06 +0000113
Guido van Rossum586480b1996-05-28 22:49:08 +0000114# Shell used by make (some versions default to the login shell, which is bad)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000115SHELL= /bin/sh
116
Guido van Rossum586480b1996-05-28 22:49:08 +0000117# Portable install script (configure doesn't always guess right)
118INSTALL= @srcdir@/install-sh -c
Guido van Rossumb535da31996-07-30 18:04:22 +0000119INSTALL_PROGRAM=${INSTALL} -m 755
Guido van Rossum586480b1996-05-28 22:49:08 +0000120INSTALL_DATA= ${INSTALL} -m 644
121
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000122# --with-PACKAGE options for configure script
123# e.g. --with-readline --with-svr5 --with-solaris --with-thread
124# (see README for an explanation)
125WITH=
126
127# Compiler options passed to subordinate makes
Guido van Rossum4e8af441994-08-19 15:33:54 +0000128OPT= @OPT@
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000129
130# Subdirectories where to run make recursively
131SUBDIRS= Parser Objects Python Modules
132
133# Other subdirectories
Guido van Rossumb535da31996-07-30 18:04:22 +0000134SUBDIRSTOO= Include Lib Doc Misc Demo Grammar
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000135
136# Files and directories to be distributed
137CONFIGFILES= configure configure.in acconfig.h config.h.in Makefile.in
138DISTFILES= README ChangeLog $(CONFIGFILES)
139DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
140DIST= $(DISTFILES) $(DISTDIRS)
141
Guido van Rossum914fbd91997-07-19 19:38:43 +0000142LIBRARY= libpython$(VERSION).a
143
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000144# Default target
Guido van Rossum914fbd91997-07-19 19:38:43 +0000145all: $(LIBRARY) python
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000146
147# Build the interpreter
Guido van Rossum914fbd91997-07-19 19:38:43 +0000148python: $(LIBRARY)
149 cd Modules; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
150 prefix="$(prefix)" exec_prefix="$(exec_prefix)" \
151 LIBRARY=../$(LIBRARY) link
152
153# Build the library
154$(LIBRARY): $(SUBDIRS)
155 if test ! -f $(LIBRARY); \
156 then for i in $(SUBDIRS); do rm -f $$i/add2lib; done; true; \
157 else true; fi
158 for i in $(SUBDIRS); do \
159 (cd $$i; $(MAKE) VERSION="$(VERSION)" add2lib); done
Guido van Rossum4246edd1997-04-23 15:14:24 +0000160
161$(SUBDIRS): Makefiles
162
163Parser:
164 cd Parser ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
165 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
166
167Python:
168 cd Python ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
169 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
170
171Objects:
172 cd Objects ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
173 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
174
Guido van Rossum914fbd91997-07-19 19:38:43 +0000175Modules: Parser Python Objects
Guido van Rossum4246edd1997-04-23 15:14:24 +0000176 cd Modules ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
177 prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
Guido van Rossum810a92f1993-12-28 19:39:56 +0000178
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000179# Test the interpreter (twice, once without .pyc files, once with)
Barry Warsaw9121ab91997-01-02 20:01:44 +0000180TESTOPTS=
Guido van Rossum042a0511997-01-03 15:54:36 +0000181TESTPROG= $(srcdir)/Lib/test/regrtest.py
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000182test: python
183 -rm -f $(srcdir)/Lib/test/*.pyc
Guido van Rossum36bab7d1997-06-02 23:15:09 +0000184 -PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
Guido van Rossumfde51691997-05-22 20:11:55 +0000185 PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
Guido van Rossum810a92f1993-12-28 19:39:56 +0000186
Guido van Rossum586480b1996-05-28 22:49:08 +0000187# Install everything
Guido van Rossum6d472981996-07-30 21:41:56 +0000188install: altinstall bininstall maninstall
Guido van Rossum586480b1996-05-28 22:49:08 +0000189
Guido van Rossum64b65671996-07-30 20:42:12 +0000190# Install almost everything without disturbing previous versions
Guido van Rossumb535da31996-07-30 18:04:22 +0000191altinstall: altbininstall libinstall inclinstall libainstall sharedinstall
Guido van Rossum3912fd81996-07-24 02:35:43 +0000192
Guido van Rossum64b65671996-07-30 20:42:12 +0000193# Install the interpreter (by creating a hard link to python$(VERSION))
194bininstall: altbininstall
195 -if test -f $(BINDIR)/python; \
196 then rm -f $(BINDIR)/python; \
197 else true; \
198 fi
199 (cd $(BINDIR); ln python$(VERSION) python)
Guido van Rossum810a92f1993-12-28 19:39:56 +0000200
Guido van Rossum3912fd81996-07-24 02:35:43 +0000201# Install the interpreter with $(VERSION) affixed
Guido van Rossum64b65671996-07-30 20:42:12 +0000202# This goes into $(exec_prefix)
Guido van Rossum3912fd81996-07-24 02:35:43 +0000203altbininstall: python
204 @for i in $(BINDIR); \
205 do \
206 if test ! -d $$i; then \
207 echo "Creating directory $$i"; \
208 mkdir $$i; \
209 chmod 755 $$i; \
210 else true; \
211 fi; \
212 done
213 $(INSTALL_PROGRAM) python $(BINDIR)/python$(VERSION)
214
Guido van Rossum586480b1996-05-28 22:49:08 +0000215# Install the manual page
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000216maninstall:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000217 @for i in $(MANDIR) $(MANDIR)/man1; \
Guido van Rossum586480b1996-05-28 22:49:08 +0000218 do \
219 if test ! -d $$i; then \
220 echo "Creating directory $$i"; \
221 mkdir $$i; \
222 chmod 755 $$i; \
223 else true; \
224 fi; \
225 done
Guido van Rossum6403d281995-01-20 16:51:32 +0000226 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
Guido van Rossum90412791994-10-20 22:04:30 +0000227 $(MANDIR)/man1/python.1
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000228
Guido van Rossumb535da31996-07-30 18:04:22 +0000229# Install the library
Guido van Rossumb8dccd21996-07-30 21:55:17 +0000230MACHDEPS= $(MACHDEP)
231LIBSUBDIRS= stdwin tkinter test $(MACHDEPS)
Guido van Rossum64b65671996-07-30 20:42:12 +0000232libinstall: python $(srcdir)/Lib/$(MACHDEP)
Guido van Rossumb535da31996-07-30 18:04:22 +0000233 @for i in $(SCRIPTDIR) $(LIBDEST); \
234 do \
235 if test ! -d $$i; then \
236 echo "Creating directory $$i"; \
237 mkdir $$i; \
238 chmod 755 $$i; \
239 else true; \
240 fi; \
241 done
242 @for d in $(LIBSUBDIRS); \
243 do \
244 a=$(srcdir)/Lib/$$d; \
245 if test ! -d $$a; then continue; else true; fi; \
246 b=$(LIBDEST)/$$d; \
247 if test ! -d $$b; then \
248 echo "Creating directory $$b"; \
249 mkdir $$b; \
250 chmod 755 $$b; \
251 else true; \
252 fi; \
253 done
254 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
255 do \
256 if test -x $$i; then \
257 $(INSTALL_PROGRAM) $$i $(LIBDEST); \
258 echo $(INSTALL_PROGRAM) $$i $(LIBDEST); \
259 else \
260 $(INSTALL_DATA) $$i $(LIBDEST); \
261 echo $(INSTALL_DATA) $$i $(LIBDEST); \
262 fi; \
263 done
264 @for d in $(LIBSUBDIRS); \
265 do \
266 a=$(srcdir)/Lib/$$d; \
267 if test ! -d $$a; then continue; else true; fi; \
268 b=$(LIBDEST)/$$d; \
269 for i in $$a/*; \
270 do \
271 case $$i in \
272 *CVS) ;; \
273 *.pyc) ;; \
274 *~) ;; \
275 *) \
276 if test -x $$i; then \
277 echo $(INSTALL_PROGRAM) $$i $$b; \
278 $(INSTALL_PROGRAM) $$i $$b; \
279 else \
280 echo $(INSTALL_DATA) $$i $$b; \
281 $(INSTALL_DATA) $$i $$b; \
282 fi;; \
283 esac; \
284 done; \
285 done
286 PYTHONPATH=$(LIBDEST) \
287 ./python $(LIBDEST)/compileall.py $(LIBDEST)
Fred Drakedb5a41f1997-03-13 14:14:29 +0000288 PYTHONPATH=$(LIBDEST) \
289 ./python -O $(LIBDEST)/compileall.py $(LIBDEST)
Guido van Rossumb535da31996-07-30 18:04:22 +0000290
Guido van Rossum64b65671996-07-30 20:42:12 +0000291# Create the MACHDEP source directory, if one wasn't distributed..
Guido van Rossumcda848f1996-08-21 20:18:29 +0000292$(srcdir)/Lib/$(MACHDEP):
Guido van Rossum64b65671996-07-30 20:42:12 +0000293 mkdir $(srcdir)/Lib/$(MACHDEP)
294 cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen
Guido van Rossum04831d11996-09-10 18:21:32 +0000295 export PATH; PATH="`pwd`:$$PATH"; \
Guido van Rossumf71bd681996-08-28 19:23:01 +0000296 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
Guido van Rossumfc8ebb11996-08-19 21:51:24 +0000297 cd $(srcdir)/Lib/$(MACHDEP); ./regen
Guido van Rossum64b65671996-07-30 20:42:12 +0000298
Guido van Rossum586480b1996-05-28 22:49:08 +0000299# Install the include files
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000300inclinstall:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000301 @for i in $(INCLUDEDIR) $(INCLUDEPY); \
Guido van Rossum586480b1996-05-28 22:49:08 +0000302 do \
303 if test ! -d $$i; then \
304 echo "Creating directory $$i"; \
305 mkdir $$i; \
306 chmod 755 $$i; \
307 else true; \
308 fi; \
309 done
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000310 @for i in $(srcdir)/Include/*.h; \
311 do \
312 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
313 $(INSTALL_DATA) $$i $(INCLUDEPY); \
314 done
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000315
Guido van Rossum914fbd91997-07-19 19:38:43 +0000316# Install the library and miscellaneous stuff needed for extending/embedding
Guido van Rossum64b65671996-07-30 20:42:12 +0000317# This goes into $(exec_prefix)
Guido van Rossumb535da31996-07-30 18:04:22 +0000318LIBPL= $(LIBP)/config
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000319libainstall: all
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000320 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
Guido van Rossum586480b1996-05-28 22:49:08 +0000321 do \
322 if test ! -d $$i; then \
323 echo "Creating directory $$i"; \
324 mkdir $$i; \
325 chmod 755 $$i; \
326 else true; \
327 fi; \
328 done
Guido van Rossum914fbd91997-07-19 19:38:43 +0000329 $(INSTALL_DATA) $(LIBRARY) $(LIBPL)/$(LIBRARY)
330 $(RANLIB) $(LIBPL)/$(LIBRARY)
Guido van Rossum6403d281995-01-20 16:51:32 +0000331 $(INSTALL_DATA) Modules/config.c $(LIBPL)/config.c
332 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(LIBPL)/config.c.in
333 $(INSTALL_DATA) Modules/Makefile $(LIBPL)/Makefile
334 $(INSTALL_DATA) Modules/Setup $(LIBPL)/Setup
Guido van Rossumded2e201997-07-19 22:00:45 +0000335 $(INSTALL_DATA) Modules/Setup.local $(LIBPL)/Setup.local
Guido van Rossum70a86591996-07-21 02:46:47 +0000336 $(INSTALL_PROGRAM) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup
Guido van Rossum6403d281995-01-20 16:51:32 +0000337 $(INSTALL_DATA) config.h $(LIBPL)/config.h
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000338
Guido van Rossum586480b1996-05-28 22:49:08 +0000339# Install the dynamically loadable modules
Guido van Rossum64b65671996-07-30 20:42:12 +0000340# This goes into $(exec_prefix)
Guido van Rossumac405f61994-09-12 10:56:06 +0000341sharedinstall:
342 cd Modules; $(MAKE) \
343 OPT="$(OPT)" \
Guido van Rossumb535da31996-07-30 18:04:22 +0000344 VERSION="$(VERSION)" \
Guido van Rossumac405f61994-09-12 10:56:06 +0000345 SO="$(SO)" \
346 LDSHARED="$(LDSHARED)" \
347 CCSHARED="$(CCSHARED)" \
348 LINKFORSHARED="$(LINKFORSHARED)" \
349 DESTSHARED="$(DESTSHARED)" \
Guido van Rossum3912fd81996-07-24 02:35:43 +0000350 prefix="$(prefix)" \
351 exec_prefix="$(exec_prefix)" \
Guido van Rossumac405f61994-09-12 10:56:06 +0000352 sharedinstall
353
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000354# Build the sub-Makefiles
Guido van Rossumd09119e1995-01-17 16:45:08 +0000355Makefiles: config.status Modules/Makefile.pre
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000356 (cd Modules; $(MAKE) -f Makefile.pre Makefile)
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000357 @for i in . $(SUBDIRS); do \
358 (echo making Makefile in subdirectory $$i; cd $$i; \
359 $(MAKE) Makefile); \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000360 done
361
Guido van Rossumd09119e1995-01-17 16:45:08 +0000362# Build the intermediate Makefile in Modules
363Modules/Makefile.pre: config.status
364 $(SHELL) config.status
365
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000366# Build the toplevel Makefile
367Makefile: Makefile.in config.status
368 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
369
370# Run the configure script. If config.status already exists,
371# call it with the --recheck argument, which reruns configure with the
372# same options as it was run last time; otherwise run the configure
373# script with options taken from the $(WITH) variable
374config.status: $(srcdir)/configure
375 if test -f config.status; \
376 then $(SHELL) config.status --recheck; \
Guido van Rossumfb00a991995-01-12 12:26:50 +0000377 $(SHELL) config.status; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000378 else $(SHELL) $(srcdir)/configure $(WITH); \
379 fi
380
381.PRECIOUS: config.status python
382
383# Rerun configure with the same options as it was run last time,
384# provided the config.status script exists
385recheck:
386 $(SHELL) config.status --recheck
Guido van Rossumaf5b83e1995-01-04 19:02:35 +0000387 $(SHELL) config.status
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000388
389# Rebuild the configure script from configure.in; also rebuild config.h.in
390autoconf:
Guido van Rossum00682671996-06-28 20:15:41 +0000391 (cd $(srcdir); autoconf)
392 (cd $(srcdir); autoheader)
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000393
394# Create a tags file for vi
395tags::
396 ctags -w -t Include/*.h
397 for i in $(SUBDIRS); do ctags -w -t -a $$i/*.[ch]; done
398 sort tags -o tags
399
400# Create a tags file for GNU Emacs
401TAGS::
Guido van Rossum5552eb71994-08-05 15:51:00 +0000402 etags Include/*.h
403 for i in $(SUBDIRS); do etags -a $$i/*.[ch]; done
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000404
405# Add dependencies to sub-Makefiles
Guido van Rossum810a92f1993-12-28 19:39:56 +0000406depend:
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000407 @for i in $(SUBDIRS); do \
408 (echo making depend in subdirectory $$i; cd $$i; \
409 $(MAKE) depend); \
Guido van Rossum810a92f1993-12-28 19:39:56 +0000410 done
Guido van Rossum627b2d71993-12-24 10:39:16 +0000411
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000412# Sanitation targets -- clean leaves libraries, executables and tags
413# files, which clobber removes those as well
414
Guido van Rossum627b2d71993-12-24 10:39:16 +0000415localclean:
416 -rm -f core *~ [@,#]* *.old *.orig *.rej
Guido van Rossum627b2d71993-12-24 10:39:16 +0000417
418clean: localclean
419 -for i in $(SUBDIRS); do \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000420 (echo making clean in subdirectory $$i; cd $$i; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000421 if test -f Makefile; \
422 then $(MAKE) clean; \
423 else $(MAKE) -f Makefile.*in clean; \
424 fi); \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000425 done
426
Guido van Rossum810a92f1993-12-28 19:39:56 +0000427localclobber: localclean
Guido van Rossum914fbd91997-07-19 19:38:43 +0000428 -rm -f tags TAGS python $(LIBRARY)
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000429 -rm -f config.log config.cache config.h
Guido van Rossum810a92f1993-12-28 19:39:56 +0000430
431clobber: localclobber
Guido van Rossum627b2d71993-12-24 10:39:16 +0000432 -for i in $(SUBDIRS); do \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000433 (echo clobbering subdirectory $$i; cd $$i; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000434 if test -f Makefile; \
435 then $(MAKE) clobber; \
Guido van Rossum7b4d4601995-03-22 12:27:16 +0000436 else $(MAKE) -f $(srcdir)/Makefile.in clobber; \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000437 fi); \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000438 done
439
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000440# Make things extra clean, before making a distribution:
441# remove all generated files, even Makefile[.pre]
Guido van Rossum627b2d71993-12-24 10:39:16 +0000442distclean: clobber
Guido van Rossum7b4d4601995-03-22 12:27:16 +0000443 -$(MAKE) -f $(srcdir)/Makefile.in \
444 SUBDIRS="$(SUBDIRSTOO)" clobber
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000445 -rm -f config.status config.log config.cache config.h Makefile
Guido van Rossume7abf4e1995-09-18 22:12:20 +0000446 -rm -f Modules/Makefile
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000447 -for i in $(SUBDIRS) $(SUBDIRSTOO); do \
448 for f in $$i/*.in; do \
449 f=`basename "$$f" .in`; \
450 if test "$$f" != "*"; then \
451 echo rm -f "$$i/$$f"; \
452 rm -f "$$i/$$f"; \
453 fi; \
454 done; \
Guido van Rossum627b2d71993-12-24 10:39:16 +0000455 done
Guido van Rossum627b2d71993-12-24 10:39:16 +0000456
Guido van Rossum586480b1996-05-28 22:49:08 +0000457# Check for smelly exported symbols (not starting with Py/_Py)
458smelly: all
459 for i in $(SUBDIRS); do \
460 echo --- $$i ---; \
461 nm -p $$i/lib$$i.a | \
462 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
463 done
464
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000465# Find files with funny names
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000466funny:
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000467 find $(DISTDIRS) -type d \
468 -o -name '*.[chs]' \
469 -o -name '*.py' \
470 -o -name '*.doc' \
471 -o -name '*.sty' \
472 -o -name '*.bib' \
473 -o -name '*.dat' \
474 -o -name '*.el' \
475 -o -name '*.fd' \
476 -o -name '*.in' \
477 -o -name '*.tex' \
478 -o -name '*,[vpt]' \
479 -o -name 'Setup' \
480 -o -name 'Setup.*' \
481 -o -name README \
482 -o -name Makefile \
483 -o -name ChangeLog \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000484 -o -name Repository \
Guido van Rossumbfc1bbe1996-06-20 14:30:38 +0000485 -o -name Root \
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000486 -o -name Entries \
487 -o -name Tag \
488 -o -name tags \
489 -o -name TAGS \
490 -o -name .cvsignore \
491 -o -name MANIFEST \
492 -o -print