summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-08-19 23:36:10 -0700
committerGlenn Morris <rgm@gnu.org>2013-08-19 23:36:10 -0700
commitf67dce44d5067f58d29880c39b05ab50ab706958 (patch)
tree17e4ecb756c98eacf2016cbae8e33584add89504 /Makefile.in
parent8c2f38aaab7a7a2f0605416fc2ee38701e41ab61 (diff)
downloademacs-f67dce44d5067f58d29880c39b05ab50ab706958.tar.gz
* 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
(cd leim; $(MAKE) $(MFLAGS) distclean)
(cd lisp; $(MAKE) $(MFLAGS) distclean)
(cd nextstep && $(MAKE) $(MFLAGS) distclean)
+ [ ! -d test/automated ] || \
+ cd test/automated && $(MAKE) $(MFLAGS) distclean
${top_distclean}
### `bootstrap-clean'
@@ -878,6 +880,8 @@ bootstrap-clean: FRC
(cd leim; $(MAKE) $(MFLAGS) maintainer-clean)
(cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean)
(cd nextstep && $(MAKE) $(MFLAGS) maintainer-clean)
+ [ ! -d test/automated ] || \
+ cd test/automated && $(MAKE) $(MFLAGS) bootstrap-clean
[ ! -f config.log ] || mv -f config.log config.log~
${top_bootclean}
@@ -898,6 +902,8 @@ top_maintainer_clean=\
maintainer-clean: bootstrap-clean FRC
(cd src; $(MAKE) $(MFLAGS) maintainer-clean)
(cd lisp; $(MAKE) $(MFLAGS) maintainer-clean)
+ [ ! -d test/automated ] || \
+ cd test/automated && $(MAKE) $(MFLAGS) maintainer-clean
${top_maintainer_clean}
### This doesn't actually appear in the coding standards, but Karl