Mercurial > emacs
changeset 36918:b485ed237672
(COMPILE_FIRST): Add cc-mode.el
and cc-vars.el.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Mar 2001 12:55:34 +0000 |
parents | 1381d028009c |
children | c7548b39717f |
files | lisp/Makefile.in lisp/makefile.w32-in |
diffstat | 2 files changed, 16 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/Makefile.in Wed Mar 21 11:48:17 2001 +0000 +++ b/lisp/Makefile.in Wed Mar 21 12:55:34 2001 +0000 @@ -94,13 +94,18 @@ $(lisp)/term/xterm.el \ $(lisp)/version.el -# Files to compile before others during a bootstrap. This is done -# to speed up the bootstrap process. +# Files to compile before others during a bootstrap. This is done to +# speed up the bootstrap process. The CC files are compiled first +# because CC mode tweaks the compilation process, and requiring +# cc-mode when it is not compiled doesn't work during the +# bootstrapping. COMPILE_FIRST = \ $(lisp)/emacs-lisp/byte-opt.el \ $(lisp)/emacs-lisp/bytecomp.el \ - $(lisp)/subr.el + $(lisp)/subr.el \ + $(lisp)/progmodes/cc-mode.el \ + $(lisp)/progmodes/cc-vars.el # The actual Emacs command run in the targets below.
--- a/lisp/makefile.w32-in Wed Mar 21 11:48:17 2001 +0000 +++ b/lisp/makefile.w32-in Wed Mar 21 12:55:34 2001 +0000 @@ -96,13 +96,18 @@ $(lisp)/term/xterm.el \ $(lisp)/version.el -# Files to compile before others during a bootstrap. This is done -# to speed up the bootstrap process. +# Files to compile before others during a bootstrap. This is done to +# speed up the bootstrap process. The CC files are compiled first +# because CC mode tweaks the compilation process, and requiring +# cc-mode when it is not compiled doesn't work during the +# bootstrapping. COMPILE_FIRST = \ $(lisp)/emacs-lisp/byte-opt.el \ $(lisp)/emacs-lisp/bytecomp.el \ - $(lisp)/subr.el + $(lisp)/subr.el \ + $(lisp)/progmodes/cc-mode.el \ + $(lisp)/progmodes/cc-vars.el # The actual Emacs command run in the targets below.