Add -h, -n, -r options.
[bpt/emacs.git] / Makefile.in
index 1fc1078..c982ea8 100644 (file)
@@ -37,6 +37,7 @@ MAKE = make  # BSD doesn't have it as a default.
 # ==================== Things `configure' Might Edit ====================
 
 CC=@CC@
+CPP=@CPP@
 C_SWITCH_SYSTEM=@c_switch_system@
 ALLOCA=@ALLOCA@
 LN_S=@LN_S@
@@ -168,7 +169,7 @@ buildlisppath=${srcdir}/lisp
 
 @rip_paths@lispdir=${srcdir}/lisp
 @rip_paths@externallispdir=${srcdir}/externallisp
-@rip_paths@locallisppath=${srcdir}/site-lisp:${datadir}/emacs/site-lisp
+@rip_paths@locallisppath=${srcdir}/site-lisp
 @rip_paths@etcdir=${srcdir}/etc
 @rip_paths@lockdir=${srcdir}/lock
 @rip_paths@archlibdir=${srcdir}/lib-src
@@ -185,6 +186,7 @@ INSTALL_DATA = @INSTALL_DATA@
 
 # Flags passed down to subdirectory makefiles.
 MFLAGS = 
+MAKEFLAGS = $(MFLAGS)
 
 # Subdirectories to make recursively.  `lisp' is not included
 # because the compiled lisp files are part of the distribution
@@ -231,7 +233,7 @@ lib-src: FRC.lib-src
 .RECURSIVE: ${SUBDIR}
 
 ${SUBDIR}: ${SUBDIR_MAKEFILES} FRC
-       cd $@; $(MAKE) all ${MFLAGS} \
+       cd $@; $(MAKE) all ${MAKEFLAGS} \
                CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
                prefix='${prefix}' srcdir='${srcdir}/$@' libdir='${libdir}'
 
@@ -239,7 +241,7 @@ ${SUBDIR}: ${SUBDIR_MAKEFILES} FRC
 ## edit the values for the path variables into them.  This means that
 ## when the user has built them from this makefile once, they will use
 ## the right default values for the path variables.
-lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile
+lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile vpath.sed
        rm -f lib-src/Makefile.tmp
        @echo "Producing \`lib-src/Makefile' from \`${srcdir}/lib-src/Makefile.in'."
        @(echo "# This file is generated from \`${srcdir}/lib-src/Makefile.in'." ; \
@@ -247,6 +249,7 @@ lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile
          echo "# running \`make lib-src/Makefile' at the top of the" ; \
          echo "# Emacs build tree instead, or editing" ;               \
          echo "# \`${srcdir}/lib-src/Makefile.in' itself." ;           \
+         subdir=lib-src;                                               \
          sed < ${srcdir}/lib-src/Makefile.in                           \
          -e 's|^\(version *=\).*$$|\1'"${version}"'|'                  \
          -e 's|^\(configname *=\).*$$|\1'"${configuration}"'|'         \
@@ -254,7 +257,7 @@ lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile
          -e 's|^\(exec_prefix *=\).*$$|\1'"${exec_prefix}"'|'          \
          -e 's|^\(libdir *=\).*$$|\1'"${libdir}"'|'                    \
          -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/lib-src|'            \
-         -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/lib-src|'             \
+         @vpath_sed@                                                   \
          -e 's|^\(archlibdir *=\).*$$|\1'"${archlibdir}"'|'            \
          -e 's|^\(ALLOCA *=\).*$$|\1'"${ALLOCA}"'|'                    \
          -e 's|^\(YACC *=\).*$$|\1'"${YACC}"'|'                        \
@@ -266,7 +269,7 @@ lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile
        @${srcdir}/move-if-change lib-src/Makefile.tmp lib-src/Makefile
        chmod -w lib-src/Makefile
 
-src/Makefile: ${srcdir}/src/Makefile.in Makefile
+src/Makefile: ${srcdir}/src/Makefile.in Makefile vpath.sed
        rm -f src/Makefile.tmp
        @echo "Producing \`src/Makefile' from \`${srcdir}/src/Makefile.in'."
        @(echo "# This file is generated from \`${srcdir}/src/Makefile.in'." ; \
@@ -274,18 +277,21 @@ src/Makefile: ${srcdir}/src/Makefile.in Makefile
          echo "# running \`make src/Makefile' at the top of the" ;     \
          echo "# Emacs build tree instead, or editing" ;               \
          echo "# \`${srcdir}/src/Makefile.in' itself." ;               \
+         subdir=src;                                           \
          sed < ${srcdir}/src/Makefile.in                               \
-         -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/src|'                \
-         -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/src|'                 \
-         -e 's|^CC *=.*$$|CC='"${CC}"'|'                               \
-         -e 's|^LN_S *=.*$$|LN_S='"${LN_S}"'|'                         \
-         -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|'                   \
-         -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1'"${LD_SWITCH_X_SITE}"'|'        \
+         -e 's|^\(srcdir *=\).*$$|\1${srcdir}/src|'                    \
+         @vpath_sed@                                                   \
+         -e 's|^CC *=.*$$|CC=${CC}|'                                   \
+         -e 's|^CPP *=.*$$|CPP=${CPP}|'                                \
+         -e 's|^LN_S *=.*$$|LN_S=${LN_S}|'                             \
+         -e 's|^CFLAGS *=.*$$|CFLAGS=${CFLAGS}|'                       \
+         -e 's|^\(C_SWITCH_SYSTEM *=\).*$$|\1'"${C_SWITCH_SYSTEM}"'|'  \
+         -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1${LD_SWITCH_X_SITE}|'    \
          -e '/^# DIST: /d') > src/Makefile.tmp
        @${srcdir}/move-if-change src/Makefile.tmp src/Makefile
        chmod -w src/Makefile
 
-oldXMenu/Makefile: ${srcdir}/oldXMenu/Makefile.in Makefile
+oldXMenu/Makefile: ${srcdir}/oldXMenu/Makefile.in Makefile vpath.sed
        rm -f oldXMenu/Makefile.tmp
        @echo "Producing \`oldXMenu/Makefile' from \`${srcdir}/oldXMenu/Makefile.in'."
        @(echo "# This file is generated from \`${srcdir}/oldXMenu/Makefile.in'." ; \
@@ -293,9 +299,10 @@ oldXMenu/Makefile: ${srcdir}/oldXMenu/Makefile.in Makefile
          echo "# running \`make oldXMenu/Makefile' at the top of the" ; \
          echo "# Emacs build tree instead, or editing" ;               \
          echo "# \`${srcdir}/oldXMenu/Makefile.in' itself." ;          \
+         subdir=oldXMenu;                                              \
          sed < ${srcdir}/oldXMenu/Makefile.in                          \
          -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/oldXMenu|'           \
-         -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/oldXMenu|'            \
+         @vpath_sed@                                                   \
          -e 's|^\(C_SWITCH_X_SITE *=\).*$$|\1'"${C_SWITCH_X_SITE}"'|'  \
          -e 's|^CC *=.*$$|CC='"${CC}"'|'                               \
          -e 's|^DEFS *=.*$$|DEFS='"${DEFS}"'|' \
@@ -326,7 +333,7 @@ install: all do-install
 ### as well as lots of things from ${srcdir}/etc.
 do-install: mkdir
        (cd lib-src; \
-         $(MAKE) install ${MFLAGS} prefix=${prefix} \
+         $(MAKE) install ${MAKEFLAGS} prefix=${prefix} \
            exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \
            archlibdir=${archlibdir})
        -set ${COPYDESTS} ; \
@@ -361,7 +368,7 @@ do-install: mkdir
             if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \
               ${INSTALL_DATA} dir ${infodir}/dir ; \
             fi ; \
-            for f in cl* emacs* forms* info* vip* ; do \
+            for f in cl* emacs* forms* gnus* info* sc* vip* ; do \
               ${INSTALL_DATA} $$f ${infodir}/$$f ; \
             done); \
        else true; fi
@@ -369,9 +376,9 @@ do-install: mkdir
          ${INSTALL_DATA} $${page}.1 ${mandir}/$${page}${manext} ; \
        done
        ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version}
-       chmod 1755  ${bindir}/emacs-${version}
+       -chmod 1755  ${bindir}/emacs-${version}
        rm -f ${bindir}/emacs
-       ln ${bindir}/emacs-${version} ${bindir}/emacs
+       -ln ${bindir}/emacs-${version} ${bindir}/emacs
 
 ### Build all the directories we're going to install Emacs in. Since
 ### we may be creating several layers of directories (for example,
@@ -383,59 +390,106 @@ mkdir: FRC.mkdir
          `echo ${locallisppath} | sed 's/:/ /'`
        chmod 777 ${COPYDESTS} ${lockdir}
 
+### Delete all the installed files that the `install' target would
+### create (but not the noninstalled files such as `make all' would
+### create).
+###
+### Don't delete the lisp and etc directories if they're in the source tree.
+uninstall:
+       (cd lib-src;                                    \
+        $(MAKE) ${MAKEFLAGS} uninstall                 \
+           prefix=${prefix} exec_prefix=${exec_prefix} \
+           bindir=${bindir} libdir=${libdir} archlibdir=${archlibdir})
+       for dir in ${lispdir} ${etcdir} ; do            \
+         case `(cd $${dir} ; pwd)` in                  \
+           `(cd ${srcdir} ; pwd)`* ) ;;                \
+           * ) rm -rf $${dir} ;;                       \
+         esac ;                                        \
+         case $${dir} in                               \
+           ${datadir}/emacs/${version}/* )             \
+             rm -rf ${datadir}/emacs/${version}        \
+           ;;                                          \
+         esac ;                                        \
+       done
+       (cd ${infodir}; rm -f cl* emacs* forms* info* vip*)
+       (cd ${mandir};  rm -f emacs.1 etags.1 ctags.1)
+       (cd ${bindir};  rm -f emacs-${version} emacs)
+
+
 ### Some makes seem to remember that they've built something called FRC,
 ### so you can only use a given FRC once per makefile.
 FRC FRC.src.paths.h FRC.src FRC.lib-src FRC.mkdir:
-
+FRC.mostlyclean FRC.clean FRC.distclean FRC.realclean:
 
 # ==================== Cleaning up and miscellanea ====================
 
-### `clean'
-###     Delete all files from the current directory that are normally
-###     created by building the program.  Don't delete the files that
-###     record the configuration.  Also preserve files that could be made
-###     by building, but normally aren't because the distribution comes
-###     with them.
 ### `mostlyclean'
-###     Like `clean', but may refrain from deleting a few files that
-###     people normally don't want to recompile.  For example, the
-###     `mostlyclean' target for GCC does not delete `libgcc.a', because
-###     recompiling it is rarely necessary and takes a lot of time.
+###      Like `clean', but may refrain from deleting a few files that people
+###      normally don't want to recompile.  For example, the `mostlyclean'
+###      target for GCC does not delete `libgcc.a', because recompiling it
+###      is rarely necessary and takes a lot of time.
+mostlyclean: FRC.mostlyclean
+       (cd src;      $(MAKE) ${MAKEFLAGS} mostlyclean)
+       (cd oldXMenu; $(MAKE) ${MAKEFLAGS} mostlyclean)
+       (cd lib-src;  $(MAKE) ${MAKEFLAGS} mostlyclean)
+       (cd man;      $(MAKE) ${MAKEFLAGS} mostlyclean)
+
+### `clean'
+###      Delete all files from the current directory that are normally
+###      created by building the program.  Don't delete the files that
+###      record the configuration.  Also preserve files that could be made
+###      by building, but normally aren't because the distribution comes
+###      with them.
 ### 
-clean mostlyclean:
-       cd src; $(MAKE) clean
-       cd lib-src; $(MAKE) clean
-       cd oldXMenu; $(MAKE) clean
-       if [ `(cd ${etcdir} && /bin/pwd)` != `(cd etc && /bin/pwd)` ] ; then \
-         cd etc; $(MAKE) clean; \
-       else true; \
-       fi
+###      Delete `.dvi' files here if they are not part of the distribution.
+clean: FRC.clean
+       (cd src;      $(MAKE) ${MAKEFLAGS} clean)
+       (cd oldXMenu; $(MAKE) ${MAKEFLAGS} clean)
+       (cd lib-src;  $(MAKE) ${MAKEFLAGS} clean)
+       (cd man;      $(MAKE) ${MAKEFLAGS} clean)
 
 ### `distclean'
-###     Delete all files from the current directory that are created by
-###     configuring or building the program.  This should leave only the
-###     files that would be in the distribution.
-distclean:
-       for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} distclean); done
-       -(cd lock; rm *)
-       -rm config.status config-tmp-*
+###      Delete all files from the current directory that are created by
+###      configuring or building the program.  If you have unpacked the
+###      source and built the program without creating any other files,
+###      `make distclean' should leave only the files that were in the
+###      distribution.
+top_distclean=\
+       rm -f config.status build-install ; \
+       rm -f Makefile ${SUBDIR_MAKEFILES} ; \
+       (cd lock ; rm -f *)
+distclean: FRC.distclean
+       (cd src;      $(MAKE) ${MAKEFLAGS} distclean)
+       (cd oldXMenu; $(MAKE) ${MAKEFLAGS} distclean)
+       (cd lib-src;  $(MAKE) ${MAKEFLAGS} distclean)
+       (cd man;      $(MAKE) ${MAKEFLAGS} distclean)
+       ${top_distclean}
+       
 
 ### `realclean'
-###     Delete everything from the current directory that can be
-###     reconstructed with this makefile.  This typically includes
-###     everything deleted by distclean, plus more: C source files
-###     produced by Bison, tags tables, info files, and so on.
-realclean:
-       for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} realclean); done
-       (cd lock; rm *)
-       rm config.status
+###      Delete everything from the current directory that can be
+###      reconstructed with this Makefile.  This typically includes
+###      everything deleted by distclean, plus more: C source files
+###      produced by Bison, tags tables, info files, and so on.
+### 
+###      One exception, however: `make realclean' should not delete
+###      `configure' even if `configure' can be remade using a rule in the
+###      Makefile.  More generally, `make realclean' should not delete
+###      anything that needs to exist in order to run `configure' and then
+###      begin to build the program.
+realclean: FRC.realclean
+       (cd src;      $(MAKE) ${MAKEFLAGS} realclean)
+       (cd oldXMenu; $(MAKE) ${MAKEFLAGS} realclean)
+       (cd lib-src;  $(MAKE) ${MAKEFLAGS} realclean)
+       -(cd man;     $(MAKE) ${MAKEFLAGS} realclean)
+       ${top_distclean}
 
 ### This doesn't actually appear in the coding standards, but Karl
 ### says GCC supports it, and that's where the configuration part of
 ### the coding standards seem to come from.  It's like distclean, but
 ### it deletes backup and autosave files too.
 extraclean:
-       for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MFLAGS} extraclean); done
+       for i in ${SUBDIR}; do (cd $$i; $(MAKE) ${MAKEFLAGS} extraclean); done
        -(cd lock; rm *)
        -rm config.status config-tmp-*
        -rm -f *~ \#*
@@ -456,24 +510,24 @@ SOURCES = ChangeLog GETTING.GNU.SOFTWARE INSTALL Makefile.in PROBLEMS \
 unlock:
        chmod u+w $(SOURCES) cpp/*
        -(cd elisp; chmod u+w Makefile README *.texi)
-       (cd etc; make unlock)
-       (cd lib-src; make unlock)
-       (cd lisp; make unlock)
+       (cd etc; $(MAKE) $(MAKEFLAGS) unlock)
+       (cd lib-src; $(MAKE) $(MAKEFLAGS) unlock)
+       (cd lisp; $(MAKE) $(MAKEFLAGS) unlock)
        (cd lisp/term; chmod u+w README *.el)
        (cd man; chmod u+w *texi* ChangeLog split-man)
        (cd oldXMenu; chmod u+w *.[ch] Makefile README)
-       (cd src; make unlock)
+       (cd src; $(MAKE) $(MAKEFLAGS) unlock)
 
 relock:
        chmod u-w $(SOURCES) cpp/*
        -(cd elisp; chmod u-w Makefile README *.texi)
-       (cd etc; make relock)
-       (cd lib-src; make relock)
-       (cd lisp; make relock)
+       (cd etc; $(MAKE) $(MAKEFLAGS) relock)
+       (cd lib-src; $(MAKE) $(MAKEFLAGS) relock)
+       (cd lisp; $(MAKE) $(MAKEFLAGS) relock)
        (cd lisp/term; chmod u+w README *.el)
        (cd man; chmod u+w *texi* ChangeLog split-man)
        (cd oldXMenu; chmod u+w *.[ch] Makefile README)
-       (cd src; make relock)
+       (cd src; $(MAKE) $(MAKEFLAGS) relock)
 
 TAGS tags:     lib-src
        (cd ${srcdir}/src; \
@@ -484,3 +538,8 @@ check:
 
 dist:
        cd ${srcdir}; make-dist
+
+info:
+       (cd ${srcdir}/man; $(MAKE) ${MAKEFLAGS} info)
+dvi:
+       (cd ${srcdir}/man; $(MAKE) ${MAKEFLAGS} dvi)