Added bug-report keybindings and menu entries.
[bpt/emacs.git] / Makefile.in
index 092a460..9c7e7ee 100644 (file)
@@ -221,7 +221,11 @@ src/paths.h: Makefile ${srcdir}/src/paths.h.in FRC.src.paths.h
 
 src:   lib-src FRC.src
 
-lib-src: FRC.lib-src src/paths.h
+# This ought to depend on src/paths.h, so that in parallel make
+# src/paths.h will be available for the compilations in lib-src.
+# But that causes trouble in `make install' if a different prefix
+# is specified at that time.
+lib-src: FRC.lib-src
 
 .RECURSIVE: ${SUBDIR}
 
@@ -266,7 +270,7 @@ 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;
+install: ${SUBDIR} install-arch-dep install-arch-indep blessmail;
 
 ### Note that we copy the DOC-* files from the build etc directory
 ### as well as lots of things from ${srcdir}/etc.
@@ -382,7 +386,7 @@ mostlyclean: FRC.mostlyclean
        (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean)
        (cd lwlib;    $(MAKE) $(MFLAGS) mostlyclean)
        (cd lib-src;  $(MAKE) $(MFLAGS) mostlyclean)
-       -(cd man;     $(MAKE) $(MFLAGS) mostlyclean)
+       -(cd man &&   $(MAKE) $(MFLAGS) mostlyclean)
 
 ### `clean'
 ###      Delete all files from the current directory that are normally
@@ -397,7 +401,7 @@ clean: FRC.clean
        (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
        (cd lwlib;    $(MAKE) $(MFLAGS) clean)
        (cd lib-src;  $(MAKE) $(MFLAGS) clean)
-       -(cd man;     $(MAKE) $(MFLAGS) clean)
+       -(cd man &&   $(MAKE) $(MFLAGS) clean)
 
 ### `distclean'
 ###      Delete all files from the current directory that are created by
@@ -414,7 +418,7 @@ distclean: FRC.distclean
        (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
        (cd lwlib;    $(MAKE) $(MFLAGS) distclean)
        (cd lib-src;  $(MAKE) $(MFLAGS) distclean)
-       (cd man;      $(MAKE) $(MFLAGS) distclean)
+       (cd man &&    $(MAKE) $(MFLAGS) distclean)
        ${top_distclean}
        
 
@@ -434,7 +438,7 @@ realclean: FRC.realclean
        (cd oldXMenu; $(MAKE) $(MFLAGS) realclean)
        (cd lwlib;    $(MAKE) $(MFLAGS) realclean)
        (cd lib-src;  $(MAKE) $(MFLAGS) realclean)
-       -(cd man;     $(MAKE) $(MFLAGS) realclean)
+       -(cd man &&   $(MAKE) $(MFLAGS) realclean)
        ${top_distclean}
 
 ### This doesn't actually appear in the coding standards, but Karl