From 53fad1e433ef77e6d11b1b4ba65915d07f03d2c0 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 13 Jan 2006 09:50:43 +0000 Subject: [PATCH] (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. --- lisp/ChangeLog | 8 +++++++ 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 @@ +2006-01-13 Eli Zaretskii + + * makefile.w32-in (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. + 2006-01-12 Bill Wohler * 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 # Recompile all Lisp files which are newer than their .elc files. # Note that this doesn't create .elc files. It only recompiles if an # .elc is present. - -recompile: mh-autoloads doit - $(emacs) -f batch-byte-recompile-directory $(lisp) +# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as +# this can break with GNU Make 3.81 and later if sh.exe is used. +recompile: mh-autoloads doit $(lisp)/progmodes/cc-mode.elc + $(emacs) --eval $(ARGQUOTE)(batch-byte-recompile-directory 0)$(ARGQUOTE) $(lisp) # Update MH-E internal autoloads. These are not to be confused with # the autoloads for the MH-E entry points, which are already in # loaddefs.el. MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \ - $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-customize.el \ - $(lisp)/mh-e/mh-e.el $(lisp)/mh-e/mh-funcs.el \ - $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-pick.el \ - $(lisp)/mh-e/mh-print.el $(lisp)/mh-e/mh-inc.el \ - $(lisp)/mh-e/mh-init.el $(lisp)/mh-e/mh-index.el \ - $(lisp)/mh-e/mh-identity.el $(lisp)/mh-e/mh-junk.el \ + $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-comp.el \ + $(lisp)/mh-e/mh-customize.el $(lisp)/mh-e/mh-e.el \ + $(lisp)/mh-e/mh-funcs.el $(lisp)/mh-e/mh-identity.el \ + $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-init.el \ + $(lisp)/mh-e/mh-junk.el $(lisp)/mh-e/mh-mime.el \ + $(lisp)/mh-e/mh-print.el $(lisp)/mh-e/mh-search.el \ $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-speed.el \ $(lisp)/mh-e/mh-utils.el @@ -322,37 +323,37 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) pre-mh-loaddefs.el-SH: echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ echo ";;" >> $@ - echo ";;; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc." >> $@ - echo ";;; Author: Bill Wohler " >> $@ - echo ";;; Keywords: mail" >> $@ + echo ";; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc." >> $@ + echo ";; Author: Bill Wohler " >> $@ + echo ";; Keywords: mail" >> $@ echo ";;; Commentary:" >> $@ echo ";;; Change Log:" >> $@ echo ";;; Code:" >> $@ echo " " >> $@ echo "(provide 'mh-loaddefs)" >> $@ - echo ";;; Local Variables:" >> $@ - echo ";;; version-control: never" >> $@ - echo ";;; no-byte-compile: t" >> $@ - echo ";;; no-update-autoloads: t" >> $@ - echo ";;; End:" >> $@ + echo ";; Local Variables:" >> $@ + echo ";; version-control: never" >> $@ + echo ";; no-byte-compile: t" >> $@ + echo ";; no-update-autoloads: t" >> $@ + echo ";; End:" >> $@ echo ";;; mh-loaddefs.el ends here" >> $@ pre-mh-loaddefs.el-CMD: echo ;;; mh-loaddefs.el --- automatically extracted autoloads> $@ echo ;;>> $@ - echo ;;; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.>> $@ - echo ;;; Author: Bill Wohler (wohler@newt.com)>> $@ - echo ;;; Keywords: mail>> $@ + echo ;; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.>> $@ + echo ;; Author: Bill Wohler (wohler@newt.com)>> $@ + echo ;; Keywords: mail>> $@ echo ;;; Commentary:>> $@ echo ;;; Change Log:>> $@ echo ;;; Code:>> $@ echo. >> $@ echo (provide 'mh-loaddefs)>> $@ - echo ;;; Local Variables:>> $@ - echo ;;; version-control: never>> $@ - echo ;;; no-byte-compile: t>> $@ - echo ;;; no-update-autoloads: t>> $@ - echo ;;; End:>> $@ + echo ;; Local Variables:>> $@ + echo ;; version-control: never>> $@ + echo ;; no-byte-compile: t>> $@ + echo ;; no-update-autoloads: t>> $@ + echo ;; End:>> $@ echo ;;; mh-loaddefs.el ends here>> $@ # Prepare a bootstrap in the lisp subdirectory. -- 2.39.2