aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-21 07:18:39 +0000
committerRichard M. Stallman1994-05-21 07:18:39 +0000
commite6124e9d0c797e2d14a966bc67ee9949b2028f06 (patch)
tree24d989f77809f4ae60ffb9ba649d24a4bcbadaf7
parent546e6d5b17ff84f69dc76e78567b032ea846a999 (diff)
downloademacs-e6124e9d0c797e2d14a966bc67ee9949b2028f06.tar.gz
emacs-e6124e9d0c797e2d14a966bc67ee9949b2028f06.zip
(mostlyclean, clean, distclean, realclean)
(extraclean): Don't act on man subdir if it doesn't exist.
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 969fcb8a962..9c7e7ee5c9c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -386,7 +386,7 @@ mostlyclean: FRC.mostlyclean
386 (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean) 386 (cd oldXMenu; $(MAKE) $(MFLAGS) mostlyclean)
387 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean) 387 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean)
388 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean) 388 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean)
389 -(cd man; $(MAKE) $(MFLAGS) mostlyclean) 389 -(cd man && $(MAKE) $(MFLAGS) mostlyclean)
390 390
391### `clean' 391### `clean'
392### Delete all files from the current directory that are normally 392### Delete all files from the current directory that are normally
@@ -401,7 +401,7 @@ clean: FRC.clean
401 (cd oldXMenu; $(MAKE) $(MFLAGS) clean) 401 (cd oldXMenu; $(MAKE) $(MFLAGS) clean)
402 (cd lwlib; $(MAKE) $(MFLAGS) clean) 402 (cd lwlib; $(MAKE) $(MFLAGS) clean)
403 (cd lib-src; $(MAKE) $(MFLAGS) clean) 403 (cd lib-src; $(MAKE) $(MFLAGS) clean)
404 -(cd man; $(MAKE) $(MFLAGS) clean) 404 -(cd man && $(MAKE) $(MFLAGS) clean)
405 405
406### `distclean' 406### `distclean'
407### Delete all files from the current directory that are created by 407### Delete all files from the current directory that are created by
@@ -418,7 +418,7 @@ distclean: FRC.distclean
418 (cd oldXMenu; $(MAKE) $(MFLAGS) distclean) 418 (cd oldXMenu; $(MAKE) $(MFLAGS) distclean)
419 (cd lwlib; $(MAKE) $(MFLAGS) distclean) 419 (cd lwlib; $(MAKE) $(MFLAGS) distclean)
420 (cd lib-src; $(MAKE) $(MFLAGS) distclean) 420 (cd lib-src; $(MAKE) $(MFLAGS) distclean)
421 (cd man; $(MAKE) $(MFLAGS) distclean) 421 (cd man && $(MAKE) $(MFLAGS) distclean)
422 ${top_distclean} 422 ${top_distclean}
423 423
424 424
@@ -438,7 +438,7 @@ realclean: FRC.realclean
438 (cd oldXMenu; $(MAKE) $(MFLAGS) realclean) 438 (cd oldXMenu; $(MAKE) $(MFLAGS) realclean)
439 (cd lwlib; $(MAKE) $(MFLAGS) realclean) 439 (cd lwlib; $(MAKE) $(MFLAGS) realclean)
440 (cd lib-src; $(MAKE) $(MFLAGS) realclean) 440 (cd lib-src; $(MAKE) $(MFLAGS) realclean)
441 -(cd man; $(MAKE) $(MFLAGS) realclean) 441 -(cd man && $(MAKE) $(MFLAGS) realclean)
442 ${top_distclean} 442 ${top_distclean}
443 443
444### This doesn't actually appear in the coding standards, but Karl 444### This doesn't actually appear in the coding standards, but Karl