aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-07-09 06:55:18 +0000
committerKenichi Handa1997-07-09 06:55:18 +0000
commitfa2ea19a90b706aaa44817fb9c6e20c5218280a8 (patch)
treeac0e70efdf645ac765e6459764231e64bd01db98
parente397ee4108dd6f0df4b56c262644282fa9aef7ea (diff)
downloademacs-fa2ea19a90b706aaa44817fb9c6e20c5218280a8.tar.gz
emacs-fa2ea19a90b706aaa44817fb9c6e20c5218280a8.zip
(mostlyclean): Add cleaning leim directory.
(clean, distclean, maintainer-clean): Likewise.
-rw-r--r--Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 7a10a9da15c..95cb7a0700e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -434,6 +434,7 @@ mostlyclean: FRC
434 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean) 434 (cd lwlib; $(MAKE) $(MFLAGS) mostlyclean)
435 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean) 435 (cd lib-src; $(MAKE) $(MFLAGS) mostlyclean)
436 -(cd man && $(MAKE) $(MFLAGS) mostlyclean) 436 -(cd man && $(MAKE) $(MFLAGS) mostlyclean)
437 (cd leim; $(MAKE) $(MFLAGS) mostlyclean)
437 438
438### `clean' 439### `clean'
439### Delete all files from the current directory that are normally 440### Delete all files from the current directory that are normally
@@ -449,6 +450,7 @@ clean: FRC
449 (cd lwlib; $(MAKE) $(MFLAGS) clean) 450 (cd lwlib; $(MAKE) $(MFLAGS) clean)
450 (cd lib-src; $(MAKE) $(MFLAGS) clean) 451 (cd lib-src; $(MAKE) $(MFLAGS) clean)
451 -(cd man && $(MAKE) $(MFLAGS) clean) 452 -(cd man && $(MAKE) $(MFLAGS) clean)
453 (cd leim; $(MAKE) $(MFLAGS) clean)
452 454
453### `distclean' 455### `distclean'
454### Delete all files from the current directory that are created by 456### Delete all files from the current directory that are created by
@@ -466,6 +468,7 @@ distclean: FRC
466 (cd lwlib; $(MAKE) $(MFLAGS) distclean) 468 (cd lwlib; $(MAKE) $(MFLAGS) distclean)
467 (cd lib-src; $(MAKE) $(MFLAGS) distclean) 469 (cd lib-src; $(MAKE) $(MFLAGS) distclean)
468 (cd man && $(MAKE) $(MFLAGS) distclean) 470 (cd man && $(MAKE) $(MFLAGS) distclean)
471 (cd leim; $(MAKE) $(MFLAGS) distclean)
469 ${top_distclean} 472 ${top_distclean}
470 473
471### `maintainer-clean' 474### `maintainer-clean'
@@ -485,6 +488,7 @@ maintainer-clean: FRC
485 (cd lwlib; $(MAKE) $(MFLAGS) maintainer-clean) 488 (cd lwlib; $(MAKE) $(MFLAGS) maintainer-clean)
486 (cd lib-src; $(MAKE) $(MFLAGS) maintainer-clean) 489 (cd lib-src; $(MAKE) $(MFLAGS) maintainer-clean)
487 -(cd man && $(MAKE) $(MFLAGS) maintainer-clean) 490 -(cd man && $(MAKE) $(MFLAGS) maintainer-clean)
491 (cd leim; $(MAKE) $(MFLAGS) maintainer-clean)
488 ${top_distclean} 492 ${top_distclean}
489 493
490### This doesn't actually appear in the coding standards, but Karl 494### This doesn't actually appear in the coding standards, but Karl