* admin/gitmerge.el (gitmerge-missing):
[emacs.git] / lisp / Makefile.in
blobde3dc186170ac8d1b452a3bb466a752ed0c6e245
1 ### @configure_input@
3 # Copyright (C) 2000-2017 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
20 SHELL = @SHELL@
22 srcdir = @srcdir@
23 top_srcdir = @top_srcdir@
24 lisp = $(srcdir)
25 VPATH = $(srcdir)
26 EXEEXT = @EXEEXT@
28 # Empty for all systems except MinGW, where xargs needs an explicit
29 # limitation.
30 XARGS_LIMIT = @XARGS_LIMIT@
32 # 'make' verbosity.
33 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
35 AM_V_ELC = $(am__v_ELC_@AM_V@)
36 am__v_ELC_ = $(am__v_ELC_@AM_DEFAULT_V@)
37 am__v_ELC_0 = @echo " ELC " $@;
38 am__v_ELC_1 =
40 AM_V_GEN = $(am__v_GEN_@AM_V@)
41 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
42 am__v_GEN_0 = @echo " GEN " $@;
43 am__v_GEN_1 =
45 AM_V_at = $(am__v_at_@AM_V@)
46 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
47 am__v_at_0 = @
48 am__v_at_1 =
51 FIND_DELETE = @FIND_DELETE@
53 # You can specify a different executable on the make command line,
54 # e.g. "make EMACS=../src/emacs ...".
56 # We never change directory before running Emacs, so a relative file
57 # name is fine, and makes life easier. If we need to change
58 # directory, we can use emacs --chdir.
59 EMACS = ../src/emacs${EXEEXT}
61 # Command line flags for Emacs.
63 EMACSOPT = -batch --no-site-file --no-site-lisp
65 # Extra flags to pass to the byte compiler
66 BYTE_COMPILE_EXTRA_FLAGS =
67 # For example to not display the undefined function warnings you can use this:
68 # BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))'
69 # The example above is just for developers, it should not be used by default.
71 # Those automatically generated autoload files that need special rules
72 # to build; ie not including things created via generated-autoload-file
73 # (eg calc/calc-loaddefs.el).
74 LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \
75 $(lisp)/calendar/diary-loaddefs.el \
76 $(lisp)/calendar/hol-loaddefs.el \
77 $(lisp)/mh-e/mh-loaddefs.el \
78 $(lisp)/net/tramp-loaddefs.el
80 # All generated autoload files.
81 loaddefs = $(shell find ${srcdir} -name '*loaddefs.el' ! -name '.*')
82 # Elisp files auto-generated.
83 AUTOGENEL = ${loaddefs} ${srcdir}/cus-load.el ${srcdir}/finder-inf.el \
84 ${srcdir}/subdirs.el ${srcdir}/eshell/esh-groups.el
86 # Set load-prefer-newer for the benefit of the non-bootstrappers.
87 BYTE_COMPILE_FLAGS = \
88 --eval '(setq load-prefer-newer t)' $(BYTE_COMPILE_EXTRA_FLAGS)
90 # Files to compile before others during a bootstrap. This is done to
91 # speed up the bootstrap process. They're ordered by size, so we use
92 # the slowest-compiler on the smallest file and move to larger files as the
93 # compiler gets faster. 'autoload.elc' comes last because it is not used by
94 # the compiler (so its compilation does not speed up subsequent compilations),
95 # it's only placed here so as to speed up generation of the loaddefs.el file.
97 COMPILE_FIRST = \
98 $(lisp)/emacs-lisp/macroexp.elc \
99 $(lisp)/emacs-lisp/cconv.elc \
100 $(lisp)/emacs-lisp/byte-opt.elc \
101 $(lisp)/emacs-lisp/bytecomp.elc \
102 $(lisp)/emacs-lisp/autoload.elc
104 # Prevent any settings in the user environment causing problems.
105 unexport EMACSDATA EMACSDOC EMACSPATH
107 # The actual Emacs command run in the targets below.
108 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
109 emacs = EMACSLOADPATH= '$(EMACS)' $(EMACSOPT)
111 ## Subdirectories, relative to builddir.
112 SUBDIRS = $(sort $(shell find ${srcdir} -type d -print))
113 ## Subdirectories, relative to srcdir.
114 SUBDIRS_REL = $(patsubst ${srcdir}%,.%,${SUBDIRS})
115 ## All subdirectories except 'obsolete' and 'term'.
116 SUBDIRS_ALMOST = $(filter-out ${srcdir}/obsolete ${srcdir}/term,${SUBDIRS})
117 ## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs).
118 ## We don't want the leim files listed as packages, especially
119 ## since many share basenames with files in language/.
120 SUBDIRS_FINDER = $(filter-out ${srcdir}/leim%,${SUBDIRS_ALMOST})
121 ## All subdirectories in which we might want to create subdirs.el.
122 SUBDIRS_SUBDIRS = $(filter-out ${srcdir}/cedet% ${srcdir}/leim%,${SUBDIRS})
124 # cus-load and finder-inf are not explicitly requested by anything, so
125 # we add them here to make sure they get built.
126 all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el
128 PHONY_EXTRAS =
129 .PHONY: all custom-deps finder-data autoloads update-subdirs $(PHONY_EXTRAS)
131 # custom-deps and finder-data both used to scan _all_ the *.el files.
132 # This could lead to problems in parallel builds if automatically
133 # generated *.el files (eg loaddefs etc) were being changed at the same time.
134 # One solution was to add autoloads as a prerequisite:
135 # https://lists.gnu.org/r/emacs-pretest-bug/2007-01/msg00469.html
136 # https://lists.gnu.org/r/bug-gnu-emacs/2007-12/msg00171.html
137 # However, this meant that running these targets modified loaddefs.el,
138 # every time (due to time-stamping). Calling these rules from
139 # bootstrap-after would modify loaddefs after src/emacs, resulting
140 # in make install remaking src/emacs for no real reason:
141 # https://lists.gnu.org/r/emacs-devel/2008-02/msg00311.html
142 # Nowadays these commands don't scan automatically generated files,
143 # since they will never contain any useful information
144 # (see finder-no-scan-regexp and custom-dependencies-no-scan-regexp).
145 custom-deps:
146 $(AM_V_at)$(MAKE) PHONY_EXTRAS=$(lisp)/cus-load.el $(lisp)/cus-load.el
147 $(lisp)/cus-load.el:
148 $(AM_V_GEN)$(emacs) -l cus-dep \
149 --eval '(setq generated-custom-dependencies-file (unmsys--file-name "$(srcdir)/cus-load.el"))' \
150 -f custom-make-dependencies ${SUBDIRS_ALMOST}
152 finder-data:
153 $(AM_V_at)$(MAKE) PHONY_EXTRAS=$(lisp)/finder-inf.el \
154 $(lisp)/finder-inf.el
155 $(lisp)/finder-inf.el:
156 $(AM_V_GEN)$(emacs) -l finder \
157 --eval '(setq generated-finder-keywords-file (unmsys--file-name "$(srcdir)/finder-inf.el"))' \
158 -f finder-compile-keywords-make-dist ${SUBDIRS_FINDER}
160 ## Comments on loaddefs generation:
162 # loaddefs depends on gen-lisp for two reasons:
163 # 1) In ../src, the emacs target depends on loaddefs but not on eg leim-list.
164 # So having leim as a dependency of loaddefs (via gen-lisp) ensures leim-list
165 # gets created before the final emacs is dumped. Having leim
166 # dependencies in ../src as well would create a parallel race condition.
168 # 2) Files that are marked no-update-autoloads still get recorded in loaddefs.
169 # So those files should be generated before we make autoloads, if we
170 # don't want a successive make autoloads to change the output file.
171 # Said changes are trivial (only comments in the "files without autoloads"
172 # section), but still can be annoying. Of course, if generated lisp files
173 # do contain autoloads, it is essential they be built before make autoloads.
174 # (Also, if a generated file is not written atomically, it is possible that
175 # in a parallel build, make autoloads could read a partial version of it.)
177 # We'd really like to add "make -C ../admin/unidata all" to gen-lisp
178 # because of 2) above, but it causes a race condition in parallel
179 # builds because ../src also runs that rule. Given the limitations of
180 # recursive make, the only way to fix that would be to remove unidata
181 # from ../src rules, but that doesn't seem possible due to the various
182 # non-trivial dependencies.
184 # We make $(lisp)/loaddefs.el a dependency of .PHONY to cause Make to
185 # ignore its time stamp. That's because the real dependencies of
186 # loaddefs.el aren't known to Make, they are implemented in
187 # batch-update-autoloads, which only updates the autoloads whose
188 # sources have changed.
190 # Use expand-file-name rather than $abs_scrdir so that Emacs does not
191 # get confused when it compares file-names for equality.
193 autoloads .PHONY: $(lisp)/loaddefs.el
194 $(lisp)/loaddefs.el: gen-lisp $(LOADDEFS)
195 @echo Directories for loaddefs: ${SUBDIRS_ALMOST}
196 $(AM_V_GEN)$(emacs) -l autoload \
197 --eval '(setq autoload-ensure-writable t)' \
198 --eval '(setq autoload-builtin-package-versions t)' \
199 --eval '(setq generated-autoload-file (expand-file-name (unmsys--file-name "$@")))' \
200 -f batch-update-autoloads ${SUBDIRS_ALMOST}
202 # autoloads only runs when loaddefs.el is nonexistent, although it
203 # generates a number of different files. Provide a force option to enable
204 # regeneration of all these files.
205 .PHONY: autoloads-force
206 autoloads-force:
207 rm loaddefs.el
208 $(MAKE) autoloads
210 # This is required by the bootstrap-emacs target in ../src/Makefile, so
211 # we know that if we have an emacs executable, we also have a subdirs.el.
212 $(lisp)/subdirs.el:
213 $(AM_V_GEN)$(MAKE) update-subdirs
214 update-subdirs:
215 $(AM_V_at)for file in ${SUBDIRS_SUBDIRS}; do \
216 $(srcdir)/../build-aux/update-subdirs $$file; \
217 done;
219 .PHONY: updates repo-update update-authors update-gnus-news
221 # Some modes of make-dist use this.
222 updates: update-subdirs autoloads finder-data custom-deps
224 # This is useful after updating from the repository; but it doesn't do
225 # anything that a plain "make" at top-level doesn't. The only
226 # difference between this and this directory's "all" rule is that this
227 # runs "autoloads" as well (because it uses "compile" rather than
228 # "compile-main"). In a bootstrap, $(lisp) in src/Makefile triggers
229 # this directory's autoloads rule.
230 repo-update: compile finder-data custom-deps
232 # Update etc/AUTHORS and etc/GNUS-NEWS.
234 update-authors:
235 $(emacs) -L "$(top_srcdir)/admin" -l authors \
236 -f batch-update-authors "$(top_srcdir)/etc/AUTHORS" "$(top_srcdir)"
238 update-gnus-news:
239 $(emacs) -L "$(top_srcdir)/doc/misc" -l gnus-news -f batch-gnus-news \
240 "$(top_srcdir)/doc/misc/gnus-news.texi" \
241 "$(top_srcdir)/etc/GNUS-NEWS"
243 FORCE:
244 .PHONY: FORCE
246 tagsfiles = $(shell find ${srcdir} -name '*.el' \
247 ! -name '.*' ! -name '*loaddefs.el')
248 tagsfiles := $(filter-out ${srcdir}/ldefs-boot.el,${tagsfiles})
249 tagsfiles := $(filter-out ${srcdir}/eshell/esh-groups.el,${tagsfiles})
251 ETAGS = ../lib-src/etags${EXEEXT}
253 ${ETAGS}: FORCE
254 ${MAKE} -C ../lib-src $(notdir $@)
256 ## The use of xargs is to stop the command line getting too long
257 ## on MS Windows, when the MSYS Bash passes it to a MinGW compiled
258 ## etags. It might be better to use find in a similar way to
259 ## compile-main. But maybe this is not even necessary any more now
260 ## that this uses relative filenames.
261 TAGS: ${ETAGS} ${tagsfiles}
262 rm -f $@
263 touch $@
264 ls ${tagsfiles} | xargs $(XARGS_LIMIT) "${ETAGS}" -a -o $@
267 # The src/Makefile.in has its own set of dependencies and when they decide
268 # that one Lisp file needs to be re-compiled, we had better recompile it as
269 # well, otherwise every subsequent make will again call us, until we finally
270 # end up deciding that yes, the file deserves recompilation.
271 # One option is to try and reproduce exactly the same dependencies here as
272 # we have in src/Makefile.in, but it turns out to be painful
273 # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we
274 # only know of $(lisp)/foo.elc). So instead we provide a direct way for
275 # src/Makefile.in to rebuild a particular Lisp file, no questions asked.
276 # Use byte-compile-refresh-preloaded to try and work around some of
277 # the most common problems of not bootstrapping from a clean state.
278 THEFILE = no-such-file
279 .PHONY: $(THEFILE)c
280 $(THEFILE)c:
281 $(AM_V_ELC)$(emacs) $(BYTE_COMPILE_FLAGS) \
282 -l bytecomp -f byte-compile-refresh-preloaded \
283 -f batch-byte-compile $(THEFILE)
285 # Files MUST be compiled one by one. If we compile several files in a
286 # row (i.e., in the same instance of Emacs) we can't make sure that
287 # the compilation environment is clean. We also set the load-path of
288 # the Emacs used for compilation to the current directory and its
289 # subdirectories, to make sure require's and load's in the files being
290 # compiled find the right files.
292 .SUFFIXES: .elc .el
294 # An old-fashioned suffix rule, which, according to the GNU Make manual,
295 # cannot have prerequisites.
296 .el.elc:
297 $(AM_V_ELC)$(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $<
299 .PHONY: compile-first compile-main compile compile-always
301 compile-first: $(COMPILE_FIRST)
303 # In 'compile-main' we could directly do
304 # ... | xargs $(MAKE)
305 # and it works, but it generates a lot of messages like
306 # make[2]: gnus/gnus-mlspl.elc is up to date.
307 # so instead, we use "xargs echo" to split the list of file into manageable
308 # chunks and then use an intermediate 'compile-targets' target so the
309 # actual targets (the .elc files) are not mentioned as targets on the
310 # make command line.
313 .PHONY: compile-targets
314 # TARGETS is set dynamically in the recursive call from 'compile-main'.
315 compile-targets: $(TARGETS)
317 # Compile all the Elisp files that need it. Beware: it approximates
318 # 'no-byte-compile', so watch out for false-positives!
319 compile-main: gen-lisp compile-clean
320 @(cd $(lisp) && \
321 els=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
322 for el in $$els; do \
323 test -f $$el || continue; \
324 test ! -f $${el}c && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el > /dev/null && continue; \
325 echo "$${el}c"; \
326 done | xargs $(XARGS_LIMIT) echo) | \
327 while read chunk; do \
328 $(MAKE) compile-targets TARGETS="$$chunk"; \
329 done
331 .PHONY: compile-clean
332 # Erase left-over .elc files that do not have a corresponding .el file.
333 compile-clean:
334 @cd $(lisp) && \
335 elcs=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \
336 for el in `echo $$elcs | sed -e 's/\.elc/\.el/g'`; do \
337 if test -f "$$el" || test ! -f "$${el}c"; then :; else \
338 echo rm "$${el}c"; \
339 rm "$${el}c"; \
340 fi \
341 done
343 .PHONY: gen-lisp leim semantic
345 ## make -C ../admin/unidata all should be here, but that would race
346 ## with ../src. See comments above for loaddefs.
347 gen-lisp: leim semantic
349 leim:
350 $(MAKE) -C ../leim all EMACS="$(EMACS)"
352 semantic:
353 $(MAKE) -C ../admin/grammars all EMACS="$(EMACS:.%=../.%)"
355 # Compile all Lisp files, but don't recompile those that are up to
356 # date. Some .el files don't get compiled because they set the
357 # local variable no-byte-compile.
358 # Calling make recursively because suffix rule cannot have prerequisites.
359 compile: $(LOADDEFS) autoloads compile-first
360 $(MAKE) compile-main
362 # Compile all Lisp files. This is like 'compile' but compiles files
363 # unconditionally. Some files don't actually get compiled because they
364 # set the local variable no-byte-compile.
365 compile-always:
366 find $(lisp) -name '*.elc' $(FIND_DELETE)
367 $(MAKE) compile
369 .PHONY: backup-compiled-files compile-after-backup
371 # Backup compiled Lisp files in elc.tar.gz. If that file already
372 # exists, make a backup of it.
374 backup-compiled-files:
375 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
376 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc $(lisp)/*/*/*.elc $(lisp)/*/*/*/*.elc
378 # Compile Lisp files, but save old compiled files first.
380 compile-after-backup: backup-compiled-files compile-always
382 # This does the same job as the "compile" rule, but in a different way.
383 # Rather than spawning a separate Emacs instance to compile each file,
384 # it uses the same Emacs instance to compile everything.
385 # This is faster on a single core, since it avoids the overhead of
386 # starting Emacs many times (it was 33% faster on a test with a
387 # random 10% of the .el files needing recompilation).
388 # Unlike compile, this is not parallelizable; so if you have more than
389 # one core and use make -j#, compile will be (much) faster.
390 # This rule also produces less accurate compilation warnings.
391 # The environment of later files is affected by definitions in
392 # earlier ones, so it does not produce some warnings that it should.
393 # It can also produces spurious warnings about "invalid byte code" if
394 # files that use byte-compile-dynamic are updated.
395 # There is no reason to use this rule unless you only have a single
396 # core and CPU time is an issue.
397 .PHONY: compile-one-process
398 compile-one-process: $(LOADDEFS) compile-first
399 $(emacs) $(BYTE_COMPILE_FLAGS) \
400 --eval "(batch-byte-recompile-directory 0)" $(lisp)
402 # Update MH-E internal autoloads. These are not to be confused with
403 # the autoloads for the MH-E entry points, which are already in loaddefs.el.
404 MH_E_DIR = $(lisp)/mh-e
405 MH_E_SRC = $(sort $(wildcard ${MH_E_DIR}/mh*.el))
406 MH_E_SRC := $(filter-out ${MH_E_DIR}/mh-loaddefs.el,${MH_E_SRC})
408 .PHONY: mh-autoloads
409 mh-autoloads: $(MH_E_DIR)/mh-loaddefs.el
410 $(MH_E_DIR)/mh-loaddefs.el: $(MH_E_SRC)
411 $(AM_V_GEN)$(emacs) -l autoload \
412 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
413 --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
414 -f batch-update-autoloads $(MH_E_DIR)
416 # Update TRAMP internal autoloads. Maybe we could move tramp*.el into
417 # an own subdirectory. OTOH, it does not hurt to keep them in
418 # lisp/net.
419 TRAMP_DIR = $(lisp)/net
420 TRAMP_SRC = $(sort $(wildcard ${TRAMP_DIR}/tramp*.el))
421 TRAMP_SRC := $(filter-out ${TRAMP_DIR}/tramp-loaddefs.el,${TRAMP_SRC})
423 $(TRAMP_DIR)/tramp-loaddefs.el: $(TRAMP_SRC)
424 $(AM_V_GEN)$(emacs) -l autoload \
425 --eval "(setq generate-autoload-cookie \";;;###tramp-autoload\")" \
426 --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
427 -f batch-update-autoloads $(TRAMP_DIR)
429 CAL_DIR = $(lisp)/calendar
430 ## Those files that may contain internal calendar autoload cookies.
431 CAL_SRC = $(addprefix ${CAL_DIR}/,diary-lib.el holidays.el lunar.el solar.el)
432 CAL_SRC := $(sort ${CAL_SRC} $(wildcard ${CAL_DIR}/cal-*.el))
433 CAL_SRC := $(filter-out ${CAL_DIR}/cal-loaddefs.el,${CAL_SRC})
435 $(CAL_DIR)/cal-loaddefs.el: $(CAL_SRC)
436 $(AM_V_GEN)$(emacs) -l autoload \
437 --eval "(setq generate-autoload-cookie \";;;###cal-autoload\")" \
438 --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
439 -f batch-update-autoloads $(CAL_DIR)
441 $(CAL_DIR)/diary-loaddefs.el: $(CAL_SRC) $(CAL_DIR)/cal-loaddefs.el
442 $(AM_V_GEN)$(emacs) -l autoload \
443 --eval "(setq generate-autoload-cookie \";;;###diary-autoload\")" \
444 --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
445 -f batch-update-autoloads $(CAL_DIR)
447 $(CAL_DIR)/hol-loaddefs.el: $(CAL_SRC) $(CAL_DIR)/diary-loaddefs.el
448 $(AM_V_GEN)$(emacs) -l autoload \
449 --eval "(setq generate-autoload-cookie \";;;###holiday-autoload\")" \
450 --eval "(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
451 -f batch-update-autoloads $(CAL_DIR)
453 .PHONY: bootstrap-clean distclean maintainer-clean
455 bootstrap-clean:
456 find $(lisp) -name '*.elc' $(FIND_DELETE)
457 rm -f $(AUTOGENEL)
459 distclean:
460 -rm -f ./Makefile $(lisp)/loaddefs.el~
462 maintainer-clean: distclean bootstrap-clean
463 rm -f TAGS
465 .PHONY: check-declare
467 check-declare:
468 $(emacs) -l check-declare --eval '(check-declare-directory "$(lisp)")'
470 ## This finds a lot of duplicates between foo.el and obsolete/foo.el.
471 check-defun-dups:
472 sed -n -e '/^(defun /s/\(.\)(.*/\1/p' \
473 $$(find . -name '*.el' ! -name '.*' -print | \
474 grep -Ev '(loaddefs|ldefs-boot)\.el|obsolete') | sort | uniq -d
476 # Dependencies
478 ## None of the following matters for bootstrap, which is the only way
479 ## to ensure a correct compilation of all lisp files.
480 ## Manually specifying dependencies of a handful of lisp files, (and
481 ## ones that don't change very often at that) seems pretty pointless
482 ## to me.
484 # https://debbugs.gnu.org/1004
485 # CC Mode uses a compile time macro system which causes a compile time
486 # dependency in cc-*.elc files on the macros in other cc-*.el and the
487 # version string in cc-defs.el.
488 $(lisp)/progmodes/cc-align.elc\
489 $(lisp)/progmodes/cc-cmds.elc $(lisp)/progmodes/cc-compat.elc\
490 $(lisp)/progmodes/cc-engine.elc $(lisp)/progmodes/cc-fonts.elc\
491 $(lisp)/progmodes/cc-langs.elc $(lisp)/progmodes/cc-menus.elc\
492 $(lisp)/progmodes/cc-mode.elc $(lisp)/progmodes/cc-styles.elc\
493 $(lisp)/progmodes/cc-vars.elc: \
494 $(lisp)/progmodes/cc-bytecomp.elc $(lisp)/progmodes/cc-defs.elc
496 $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-cmds.elc: \
497 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
499 $(lisp)/progmodes/cc-compat.elc: \
500 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-styles.elc \
501 $(lisp)/progmodes/cc-engine.elc
503 $(lisp)/progmodes/cc-defs.elc: $(lisp)/progmodes/cc-bytecomp.elc
505 $(lisp)/progmodes/cc-engine.elc: $(lisp)/progmodes/cc-langs.elc \
506 $(lisp)/progmodes/cc-vars.elc
508 $(lisp)/progmodes/cc-fonts.elc: $(lisp)/progmodes/cc-langs.elc \
509 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
511 $(lisp)/progmodes/cc-langs.elc: $(lisp)/progmodes/cc-vars.elc
513 $(lisp)/progmodes/cc-mode.elc: $(lisp)/progmodes/cc-langs.elc \
514 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc \
515 $(lisp)/progmodes/cc-styles.elc $(lisp)/progmodes/cc-cmds.elc \
516 $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-menus.elc
518 $(lisp)/progmodes/cc-styles.elc: $(lisp)/progmodes/cc-vars.elc \
519 $(lisp)/progmodes/cc-align.elc
521 # Makefile ends here.