Now partially conforms with GNU coding standards. I'm only checking
[bpt/emacs.git] / Makefile.in
dissimilarity index 84%
index ec62fa3..755093a 100644 (file)
-# This is the distribution Makefile for Emacs.  config.emacs can make
-# most of the changes to this file you might want, so try that first.
-
-# make all     to compile and build Emacs
-# make install to install it
-# make install.sysv  to install on system V.
-# make install.xenix  to install on Xenix
-# make tags    to update tags tables
-#
-# make distclean       to delete everything that wasn't in the distribution
-#      This is a very dangerous thing to do!
-# make clean
-#       This is a little less dangerous.
-
-SHELL = /bin/sh
-
-# ==================== Where to install things ====================
-# Note that on system V you must change MANDIR to /usr/local/man/man1.
-
-# Where to install all of Emacs's data files - the lisp code,
-# documentation tree, and the architecture-dependent and -independent
-# libraries.  If this is not the directory we're building under
-# already, the `install' targets will move or copy it there.  The
-# default definitions for the variables below are expressed in terms
-# of this one, so you may not need to change them.
-LIBROOT=/u/src/emacs/19.0
-
-# This is where the `install' make target should place the binaries
-# people will want to run directly (like etags and Emacs itself).
-INSTALLBIN=/usr/local/bin
-
-# Emacs will search this path to find its elisp files.  This should be
-# a colon-separated list of directories.  Strictly speaking, all the
-# elisp files should go under DATADIR (below), since both elisp source
-# and compiled elisp are completely portable, but it's traditional to
-# give the lisp files their own subdirectory.
-LISPPATH=/u/src/emacs/19.0/lisp
-
-# Emacs will look here for its architecture-independent files (like
-# the tutorial and the zippy database).
-DATADIR=/u/src/emacs/19.0/share-lib
-
-# Emacs will look here for its architecture-dependent files, like
-# executables for its utilities.
-LIBDIR=/u/src/emacs/19.0/arch-lib
-
-# The locking directory, where the Emacs locking code keeps track of
-# which files are currently being edited.
-LOCKDIR=/u/src/emacs/19.0/lock
-
-# This is where the `install' make target should place the man pages
-# for the binaries it installs.
-MANDIR= /usr/man/man1
-
-
-
-# Flags passed down to subdirectory makefiles.
-MFLAGS=
-
-# Subdirectories to make recursively.  `lisp' is not included
-# because the compiled lisp files are part of the distribution
-# and you cannot remake them without installing Emacs first.
-SUBDIR= lib-src src
-
-# Subdirectories to install
-COPYDIR= arch-lib share-lib info lisp
-
-# Subdirectories to clean
-CLEANDIR= ${COPYDIR} lisp/term
-
-all:   src/paths.h ${SUBDIR}
-
-src/paths.h: Makefile src/paths.h-dist
-       /bin/sed < src/paths.h-dist > src/paths.h                       \
-       -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "$(LISPPATH)";'             \
-       -e 's;\(#.*PATH_EXEC\).*$$;\1 "$(LIBDIR)";'                     \
-       -e 's;\(#.*PATH_DATA\).*$$;\1 "$(DATADIR)";'                    \
-       -e 's;\(#.*LOCK\).*$$;\1 "$(LOCKDIR)/";'
-
-src:   lib-src
-
-.RECURSIVE: ${SUBDIR}
-
-${SUBDIR}: FRC
-       cd $@; make ${MFLAGS} all
-
-install: all mkdir lockdir
-       -if [ `/bin/pwd` != `(cd ${LIBROOT}; /bin/pwd)` ] ; then \
-               tar cf - ${COPYDIR} | (cd ${LIBROOT}; umask 0; tar xf - ) ;\
-               for i in ${CLEANDIR}; do \
-                       (rm -rf ${LIBROOT}/$$i/RCS; \
-                        rm -f ${LIBROOT}/$$i/\#*; \
-                        rm -f ${LIBROOT}/$$i/*~); \
-               done \
-       else true; \
-       fi
-       install -c -s arch-lib/emacsclient ${INSTALLBIN}/emacsclient
-       install -c -s arch-lib/etags ${INSTALLBIN}/etags
-       install -c -s arch-lib/ctags ${INSTALLBIN}/ctags
-       install -c -s -m 1755 src/xemacs ${INSTALLBIN}/xemacs
-       install -c -m 444 share-lib/emacs.1 ${MANDIR}/emacs.1
-       -rm -f ${INSTALLBIN}/emacs
-       mv ${INSTALLBIN}/xemacs ${INSTALLBIN}/emacs
-
-install.sysv: all mkdir lockdir
-       -if [ `/bin/pwd` != `(cd ${LIBROOT}; /bin/pwd)` ] ; then \
-               find ${COPYDIR} -print | cpio -pdum ${LIBROOT} ;\
-               for i in ${CLEANDIR}; do \
-                       (rm -rf ${LIBROOT}/$$i/RCS; \
-                        rm -f ${LIBROOT}/$$i/\#*; \
-                        rm -f ${LIBROOT}/$$i/*~); \
-               done \
-       else true; \
-       fi
-       -cpset arch-lib/emacsclient ${INSTALLBIN}/emacsclient 755 bin bin
-       -cpset arch-lib/etags ${INSTALLBIN}/etags 755 bin bin
-       -cpset arch-lib/ctags ${INSTALLBIN}/ctags 755 bin bin
-       -cpset share-lib/emacs.1 ${MANDIR}/emacs.1 444 bin bin
-       -/bin/rm -f ${INSTALLBIN}/emacs
-       -cpset src/xemacs ${INSTALLBIN}/emacs 1755 bin bin
-  
-install.xenix: all mkdir lockdir
-       if [ `pwd` != `(cd ${LIBROOT}; pwd)` ] ; then \
-               tar cf - ${COPYDIR} | (cd ${LIBROOT}; umask 0; tar xpf - ) ;\
-               for i in ${CLEANDIR}; do \
-                       (rm -rf ${LIBROOT}/$$i/RCS; \
-                        rm -f ${LIBROOT}/$$i/\#*; \
-                        rm -f ${LIBROOT}/$$i/*~); \
-               done \
-       else true; \
-       fi
-       cp arch-lib/etags arch-lib/ctags arch-lib/emacsclient ${INSTALLBIN}
-       chmod 755 ${INSTALLBIN}/etags ${INSTALLBIN}/ctags ${INSTALLBIN}/emacsclient
-       cp share-lib/emacs.1 ${MANDIR}/emacs.1
-       chmod 444 ${MANDIR}/emacs.1
-       -mv -f ${INSTALLBIN}/emacs ${INSTALLBIN}/emacs.old
-       cp src/xemacs ${INSTALLBIN}/emacs
-       chmod 1755 ${INSTALLBIN}/emacs
-       -rm -f ${INSTALLBIN}/emacs.old
-
-mkdir: FRC
-       -mkdir ${LIBROOT}
-       -chmod 777 ${LIBROOT}
-
-distclean:
-       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} distclean); done
-
-clean:
-       cd src; make clean
-       cd lib-src; make clean
-
-lockdir:
-       -mkdir ${LOCKDIR}
-       -chmod 777 ${LOCKDIR}
-
-FRC:
-
-tags:  lib-src
-       cd src; ../arch-lib/etags *.[ch] ../lisp/*.el ../lisp/term/*.el
+# DIST: This is the distribution Makefile for Emacs.  configure can
+# DIST: make most of the changes to this file you might want, so try
+# DIST: that first.
+
+# make all     to compile and build Emacs.
+# make install to install it.
+# make install.sysv to install on system V.  Note that on system V you
+#              must change mandir to /usr/local/man/man1.
+# make install.xenix  to install on Xenix.
+# make install.aix    to install on AIX.
+# make tags    to update tags tables.
+#
+# make distclean       to delete everything that wasn't in the distribution.
+#      This is a very dangerous thing to do!  It removes backup files,
+#      among other things.
+# make clean
+#      This is a little less dangerous.
+# make dist
+#      This produces a tar file from the current source tree suitable
+#      for redistribution.
+
+SHELL = /bin/sh
+
+# ==================== Where To Install Things ====================
+
+version=version-not-set
+configname=configuration-name-not-set
+
+# The default location for installation.  Everything is placed in
+# subdirectories of this directory.  This directory must exist when
+# you start installation.  The default values for many of the
+# variables below are expressed in terms of this one, so you may not
+# need to change them.
+prefix=/usr/local
+
+# Where to install Emacs and other binaries that people will want to
+# run directly (like etags).
+bindir=${prefix}/bin
+
+# Where to install architecture-independent data files.  ${lispdir}
+# and ${etcdir} are below this.
+datadir=${prefix}/lib/emacs/${version}
+
+# Where to install and expect the files that Emacs modifies as it
+# runs.         These files are all architecture-independent.  Right now,
+# the only such data is the locking directory.
+statedir=${prefix}/lib/emacs
+
+# Where to install and expect executable files to be run by Emacs
+# rather than directly by users, and other architecture-dependent
+# data.
+libdir=${prefix}/${version}/${configname}
+
+# Where to install Emacs's man pages, and what extension they should have.
+mandir=/usr/man/man1
+manext=.1
+
+# Where to install and expect the info files describing Emacs. In the
+# past, this defaulted to a subdirectory of ${prefix}/lib/emacs, but
+# since there are now many packages documented with the texinfo
+# system, it is inappropriate to imply that it is part of Emacs.
+infodir=${prefix}/info
+
+# Where to find the source code.  The source code for Emacs's C kernel
+# is expected to be in ${srcdir}/src, and the source code for Emacs's
+# utility programs is expected to be in ${srcdir}/lib-src.
+# This is set by the configure script's `--srcdir' option.
+srcdir=.
+
+
+# ==================== Emacs-specific directories ====================
+
+# Where to install the elisp files distributed with Emacs.
+lispdir=${datadir}/lisp
+
+# Directories Emacs should search for elisp files specific to this
+# site (i.e. customizations), before consulting ${lispdir}.  This
+# should be a colon-separated list of directories.
+locallisppath=${prefix}/lib/emacs/local-lisp
+
+# Where Emacs will search to find its elisp files.  Before changing
+# this, check to see if your purpose wouldn't better be served by
+# changing locallisppath.  This should be a colon-separated list of
+# directories.
+lisppath=${locallisppath}:${lispdir}
+
+# Where Emacs will search for its elisp files while building.  This is
+# only used during the process of compiling Emacs, to help Emacs find
+# its lisp files before they've been installed in their final
+# location.  It's usually identical to lisppath, except that the entry
+# for the directory containing the installed lisp files has been
+# replaced with ../lisp.  This should be a colon-separated list of
+# directories.
+buildlisppath=../lisp
+
+# Where to install the other architecture-independent data files
+# distributed with Emacs (like the tutorial, the cookie recipes and
+# the Zippy database).
+etcdir=${datadir}/etc
+
+# Where to create and expect the locking directory, where the Emacs
+# locking code keeps track of which files are currently being edited.
+lockdir=${statedir}/lock
+
+# Where to put executables to be run by Emacs rather than the user.
+archlibdir=${libdir}
+
+# ==================== Things `configure' might edit ====================
+
+CC=cc
+CFLAGS=-g
+
+# ==================== Utility Programs for the Build ====================
+
+# Allow the user to specify the install program.
+INSTALL = install
+INSTALLFLAGS = -c
+INSTALL_PROGRAM = ${INSTALL}
+INSTALL_DATA = ${INSTALL}
+
+# ============================= Targets ==============================
+
+# Flags passed down to subdirectory makefiles.
+MFLAGS = CC='${CC}' CFLAGS='${CFLAGS}'
+
+# Subdirectories to make recursively.  `lisp' is not included
+# because the compiled lisp files are part of the distribution
+# and you cannot remake them without installing Emacs first.
+SUBDIR = lib-src src
+
+# Subdirectories to install, and where they'll go.
+COPYDIR = arch-lib etc info lisp
+COPYDESTS = ${libdir} ${datadir} ${infodir} ${lispdir}
+
+all:   src/paths.h ${SUBDIR}
+
+removenullpaths=sed -e 's/^://' -e 's/:$$//' -e 's/::/:/'
+
+# Note that sed is not in /bin on 386bsd.
+src/paths.h: Makefile src/paths.h.in
+       lisppath=`echo ${lisppath} | ${removenullpaths}` ;              \
+       buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ;    \
+       sed < src/paths.h.in > src/paths.h.tmp                          \
+       -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";'          \
+       -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \
+       -e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";'                     \
+       -e 's;\(#.*PATH_DATA\).*$$;\1 "${datadir}";'                    \
+       -e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";'
+       ./move-if-change src/paths.h.tmp src/paths.h
+
+src:   lib-src
+
+.RECURSIVE: ${SUBDIR}
+
+${SUBDIR}: FRC
+       cd $@; make ${MFLAGS} all
+
+install: all mkdir lockdir
+       -set ${COPYDESTS} ; \
+        for dir in ${COPYDIR} ; do \
+          dest=$$1 ; shift ; \
+          if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
+            (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xf - ) ; \
+            for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
+              rm -rf $${subdir}/RCS ; \
+              rm -f  $${subdir}/\#* ; \
+              rm -f  $${subdir}/*~ ; \
+            done ; \
+          fi ; \
+        done
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/emacsclient ${bindir}/emacsclient
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/etags ${bindir}/etags
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c arch-lib/ctags ${bindir}/ctags
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -c -m 1755 src/xemacs ${bindir}/xemacs
+       ${INSTALL_DATA} ${INSTALLFLAGS} -c -m 444 etc/emacs.1 ${mandir}/emacs.1
+       -rm -f ${bindir}/emacs
+       mv ${bindir}/xemacs ${bindir}/emacs
+
+install.sysv: all mkdir lockdir
+       -set ${COPYDESTS} ; \
+        for dir in ${COPYDIR} ; do \
+          dest=$$1 ; shift ; \
+          if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
+            (cd $${dir}; find . -print | cpio -pdum ${dest} ) ; \
+            for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
+              rm -rf $${subdir}/RCS ; \
+              rm -f  $${subdir}/\#* ; \
+              rm -f  $${subdir}/*~ ; \
+            done ; \
+          fi ; \
+        done
+       -cpset arch-lib/emacsclient ${bindir}/emacsclient 755 bin bin
+       -cpset arch-lib/etags ${bindir}/etags 755 bin bin
+       -cpset arch-lib/ctags ${bindir}/ctags 755 bin bin
+       -cpset etc/emacs.1 ${mandir}/emacs.1 444 bin bin
+       -/bin/rm -f ${bindir}/emacs
+       -cpset src/xemacs ${bindir}/emacs 1755 bin bin
+  
+install.xenix: all mkdir lockdir
+       -set ${COPYDESTS} ; \
+        for dir in ${COPYDIR} ; do \
+          dest=$$1 ; shift ; \
+          if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
+            (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xpf - ) ; \
+            for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
+              rm -rf $${subdir}/RCS ; \
+              rm -f  $${subdir}/\#* ; \
+              rm -f  $${subdir}/*~ ; \
+            done ; \
+          fi ; \
+        done
+       cp arch-lib/etags arch-lib/ctags arch-lib/emacsclient ${bindir}
+       chmod 755 ${bindir}/etags ${bindir}/ctags ${bindir}/emacsclient
+       cp etc/emacs.1 ${mandir}/emacs.1
+       chmod 444 ${mandir}/emacs.1
+       -mv -f ${bindir}/emacs ${bindir}/emacs.old
+       cp src/xemacs ${bindir}/emacs
+       chmod 1755 ${bindir}/emacs
+       -rm -f ${bindir}/emacs.old
+
+install.aix: all mkdir lockdir
+       -set ${COPYDESTS} ; \
+        for dir in ${COPYDIR} ; do \
+          dest=$$1 ; shift ; \
+          if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \
+            (cd $${dir}; tar cf - . ) | (cd $${dest}; umask 0; tar xBf - ) ; \
+            for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
+              rm -rf $${subdir}/RCS ; \
+              rm -f  $${subdir}/\#* ; \
+              rm -f  $${subdir}/*~ ; \
+            done ; \
+          fi ; \
+        done
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/emacsclient
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/etags
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -f ${bindir} etc/ctags
+       ${INSTALL_PROGRAM} ${INSTALLFLAGS} -M 1755 -f ${bindir} src/xemacs
+       ${INSTALL_DATA} ${INSTALLFLAGS} -M 444 -f ${mandir} etc/emacs.1
+       -rm -f ${bindir}/emacs
+       mv ${bindir}/xemacs ${bindir}/emacs
+
+# Build all the directories
+mkdir: FRC
+       # If any of the directories are below ${emacsdir}, create it.
+       -for dir in ${COPYDESTS}; do \
+          case "$${dir}" in \
+            ${emacsdir}/* ) \
+              if [ ! -d ${emacsdir} ]; then \
+                mkdir ${emacsdir} ; \
+                chmod 777 ${emacsdir} ; \
+              fi ; \
+              break\
+            ;; \
+          esac ; \
+        done
+       -mkdir ${COPYDESTS}
+       -chmod 777 ${COPYDESTS}
+
+lockdir:
+       # If the lockdir needs ${emacsdir}, create it.
+       -case "${lockdir}" in \
+          ${statedir}/* ) \
+            if [ ! -d ${emacsdir} ]; then \
+              mkdir ${emacsdir} ; \
+              chmod 777 ${emacsdir} ; \
+            fi \
+          ;; \
+        esac
+       -mkdir ${LOCKDIR}
+       -chmod 777 ${LOCKDIR}
+
+FRC:
+
+clean mostlyclean:
+       cd src; make clean
+       if [ `/bin/pwd` != `(cd ${emacsdir}; /bin/pwd)` ] ; then \
+               (cd etc; make clean); \
+               (cd lib-src; make clean); \
+       else true; \
+       fi
+       cd oldXMenu; make clean
+
+distclean:
+       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} distclean); done
+       -(cd lock; rm *)
+       -rm config.status config-tmp-*
+       -rm #*# *~
+
+realclean:
+       for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} realclean); done
+       (cd lock; rm *)
+       rm config.status
+
+TAGS tags:     lib-src
+       cd src; ../arch-lib/etags *.[ch] ../lisp/*.el ../lisp/term/*.el
+
+check:
+       @echo "We don't have any tests for GNU Emacs yet."
+
+dist:
+       make-dist