(maintainer-clean): Depend on bootstrap-clean to delete .elc files.
This commit is contained in:
parent
571e4e6149
commit
6bf181fbdf
2 changed files with 8 additions and 2 deletions
|
|
@ -4,6 +4,9 @@
|
|||
|
||||
2007-11-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in (maintainer-clean): Depend on bootstrap-clean to
|
||||
delete .elc files.
|
||||
|
||||
* nxml/nxml-enc.el (xmltok-get-declared-encoding-position):
|
||||
Declare as a function.
|
||||
|
||||
|
|
|
|||
|
|
@ -295,9 +295,12 @@ bootstrap-prepare:
|
|||
$(lisp)/ps-print.el \
|
||||
$(lisp)/emacs-lisp/cl-loaddefs.el
|
||||
|
||||
maintainer-clean: distclean
|
||||
cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
|
||||
maintainer-clean: distclean bootstrap-clean
|
||||
cd $(lisp); rm -f $(AUTOGENEL)
|
||||
|
||||
## NB note that this rules assume only one level of subdirs below lisp/.
|
||||
## If nested subdirs are added, it's probably time to switch to:
|
||||
## find $(lisp) -name "*.elc" -exec rm -f '{}' ';'
|
||||
bootstrap-clean:
|
||||
cd $(lisp); rm -f *.elc */*.elc
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue