[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r99682: Simplify some leim/Makefile.i
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r99682: Simplify some leim/Makefile.in clean rules. |
Date: |
Wed, 17 Mar 2010 23:37:26 -0700 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99682
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2010-03-17 23:37:26 -0700
message:
Simplify some leim/Makefile.in clean rules.
* Makefile.in (maintainer-clean): Use bootstrap-clean.
(extraclean): Fix deletion patterns.
modified:
leim/ChangeLog
leim/Makefile.in
=== modified file 'leim/ChangeLog'
--- a/leim/ChangeLog 2010-03-18 06:33:39 +0000
+++ b/leim/ChangeLog 2010-03-18 06:37:26 +0000
@@ -1,5 +1,8 @@
2010-03-18 Glenn Morris <address@hidden>
+ * Makefile.in (maintainer-clean): Use bootstrap-clean.
+ (extraclean): Fix deletion patterns.
+
* Makefile.in (dot): Remove, since ../ is used throughout the
other Makefiles.
=== modified file 'leim/Makefile.in'
--- a/leim/Makefile.in 2010-03-18 06:33:39 +0000
+++ b/leim/Makefile.in 2010-03-18 06:37:26 +0000
@@ -275,16 +275,17 @@
# bootstrapping should not leave non-fresh .elc files behind.
bootstrap-clean: clean
rm -f ${WORLD}
+## FIXME some compiled files go to srcdir, some don't?
+# cd ${srcdir}; rm -f *.elc */*.elc
distclean: clean
if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
rm -f Makefile
-maintainer-clean: distclean
- rm -f ${WORLD}
+maintainer-clean: distclean bootstrap-clean
extraclean: maintainer-clean
- -rm -f *~ \#* m/?*~ s/?*~
+ -rm -f *~ \#* */*~ */\#*
.PHONY: check-declare
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r99682: Simplify some leim/Makefile.in clean rules.,
Glenn Morris <=