aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris2013-08-19 23:36:10 -0700
committerGlenn Morris2013-08-19 23:36:10 -0700
commitf67dce44d5067f58d29880c39b05ab50ab706958 (patch)
tree17e4ecb756c98eacf2016cbae8e33584add89504 /Makefile.in
parent8c2f38aaab7a7a2f0605416fc2ee38701e41ab61 (diff)
downloademacs-f67dce44d5067f58d29880c39b05ab50ab706958.tar.gz
emacs-f67dce44d5067f58d29880c39b05ab50ab706958.zip
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):
Clean test/automated if present.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index ee74baf45cf..a0d91171d33 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -859,6 +859,8 @@ distclean: FRC
859 (cd leim; $(MAKE) $(MFLAGS) distclean) 859 (cd leim; $(MAKE) $(MFLAGS) distclean)
860 (cd lisp; $(MAKE) $(MFLAGS) distclean) 860 (cd lisp; $(MAKE) $(MFLAGS) distclean)
861 (cd nextstep && $(MAKE) $(MFLAGS) distclean) 861 (cd nextstep && $(MAKE) $(MFLAGS) distclean)
862 [ ! -d test/automated ] || \
863 cd test/automated && $(MAKE) $(MFLAGS) distclean
862 ${top_distclean} 864 ${top_distclean}
863 865
864### `bootstrap-clean' 866### `bootstrap-clean'
@@ -878,6 +880,8 @@ bootstrap-clean: FRC
878 (cd leim; $(MAKE) $(MFLAGS) maintainer-clean) 880 (cd leim; $(MAKE) $(MFLAGS) maintainer-clean)
879 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) 881 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean)
880 (cd nextstep && $(MAKE) $(MFLAGS) maintainer-clean) 882 (cd nextstep && $(MAKE) $(MFLAGS) maintainer-clean)
883 [ ! -d test/automated ] || \
884 cd test/automated && $(MAKE) $(MFLAGS) bootstrap-clean
881 [ ! -f config.log ] || mv -f config.log config.log~ 885 [ ! -f config.log ] || mv -f config.log config.log~
882 ${top_bootclean} 886 ${top_bootclean}
883 887
@@ -898,6 +902,8 @@ top_maintainer_clean=\
898maintainer-clean: bootstrap-clean FRC 902maintainer-clean: bootstrap-clean FRC
899 (cd src; $(MAKE) $(MFLAGS) maintainer-clean) 903 (cd src; $(MAKE) $(MFLAGS) maintainer-clean)
900 (cd lisp; $(MAKE) $(MFLAGS) maintainer-clean) 904 (cd lisp; $(MAKE) $(MFLAGS) maintainer-clean)
905 [ ! -d test/automated ] || \
906 cd test/automated && $(MAKE) $(MFLAGS) maintainer-clean
901 ${top_maintainer_clean} 907 ${top_maintainer_clean}
902 908
903### This doesn't actually appear in the coding standards, but Karl 909### This doesn't actually appear in the coding standards, but Karl