diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/Makefile.in | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4702a23453b..1b2fe96429b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -4,6 +4,9 @@ | |||
| 4 | 4 | ||
| 5 | 2007-11-28 Glenn Morris <rgm@gnu.org> | 5 | 2007-11-28 Glenn Morris <rgm@gnu.org> |
| 6 | 6 | ||
| 7 | * Makefile.in (maintainer-clean): Depend on bootstrap-clean to | ||
| 8 | delete .elc files. | ||
| 9 | |||
| 7 | * nxml/nxml-enc.el (xmltok-get-declared-encoding-position): | 10 | * nxml/nxml-enc.el (xmltok-get-declared-encoding-position): |
| 8 | Declare as a function. | 11 | Declare as a function. |
| 9 | 12 | ||
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index ce3361a5678..c81db54c72c 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -295,9 +295,12 @@ bootstrap-prepare: | |||
| 295 | $(lisp)/ps-print.el \ | 295 | $(lisp)/ps-print.el \ |
| 296 | $(lisp)/emacs-lisp/cl-loaddefs.el | 296 | $(lisp)/emacs-lisp/cl-loaddefs.el |
| 297 | 297 | ||
| 298 | maintainer-clean: distclean | 298 | maintainer-clean: distclean bootstrap-clean |
| 299 | cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) | 299 | cd $(lisp); rm -f $(AUTOGENEL) |
| 300 | 300 | ||
| 301 | ## NB note that this rules assume only one level of subdirs below lisp/. | ||
| 302 | ## If nested subdirs are added, it's probably time to switch to: | ||
| 303 | ## find $(lisp) -name "*.elc" -exec rm -f '{}' ';' | ||
| 301 | bootstrap-clean: | 304 | bootstrap-clean: |
| 302 | cd $(lisp); rm -f *.elc */*.elc | 305 | cd $(lisp); rm -f *.elc */*.elc |
| 303 | 306 | ||