mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Simplify some leim/Makefile.in clean rules.
* Makefile.in (maintainer-clean): Use bootstrap-clean. (extraclean): Fix deletion patterns.
This commit is contained in:
parent
c1d052860f
commit
cbeed5af84
2 changed files with 7 additions and 3 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2010-03-18 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in (maintainer-clean): Use bootstrap-clean.
|
||||
(extraclean): Fix deletion patterns.
|
||||
|
||||
* Makefile.in (dot): Remove, since ../ is used throughout the
|
||||
other Makefiles.
|
||||
|
||||
|
|
|
|||
|
|
@ -275,16 +275,17 @@ clean mostlyclean:
|
|||
# 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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue