diff options
| author | Eli Zaretskii | 2006-01-13 09:50:43 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-01-13 09:50:43 +0000 |
| commit | 53fad1e433ef77e6d11b1b4ba65915d07f03d2c0 (patch) | |
| tree | 5b4ed5278e15080297cdc6410d16fcedb99f96b0 | |
| parent | d5ffcd96964e5715cfd220982c17a98d9cebbd7e (diff) | |
| download | emacs-53fad1e433ef77e6d11b1b4ba65915d07f03d2c0.tar.gz emacs-53fad1e433ef77e6d11b1b4ba65915d07f03d2c0.zip | |
(MH_E_SRC): Synchronize with Makefile.in.
(pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright years.
Fix small differences wrt Makefile.in.
(recompile): Use --eval '(batch-byte-recompile-directory 0)', like
Makefile.in does.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 51 |
2 files changed, 34 insertions, 25 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8bef8cadaa7..982be38b803 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2006-01-13 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in. | ||
| 4 | (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright | ||
| 5 | years. Fix small differences wrt Makefile.in. | ||
| 6 | (recompile): Use --eval '(batch-byte-recompile-directory 0)', like | ||
| 7 | Makefile.in does. | ||
| 8 | |||
| 1 | 2006-01-12 Bill Wohler <wohler@newt.com> | 9 | 2006-01-12 Bill Wohler <wohler@newt.com> |
| 2 | 10 | ||
| 3 | * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with | 11 | * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with |
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index f9c33dbed79..2023b3469f7 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -289,20 +289,21 @@ compile-after-backup: backup-compiled-files compile-always | |||
| 289 | # Recompile all Lisp files which are newer than their .elc files. | 289 | # Recompile all Lisp files which are newer than their .elc files. |
| 290 | # Note that this doesn't create .elc files. It only recompiles if an | 290 | # Note that this doesn't create .elc files. It only recompiles if an |
| 291 | # .elc is present. | 291 | # .elc is present. |
| 292 | 292 | # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as | |
| 293 | recompile: mh-autoloads doit | 293 | # this can break with GNU Make 3.81 and later if sh.exe is used. |
| 294 | $(emacs) -f batch-byte-recompile-directory $(lisp) | 294 | recompile: mh-autoloads doit $(lisp)/progmodes/cc-mode.elc |
| 295 | $(emacs) --eval $(ARGQUOTE)(batch-byte-recompile-directory 0)$(ARGQUOTE) $(lisp) | ||
| 295 | 296 | ||
| 296 | # Update MH-E internal autoloads. These are not to be confused with | 297 | # Update MH-E internal autoloads. These are not to be confused with |
| 297 | # the autoloads for the MH-E entry points, which are already in | 298 | # the autoloads for the MH-E entry points, which are already in |
| 298 | # loaddefs.el. | 299 | # loaddefs.el. |
| 299 | MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \ | 300 | MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \ |
| 300 | $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-customize.el \ | 301 | $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-comp.el \ |
| 301 | $(lisp)/mh-e/mh-e.el $(lisp)/mh-e/mh-funcs.el \ | 302 | $(lisp)/mh-e/mh-customize.el $(lisp)/mh-e/mh-e.el \ |
| 302 | $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-pick.el \ | 303 | $(lisp)/mh-e/mh-funcs.el $(lisp)/mh-e/mh-identity.el \ |
| 303 | $(lisp)/mh-e/mh-print.el $(lisp)/mh-e/mh-inc.el \ | 304 | $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-init.el \ |
| 304 | $(lisp)/mh-e/mh-init.el $(lisp)/mh-e/mh-index.el \ | 305 | $(lisp)/mh-e/mh-junk.el $(lisp)/mh-e/mh-mime.el \ |
| 305 | $(lisp)/mh-e/mh-identity.el $(lisp)/mh-e/mh-junk.el \ | 306 | $(lisp)/mh-e/mh-print.el $(lisp)/mh-e/mh-search.el \ |
| 306 | $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-speed.el \ | 307 | $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-speed.el \ |
| 307 | $(lisp)/mh-e/mh-utils.el | 308 | $(lisp)/mh-e/mh-utils.el |
| 308 | 309 | ||
| @@ -322,37 +323,37 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) | |||
| 322 | pre-mh-loaddefs.el-SH: | 323 | pre-mh-loaddefs.el-SH: |
| 323 | echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ | 324 | echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ |
| 324 | echo ";;" >> $@ | 325 | echo ";;" >> $@ |
| 325 | echo ";;; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc." >> $@ | 326 | echo ";; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc." >> $@ |
| 326 | echo ";;; Author: Bill Wohler <wohler@newt.com>" >> $@ | 327 | echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@ |
| 327 | echo ";;; Keywords: mail" >> $@ | 328 | echo ";; Keywords: mail" >> $@ |
| 328 | echo ";;; Commentary:" >> $@ | 329 | echo ";;; Commentary:" >> $@ |
| 329 | echo ";;; Change Log:" >> $@ | 330 | echo ";;; Change Log:" >> $@ |
| 330 | echo ";;; Code:" >> $@ | 331 | echo ";;; Code:" >> $@ |
| 331 | echo "" >> $@ | 332 | echo "" >> $@ |
| 332 | echo "(provide 'mh-loaddefs)" >> $@ | 333 | echo "(provide 'mh-loaddefs)" >> $@ |
| 333 | echo ";;; Local Variables:" >> $@ | 334 | echo ";; Local Variables:" >> $@ |
| 334 | echo ";;; version-control: never" >> $@ | 335 | echo ";; version-control: never" >> $@ |
| 335 | echo ";;; no-byte-compile: t" >> $@ | 336 | echo ";; no-byte-compile: t" >> $@ |
| 336 | echo ";;; no-update-autoloads: t" >> $@ | 337 | echo ";; no-update-autoloads: t" >> $@ |
| 337 | echo ";;; End:" >> $@ | 338 | echo ";; End:" >> $@ |
| 338 | echo ";;; mh-loaddefs.el ends here" >> $@ | 339 | echo ";;; mh-loaddefs.el ends here" >> $@ |
| 339 | 340 | ||
| 340 | pre-mh-loaddefs.el-CMD: | 341 | pre-mh-loaddefs.el-CMD: |
| 341 | echo ;;; mh-loaddefs.el --- automatically extracted autoloads> $@ | 342 | echo ;;; mh-loaddefs.el --- automatically extracted autoloads> $@ |
| 342 | echo ;;>> $@ | 343 | echo ;;>> $@ |
| 343 | echo ;;; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.>> $@ | 344 | echo ;; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.>> $@ |
| 344 | echo ;;; Author: Bill Wohler (wohler@newt.com)>> $@ | 345 | echo ;; Author: Bill Wohler (wohler@newt.com)>> $@ |
| 345 | echo ;;; Keywords: mail>> $@ | 346 | echo ;; Keywords: mail>> $@ |
| 346 | echo ;;; Commentary:>> $@ | 347 | echo ;;; Commentary:>> $@ |
| 347 | echo ;;; Change Log:>> $@ | 348 | echo ;;; Change Log:>> $@ |
| 348 | echo ;;; Code:>> $@ | 349 | echo ;;; Code:>> $@ |
| 349 | echo.>> $@ | 350 | echo.>> $@ |
| 350 | echo (provide 'mh-loaddefs)>> $@ | 351 | echo (provide 'mh-loaddefs)>> $@ |
| 351 | echo ;;; Local Variables:>> $@ | 352 | echo ;; Local Variables:>> $@ |
| 352 | echo ;;; version-control: never>> $@ | 353 | echo ;; version-control: never>> $@ |
| 353 | echo ;;; no-byte-compile: t>> $@ | 354 | echo ;; no-byte-compile: t>> $@ |
| 354 | echo ;;; no-update-autoloads: t>> $@ | 355 | echo ;; no-update-autoloads: t>> $@ |
| 355 | echo ;;; End:>> $@ | 356 | echo ;; End:>> $@ |
| 356 | echo ;;; mh-loaddefs.el ends here>> $@ | 357 | echo ;;; mh-loaddefs.el ends here>> $@ |
| 357 | 358 | ||
| 358 | # Prepare a bootstrap in the lisp subdirectory. | 359 | # Prepare a bootstrap in the lisp subdirectory. |