(SET_SAVED_MENU_EVENT): New macro.
[bpt/emacs.git] / Makefile.in
index 623423d..dc5d06c 100644 (file)
@@ -294,11 +294,14 @@ lwlib/Makefile: lwlib/Makefile.in config.status
 ## source exists and is distinct from the destination.
 ## We don't depend on `all', but rather on ${SUBDIR}, so that we won't
 ## ever modify src/paths.h.
-install: ${SUBDIR} install-arch-dep install-arch-indep blessmail
+### We do install-arch-indep first because
+### the executable needs the Lisp files and DOC file to work properly.
+install: ${SUBDIR} install-arch-indep install-arch-dep blessmail
        @true
 
-### Note that we copy the DOC-* files from the build etc directory
-### as well as lots of things from ${srcdir}/etc.
+### Install the executables that were compiled specifically for this machine.
+### It would be nice to do something for a parallel make
+### to ensure that install-arch-indep finishes before this starts.
 install-arch-dep: mkdir
        (cd lib-src; \
          $(MAKE) install $(MFLAGS) prefix=${prefix} \
@@ -309,61 +312,87 @@ install-arch-dep: mkdir
        rm -f ${bindir}/$(EMACS)
        -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS)
 
-### Note that we copy the DOC-* files from the build etc directory
-### as well as lots of things from ${srcdir}/etc.
+### Install the files that are machine-independent.
+### Most of them come straight from the distribution;
+### the exception is the DOC-* files, which are copied
+### from the build directory.
+
 ### Note that we copy DOC* and then delete DOC
 ### as a workaround for a bug in tar on Ultrix 4.2.
-
 install-arch-indep: mkdir
        -set ${COPYDESTS} ; \
-        for dir in ${COPYDIR} ; do \
-          if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \
-            rm -rf $$1 ; \
-          fi ; \
-          shift ; \
-        done
+       for dir in ${COPYDIR} ; do \
+         if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \
+           rm -rf $$1 ; \
+         fi ; \
+         shift ; \
+       done
        -set ${COPYDESTS} ; \
-        mkdir ${COPYDESTS} ; \
-        chmod ugo+rx ${COPYDESTS} ; \
-        for dir in ${COPYDIR} ; do \
-          dest=$$1 ; shift ; \
-          [ -d $${dir} ] \
-          && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
-          && (echo "Copying $${dir}..." ; \
-              (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \
-              for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
-                rm -rf $${subdir}/RCS ; \
-                rm -rf $${subdir}/CVS ; \
-                rm -f  $${subdir}/\#* ; \
-                rm -f  $${subdir}/.\#* ; \
-                rm -f  $${subdir}/*~ ; \
-                rm -f  $${subdir}/*.orig ; \
-              done) ; \
-        done
+       mkdir ${COPYDESTS} ; \
+       chmod ugo+rx ${COPYDESTS} ; \
+       for dir in ${COPYDIR} ; do \
+         dest=$$1 ; shift ; \
+         [ -d $${dir} ] \
+         && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
+         && (echo "Copying $${dir} to $${dest}..." ; \
+             (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \
+             for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
+               rm -rf $${subdir}/RCS ; \
+               rm -rf $${subdir}/CVS ; \
+               rm -f  $${subdir}/\#* ; \
+               rm -f  $${subdir}/.\#* ; \
+               rm -f  $${subdir}/*~ ; \
+               rm -f  $${subdir}/*.orig ; \
+               rm -f  $${subdir}/[mM]akefile* ; \
+               rm -f  $${subdir}/ChangeLog* ; \
+               rm -f  $${subdir}/dired.todo ; \
+             done) ; \
+       done
        -rm -f ${lispdir}/subdirs.el
        $(srcdir)/update-subdirs ${lispdir}
+       -chmod -R a+r ${COPYDESTS}
        if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \
        then \
-          echo "Copying etc/DOC-* ..." ; \
-          (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \
-          (cd $(docdir); rm DOC) \
+          echo "Copying etc/DOC-* to ${docdir} ..." ; \
+          (cd ./etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \
+          (cd $(docdir); chmod a+r DOC*; rm DOC) \
+       else true; fi
+       if [ -r ./lisp ] \
+          && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \
+          && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \
+       then \
+          echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
+          (cd lisp; tar -cf - *.el *.elc)|(cd ${lispdir}; umask 0; tar -xvf - ); \
        else true; fi
        thisdir=`/bin/pwd`; \
        if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \
        then \
          (cd ${infodir};  \
-          if [ -f dir ] && [ ! -f dir.old ]; then mv -f dir dir.old; \
-          else mv -f dir dir.bak; fi; \
+          if [ -f dir ]; then \
+            if [ ! -f dir.old ]; then mv -f dir dir.old; \
+            else mv -f dir dir.bak; fi; \
+          fi; \
           cd ${srcdir}/info ; \
           (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \
-          for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \
-            (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f); \
+          (cd $${thisdir}; chmod a+r ${infodir}/dir); \
+          for f in ccmode* cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \
+            (cd $${thisdir}; \
+             ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f; \
+             chmod a+r ${infodir}/$$f); \
           done); \
        else true; fi
-       thisdir=`/bin/pwd`; cd ${srcdir}/etc; for page in emacs etags ctags ; do \
-         (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${man1dir}/$${page}${manext}); \
+       thisdir=`/bin/pwd`; \
+       cd ${srcdir}/etc; \
+       for page in emacs etags ctags ; do \
+         (cd $${thisdir}; \
+          ${INSTALL_DATA} ${srcdir}/etc/$${page}.1 ${man1dir}/$${page}${manext}; \
+          chmod a+r ${man1dir}/$${page}${manext}); \
        done
 
+### Build Emacs and install it, stripping binaries while installing them.
+install-strip:
+       $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
+
 ### Build all the directories we're going to install Emacs in. Since
 ### we may be creating several layers of directories (for example,
 ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs
@@ -444,7 +473,7 @@ clean: FRC
 top_distclean=\
        rm -f config.status config.cache config.log ; \
        rm -f Makefile ${SUBDIR_MAKEFILES} ; \
-       (cd lock && rm -f *)
+       (cd lock && (rm * || true))
 distclean: FRC
        (cd src;      $(MAKE) $(MFLAGS) distclean)
        (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
@@ -478,8 +507,8 @@ maintainer-clean: FRC
 ### it deletes backup and autosave files too.
 extraclean:
        for i in ${SUBDIR}; do (cd $$i; $(MAKE) $(MFLAGS) extraclean); done
-       -(cd lock && rm *)
-       -rm config.status config-tmp-*
+       ${top_distclean}
+       -rm config-tmp-*
        -rm -f *~ \#*
 
 ### Unlocking and relocking.  The idea of these productions is to reduce