diff options
| author | Glenn Morris | 2008-06-07 02:46:01 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-07 02:46:01 +0000 |
| commit | 183965528848da1618d523da5f6f3d53ef1762a6 (patch) | |
| tree | 5976012c07ecadd0874fcd36f3bc45919ca5cf1e | |
| parent | afe5ac582c554ea6be7ea52de0c077c1d15404cf (diff) | |
| download | emacs-183965528848da1618d523da5f6f3d53ef1762a6.tar.gz emacs-183965528848da1618d523da5f6f3d53ef1762a6.zip | |
(bootstrap-clean): Run autogen-clean.
(maintainer-clean): No need to run autogen-clean now it is included in
bootstrap-clean.
| -rw-r--r-- | lisp/ChangeLog | 23 | ||||
| -rw-r--r-- | lisp/Makefile.in | 7 |
2 files changed, 25 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a5174018a68..67da7b82c0d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2008-06-07 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * finder.el (finder-compile-keywords): Use lm-keywords-list rather than | ||
| 4 | lm-keywords. | ||
| 5 | |||
| 6 | * mail/sendmail.el (mail-interactive): Add :version. | ||
| 7 | |||
| 8 | * term/linux.el (terminal-init-linux): Use gpm-mouse-mode rather than | ||
| 9 | obsolete alias. | ||
| 10 | |||
| 11 | * ediff-merg.el, strokes.el, wid-edit.el, emacs-lisp/lisp-mnt.el: | ||
| 12 | * emulation/edt-mapper.el, eshell/em-dirs.el, eshell/em-glob.el: | ||
| 13 | * eshell/em-ls.el, eshell/em-unix.el, eshell/esh-cmd.el: | ||
| 14 | * eshell/esh-io.el, eshell/esh-opt.el, eshell/esh-test.el: | ||
| 15 | * eshell/esh-util.el, international/mule-cmds.el: | ||
| 16 | * international/mule-diag.el, mail/smtpmail.el, net/netrc.el: | ||
| 17 | * net/tls.el, progmodes/etags.el, textmodes/page-ext.el: | ||
| 18 | Remove unnecessary eval-when-compiles and eval-and-compiles. | ||
| 19 | |||
| 20 | * Makefile.in (bootstrap-clean): Run autogen-clean. | ||
| 21 | (maintainer-clean): No need to run autogen-clean now it is included in | ||
| 22 | bootstrap-clean. | ||
| 23 | |||
| 1 | 2008-06-06 Miles Bader <miles@gnu.org> | 24 | 2008-06-06 Miles Bader <miles@gnu.org> |
| 2 | 25 | ||
| 3 | * Makefile.in (ELCFILES): Add gnus/nndir.elc. | 26 | * Makefile.in (ELCFILES): Add gnus/nndir.elc. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 78ca42b4993..9c2410fc96d 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -1401,12 +1401,9 @@ bootstrap-prepare: | |||
| 1401 | autogen-clean: | 1401 | autogen-clean: |
| 1402 | cd $(lisp); rm -f $(AUTOGENEL) | 1402 | cd $(lisp); rm -f $(AUTOGENEL) |
| 1403 | 1403 | ||
| 1404 | maintainer-clean: distclean bootstrap-clean autogen-clean | 1404 | maintainer-clean: distclean bootstrap-clean |
| 1405 | 1405 | ||
| 1406 | ## NB note that this rules assume only one level of subdirs below lisp/. | 1406 | bootstrap-clean: autogen-clean |
| 1407 | ## If nested subdirs are added, it's probably time to switch to: | ||
| 1408 | ## find $(lisp) -name "*.elc" -exec rm -f '{}' ';' | ||
| 1409 | bootstrap-clean: | ||
| 1410 | cd $(lisp); rm -f *.elc */*.elc | 1407 | cd $(lisp); rm -f *.elc */*.elc |
| 1411 | 1408 | ||
| 1412 | # Generate/update files for the bootstrap process. | 1409 | # Generate/update files for the bootstrap process. |