aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-03-17 23:37:26 -0700
committerGlenn Morris2010-03-17 23:37:26 -0700
commitcbeed5af844bb9d00ada02aec231ee5276f78ad7 (patch)
treed6a4d63e9dac5b2f321b6f1ec3715382a88e2594
parentc1d052860fcc483352b84b779af94b0bd1d3e033 (diff)
downloademacs-cbeed5af844bb9d00ada02aec231ee5276f78ad7.tar.gz
emacs-cbeed5af844bb9d00ada02aec231ee5276f78ad7.zip
Simplify some leim/Makefile.in clean rules.
* Makefile.in (maintainer-clean): Use bootstrap-clean. (extraclean): Fix deletion patterns.
-rw-r--r--leim/ChangeLog3
-rw-r--r--leim/Makefile.in7
2 files changed, 7 insertions, 3 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 513201c4a78..6ea68248238 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,5 +1,8 @@
12010-03-18 Glenn Morris <rgm@gnu.org> 12010-03-18 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (maintainer-clean): Use bootstrap-clean.
4 (extraclean): Fix deletion patterns.
5
3 * Makefile.in (dot): Remove, since ../ is used throughout the 6 * Makefile.in (dot): Remove, since ../ is used throughout the
4 other Makefiles. 7 other Makefiles.
5 8
diff --git a/leim/Makefile.in b/leim/Makefile.in
index bd67f373af1..f0fba8d2462 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -275,16 +275,17 @@ clean mostlyclean:
275# bootstrapping should not leave non-fresh .elc files behind. 275# bootstrapping should not leave non-fresh .elc files behind.
276bootstrap-clean: clean 276bootstrap-clean: clean
277 rm -f ${WORLD} 277 rm -f ${WORLD}
278## FIXME some compiled files go to srcdir, some don't?
279# cd ${srcdir}; rm -f *.elc */*.elc
278 280
279distclean: clean 281distclean: clean
280 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi 282 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
281 rm -f Makefile 283 rm -f Makefile
282 284
283maintainer-clean: distclean 285maintainer-clean: distclean bootstrap-clean
284 rm -f ${WORLD}
285 286
286extraclean: maintainer-clean 287extraclean: maintainer-clean
287 -rm -f *~ \#* m/?*~ s/?*~ 288 -rm -f *~ \#* */*~ */\#*
288 289
289.PHONY: check-declare 290.PHONY: check-declare
290 291