home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-01-17 | 16.2 KB | 536 lines |
- ########################################################################
- # Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
- # The Netherlands.
- #
- # All Rights Reserved
- #
- # Permission to use, copy, modify, and distribute this software and its
- # documentation for any purpose and without fee is hereby granted,
- # provided that the above copyright notice appear in all copies and that
- # both that copyright notice and this permission notice appear in
- # supporting documentation, and that the names of Stichting Mathematisch
- # Centrum or CWI or Corporation for National Research Initiatives or
- # CNRI not be used in advertising or publicity pertaining to
- # distribution of the software without specific, written prior
- # permission.
- #
- # While CWI is the initial source for this software, a modified version
- # is made available by the Corporation for National Research Initiatives
- # (CNRI) at the Internet address ftp://ftp.python.org.
- #
- # STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
- # REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
- # MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
- # CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
- # DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- # PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- # PERFORMANCE OF THIS SOFTWARE.
- ########################################################################
-
- # Top-level Makefile for Python
- #
- # As distributed, this file is called Makefile.in; it is processed
- # into the real Makefile by running the script ./configure, which
- # replaces things like @spam@ with values appropriate for your system.
- # This means that if you edit Makefile, your changes get lost the next
- # time you run the configure script. Ideally, you can do:
- #
- # ./configure
- # make
- # make test
- # make install
- #
- # The top-level Makefile invokes make recursively in a number of
- # subdirectories (see the SUBDIRS variable below). If you want to,
- # you can invoke make in individual subdirectories. However, the
- # sub-Makefiles are also generated by configure, and the quickest way
- # to make sure they are up to date is by running make (or "make
- # Makefiles") at the top level. This is particularly important for
- # Modules/Makefile, which has to be regenerated every time you edit
- # Modules/Setup. The python executable is built in the Modules
- # directory and then moved to the top-level directory. The recursive
- # makes pass three options to subordinate makes: OPT (a quick way to
- # change some compiler options; it usually defaults to -O), prefix and
- # exec_prefix (the installation paths).
- #
- # If you have a previous version of Python installed that you don't
- # want to overwrite, you can use "make altinstall" instead of "make
- # install". This changes the install procedure so it installs the
- # Python binary as "python<version>". The libraries and include files
- # are always installed in a subdirectory called "python<version>".
- # "make altinstall" does not install the manual page. If you want to
- # make this installation the "official" installation but want to keep
- # the old binary around "just in case", rename the installed python
- # binary to "python<oldversion>" before running "make install".
- # (This only works between different versions, e.g. 1.3 and 1.4 --
- # different betas of the same version will overwrite each other in
- # installation unless you override the VERSION Make variable.)
- #
- # In fact, "make install" or "make bininstall" installs the binary
- # as python<version> and makes a hard link to python, so when
- # installing a new version in the future, nothing of the current
- # version will be lost (except for the man page).
- #
- # If recursive makes fail, try invoking make as "make MAKE=make".
- #
- # See also the section "Build instructions" in the README file.
-
- # Interpreter version number, for library destination pathnames
- VERSION= 1.4
-
- # Substitutions by configure
- srcdir= @srcdir@
- VPATH= @srcdir@
- RANLIB= @RANLIB@
-
- # Machine-dependent subdirectories
- MACHDEP= @MACHDEP@
-
- # Install prefix for architecture-independent files
- prefix= @prefix@
-
- # Install prefix for architecture-dependent files
- exec_prefix= @exec_prefix@
-
- # Expanded directories
- BINDIR= $(exec_prefix)/bin
- LIBDIR= $(exec_prefix)/lib
- MANDIR= $(prefix)/man
- INCLUDEDIR= $(prefix)/include
- SCRIPTDIR= $(prefix)/lib
-
- # Detailed destination directories
- BINLIBDEST= $(LIBDIR)/python$(VERSION)
- LIBDEST= $(SCRIPTDIR)/python$(VERSION)
- INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
- LIBP= $(LIBDIR)/python$(VERSION)
-
- # Symbols used for using shared libraries
- SO= @SO@
- LDSHARED= @LDSHARED@
- CCSHARED= @CCSHARED@
- LINKFORSHARED= @LINKFORSHARED@
- DESTSHARED= $(BINLIBDEST)/sharedmodules
-
- # Shell used by make (some versions default to the login shell, which is bad)
- SHELL= /bin/sh
-
- # Programs used by install targets
- INSTALL= @INSTALL@
- INSTALL_PROGRAM=@INSTALL_PROGRAM@
- INSTALL_DATA= @INSTALL_DATA@
-
- # --with-PACKAGE options for configure script
- # e.g. --with-readline --with-svr5 --with-solaris --with-thread
- # (see README for an explanation)
- WITH=
-
- # Compiler options passed to subordinate makes
- OPT= @OPT@
-
- # Subdirectories where to run make recursively
- SUBDIRS= Parser Objects Python Modules
-
- # Other subdirectories
- SUBDIRSTOO= Include Lib Doc Misc Demo Grammar
-
- # Files and directories to be distributed
- CONFIGFILES= configure configure.in acconfig.h config.h.in Makefile.in
- DISTFILES= README ChangeLog $(CONFIGFILES)
- DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
- DIST= $(DISTFILES) $(DISTDIRS)
-
- # Default target
- all: python
-
- # Build the interpreter
- python: Makefiles
- @for i in $(SUBDIRS); do \
- (echo Making in subdirectory $$i; cd $$i; \
- $(MAKE) OPT="$(OPT)" \
- VERSION="$(VERSION)" \
- prefix="$(prefix)" \
- exec_prefix="$(exec_prefix)" \
- all); \
- done
-
- # Test the interpreter (twice, once without .pyc files, once with)
- TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test:./Modules
- test: python
- -rm -f $(srcdir)/Lib/test/*.pyc
- PYTHONPATH=$(TESTPATH) ./python -c 'import autotest'
- PYTHONPATH=$(TESTPATH) ./python -c 'import autotest'
-
- # Install everything
- install: altinstall bininstall maninstall
-
- # Install almost everything without disturbing previous versions
- altinstall: altbininstall libinstall inclinstall libainstall sharedinstall
-
- # Install the interpreter (by creating a hard link to python$(VERSION))
- bininstall: altbininstall
- -if test -f $(BINDIR)/python; \
- then rm -f $(BINDIR)/python; \
- else true; \
- fi
- (cd $(BINDIR); ln python$(VERSION) python)
-
- # Install the interpreter with $(VERSION) affixed
- # This goes into $(exec_prefix)
- altbininstall: python
- @for i in $(BINDIR); \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- $(INSTALL_PROGRAM) python $(BINDIR)/python$(VERSION)
-
- # Install the manual page
- maninstall:
- @for i in $(MANDIR) $(MANDIR)/man1; \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- $(INSTALL_DATA) $(srcdir)/Misc/python.man \
- $(MANDIR)/man1/python.1
-
- # Install the library
- MACHDEPS= $(MACHDEP)
- LIBSUBDIRS= stdwin tkinter test $(MACHDEPS)
- libinstall: python $(srcdir)/Lib/$(MACHDEP)
- @for i in $(SCRIPTDIR) $(LIBDEST); \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- @for d in $(LIBSUBDIRS); \
- do \
- a=$(srcdir)/Lib/$$d; \
- if test ! -d $$a; then continue; else true; fi; \
- b=$(LIBDEST)/$$d; \
- if test ! -d $$b; then \
- echo "Creating directory $$b"; \
- mkdir $$b; \
- chmod 755 $$b; \
- else true; \
- fi; \
- done
- @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
- do \
- if test -x $$i; then \
- $(INSTALL_PROGRAM) $$i $(LIBDEST); \
- echo $(INSTALL_PROGRAM) $$i $(LIBDEST); \
- else \
- $(INSTALL_DATA) $$i $(LIBDEST); \
- echo $(INSTALL_DATA) $$i $(LIBDEST); \
- fi; \
- done
- @for d in $(LIBSUBDIRS); \
- do \
- a=$(srcdir)/Lib/$$d; \
- if test ! -d $$a; then continue; else true; fi; \
- b=$(LIBDEST)/$$d; \
- for i in $$a/*; \
- do \
- case $$i in \
- *CVS) ;; \
- *.pyc) ;; \
- *~) ;; \
- *) \
- if test -x $$i; then \
- echo $(INSTALL_PROGRAM) $$i $$b; \
- $(INSTALL_PROGRAM) $$i $$b; \
- else \
- echo $(INSTALL_DATA) $$i $$b; \
- $(INSTALL_DATA) $$i $$b; \
- fi;; \
- esac; \
- done; \
- done
- PYTHONPATH=$(LIBDEST) \
- ./python $(LIBDEST)/compileall.py $(LIBDEST)
-
- # Create the MACHDEP source directory, if one wasn't distributed..
- $(srcdir)/Lib/$(MACHDEP):
- mkdir $(srcdir)/Lib/$(MACHDEP)
- cp $(srcdir)/Lib/generic/regen $(srcdir)/Lib/$(MACHDEP)/regen
- export PATH; PATH="`pwd`:$$PATH"; \
- export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
- cd $(srcdir)/Lib/$(MACHDEP); ./regen
-
- # Install the include files
- inclinstall:
- @for i in $(INCLUDEDIR) $(INCLUDEPY); \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- @for i in $(srcdir)/Include/*.h; \
- do \
- echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
- $(INSTALL_DATA) $$i $(INCLUDEPY); \
- done
-
- # Install the lib*.a files and miscellaneous stuff needed by extensions
- # This goes into $(exec_prefix)
- LIBPL= $(LIBP)/config
- libainstall: all
- @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
- do \
- if test ! -d $$i; then \
- echo "Creating directory $$i"; \
- mkdir $$i; \
- chmod 755 $$i; \
- else true; \
- fi; \
- done
- @for i in $(SUBDIRS); do \
- echo Installing in subdirectory $$i; \
- $(INSTALL_DATA) $$i/lib$$i.a $(LIBPL)/lib$$i.a; \
- $(RANLIB) $(LIBPL)/lib$$i.a; \
- done
- $(INSTALL_DATA) Modules/config.c $(LIBPL)/config.c
- $(INSTALL_DATA) $(srcdir)/Modules/getpath.c $(LIBPL)/getpath.c
- $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(LIBPL)/config.c.in
- $(INSTALL_DATA) Modules/Makefile $(LIBPL)/Makefile
- $(INSTALL_DATA) Modules/Setup $(LIBPL)/Setup
- $(INSTALL_PROGRAM) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup
- $(INSTALL_DATA) config.h $(LIBPL)/config.h
- $(INSTALL_DATA) $(srcdir)/Python/frozenmain.c $(LIBPL)/frozenmain.c
- $(INSTALL_DATA) Modules/main.o $(LIBPL)/main.o
-
- # Install the dynamically loadable modules
- # This goes into $(exec_prefix)
- sharedinstall:
- cd Modules; $(MAKE) \
- OPT="$(OPT)" \
- VERSION="$(VERSION)" \
- SO="$(SO)" \
- LDSHARED="$(LDSHARED)" \
- CCSHARED="$(CCSHARED)" \
- LINKFORSHARED="$(LINKFORSHARED)" \
- DESTSHARED="$(DESTSHARED)" \
- INSTALL_PROGRAM="$(INSTALL_PROGRAM)" \
- prefix="$(prefix)" \
- exec_prefix="$(exec_prefix)" \
- sharedinstall
-
- # Build the sub-Makefiles
- Makefiles: config.status Modules/Makefile.pre
- (cd Modules; $(MAKE) -f Makefile.pre Makefile)
- @for i in . $(SUBDIRS); do \
- (echo making Makefile in subdirectory $$i; cd $$i; \
- $(MAKE) Makefile); \
- done
-
- # Build the intermediate Makefile in Modules
- Modules/Makefile.pre: config.status
- $(SHELL) config.status
-
- # Build the toplevel Makefile
- Makefile: Makefile.in config.status
- CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
-
- # Run the configure script. If config.status already exists,
- # call it with the --recheck argument, which reruns configure with the
- # same options as it was run last time; otherwise run the configure
- # script with options taken from the $(WITH) variable
- config.status: $(srcdir)/configure
- if test -f config.status; \
- then $(SHELL) config.status --recheck; \
- $(SHELL) config.status; \
- else $(SHELL) $(srcdir)/configure $(WITH); \
- fi
-
- .PRECIOUS: config.status python
-
- # Rerun configure with the same options as it was run last time,
- # provided the config.status script exists
- recheck:
- $(SHELL) config.status --recheck
- $(SHELL) config.status
-
- # Rebuild the configure script from configure.in; also rebuild config.h.in
- autoconf:
- (cd $(srcdir); autoconf)
- (cd $(srcdir); autoheader)
-
- # Create a tags file for vi
- tags::
- ctags -w -t Include/*.h
- for i in $(SUBDIRS); do ctags -w -t -a $$i/*.[ch]; done
- sort tags -o tags
-
- # Create a tags file for GNU Emacs
- TAGS::
- etags Include/*.h
- for i in $(SUBDIRS); do etags -a $$i/*.[ch]; done
-
- # Add dependencies to sub-Makefiles
- depend:
- @for i in $(SUBDIRS); do \
- (echo making depend in subdirectory $$i; cd $$i; \
- $(MAKE) depend); \
- done
-
- # Sanitation targets -- clean leaves libraries, executables and tags
- # files, which clobber removes those as well
-
- localclean::
- -rm -f core *~ [@,#]* *.old *.orig *.rej
-
- clean: localclean
- -for i in $(SUBDIRS); do \
- (echo making clean in subdirectory $$i; cd $$i; \
- if test -f Makefile; \
- then $(MAKE) clean; \
- else $(MAKE) -f Makefile.*in clean; \
- fi); \
- done
-
- localclobber: localclean
- -rm -f tags TAGS python
- -rm -f config.log config.cache config.h
-
- clobber: localclobber
- -for i in $(SUBDIRS); do \
- (echo clobbering subdirectory $$i; cd $$i; \
- if test -f Makefile; \
- then $(MAKE) clobber; \
- else $(MAKE) -f $(srcdir)/Makefile.in clobber; \
- fi); \
- done
-
- # Make things extra clean, before making a distribution:
- # remove all generated files, even Makefile[.pre]
- distclean: clobber
- -$(MAKE) -f $(srcdir)/Makefile.in \
- SUBDIRS="$(SUBDIRSTOO)" clobber
- -rm -f config.status config.log config.cache config.h Makefile
- -rm -f Modules/Makefile
- -for i in $(SUBDIRS) $(SUBDIRSTOO); do \
- for f in $$i/*.in; do \
- f=`basename "$$f" .in`; \
- if test "$$f" != "*"; then \
- echo rm -f "$$i/$$f"; \
- rm -f "$$i/$$f"; \
- fi; \
- done; \
- done
-
- # Check for smelly exported symbols (not starting with Py/_Py)
- smelly: all
- for i in $(SUBDIRS); do \
- echo --- $$i ---; \
- nm -p $$i/lib$$i.a | \
- sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
- done
-
- # Find files with funny names
- funny:
- find $(DISTDIRS) -type d \
- -o -name '*.[chs]' \
- -o -name '*.py' \
- -o -name '*.doc' \
- -o -name '*.sty' \
- -o -name '*.bib' \
- -o -name '*.dat' \
- -o -name '*.el' \
- -o -name '*.fd' \
- -o -name '*.in' \
- -o -name '*.tex' \
- -o -name '*,[vpt]' \
- -o -name 'Setup' \
- -o -name 'Setup.*' \
- -o -name README \
- -o -name Makefile \
- -o -name ChangeLog \
- -o -name Repository \
- -o -name Root \
- -o -name Entries \
- -o -name Tag \
- -o -name tags \
- -o -name TAGS \
- -o -name .cvsignore \
- -o -name MANIFEST \
- -o -print
-
- # Build a NeXTSTEP Package: useful targets are `package' and `package-bin'
-
- .SUFFIXES: .root .pkg
-
- # Create a NeXTSTEP Pkg containing the complete installation
- package: python Python.pkg
-
- # Create a NeXTSTEP Pkg containing only the binaries, without libraries
- # and headers
- package-bin: python Python-bin.pkg
-
- # Perform the installation (everything) in a directory `Python.root'
- Python.root:
- mkdirs $(srcdir)/$@
- $(MAKE) prefix="`pwd`/$@" \
- INSTALL_PROGRAM="$(INSTALL) -m 755 -sS -sx" \
- altbininstall nslibinstall nsinclinstall \
- libainstall sharedinstall bininstall maninstall
-
- # Perform the installation (binaries) in a directory `Python-bin.root'
- Python-bin.root:
- mkdirs $(srcdir)/$@
- $(MAKE) prefix="`pwd`/$@" \
- INSTALL_PROGRAM="$(INSTALL) -m 755 -sS -sx" \
- altbininstall nslibinstall sharedinstall \
- bininstall maninstall
- localclean::
- rm -rf Python.root Python-bin.root Python.pkg Python-bin.pkg
-
- BUILD_PACKAGE=/NextAdmin/Installer.app/package
- .root.pkg:
- $(BUILD_PACKAGE) $< $(srcdir)/Contrib/NeXT/$*.info
- rm -rf $<
- for script in pre_install post_install pre_delete post_delete; do \
- if test -f $(srcdir)/Contrib/NeXT/$*.$$script; then \
- install -m 755 $(srcdir)/Contrib/NeXT/$*.$$script $@; \
- fi; \
- done
- gzip_package $@
-
- # Install the library: use gnutar, to be faster; do not copy *.pyc;
- # do not copy uninteresting directories.
- nslibinstall:
- mkdirs $(LIBDEST)
- gnutar -C $(srcdir)/Lib --exclude 'CVS' --exclude '*.pyc' \
- --exclude 'aix3' --exclude 'aix4' \
- --exclude 'dos_8x3' --exclude 'freebsd2' \
- --exclude 'generic' --exclude 'irix5' \
- --exclude 'linux1' --exclude 'linux2' \
- --exclude 'mac' --exclude 'stdwin' \
- --exclude 'sunos4' --exclude 'sunos5' \
- --exclude 'tkinter' --exclude 'win' \
- --exclude '.cvsignore' --exclude '*~' -cf - . | \
- (cd $(LIBDEST); gnutar -xf -)
-
- # Install the include files: use gnutar, to be faster.
- nsinclinstall:
- mkdirs $(INCLUDEPY)
- (cd $(srcdir)/Include; gnutar -cf - *.h) | \
- (cd $(INCLUDEPY); gnutar -xf -)
-