comparison lisp/Makefile.in @ 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 c8fb06423da0
children 9a3f00ed6c43
comparison
equal deleted inserted replaced
36917:1381d028009c 36918:b485ed237672
92 $(lisp)/term/vt420.el \ 92 $(lisp)/term/vt420.el \
93 $(lisp)/term/wyse50.el \ 93 $(lisp)/term/wyse50.el \
94 $(lisp)/term/xterm.el \ 94 $(lisp)/term/xterm.el \
95 $(lisp)/version.el 95 $(lisp)/version.el
96 96
97 # Files to compile before others during a bootstrap. This is done 97 # Files to compile before others during a bootstrap. This is done to
98 # to speed up the bootstrap process. 98 # speed up the bootstrap process. The CC files are compiled first
99 # because CC mode tweaks the compilation process, and requiring
100 # cc-mode when it is not compiled doesn't work during the
101 # bootstrapping.
99 102
100 COMPILE_FIRST = \ 103 COMPILE_FIRST = \
101 $(lisp)/emacs-lisp/byte-opt.el \ 104 $(lisp)/emacs-lisp/byte-opt.el \
102 $(lisp)/emacs-lisp/bytecomp.el \ 105 $(lisp)/emacs-lisp/bytecomp.el \
103 $(lisp)/subr.el 106 $(lisp)/subr.el \
107 $(lisp)/progmodes/cc-mode.el \
108 $(lisp)/progmodes/cc-vars.el
104 109
105 # The actual Emacs command run in the targets below. 110 # The actual Emacs command run in the targets below.
106 111
107 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) 112 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
108 113