aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-07 02:46:01 +0000
committerGlenn Morris2008-06-07 02:46:01 +0000
commit183965528848da1618d523da5f6f3d53ef1762a6 (patch)
tree5976012c07ecadd0874fcd36f3bc45919ca5cf1e
parentafe5ac582c554ea6be7ea52de0c077c1d15404cf (diff)
downloademacs-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/ChangeLog23
-rw-r--r--lisp/Makefile.in7
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 @@
12008-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
12008-06-06 Miles Bader <miles@gnu.org> 242008-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:
1401autogen-clean: 1401autogen-clean:
1402 cd $(lisp); rm -f $(AUTOGENEL) 1402 cd $(lisp); rm -f $(AUTOGENEL)
1403 1403
1404maintainer-clean: distclean bootstrap-clean autogen-clean 1404maintainer-clean: distclean bootstrap-clean
1405 1405
1406## NB note that this rules assume only one level of subdirs below lisp/. 1406bootstrap-clean: autogen-clean
1407## If nested subdirs are added, it's probably time to switch to:
1408## find $(lisp) -name "*.elc" -exec rm -f '{}' ';'
1409bootstrap-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.