3 # Copyright (C) 2000-2018 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/>.
23 top_srcdir
= @top_srcdir@
28 # Empty for all systems except MinGW, where xargs needs an explicit
30 XARGS_LIMIT
= @XARGS_LIMIT@
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 " $@
;
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 " $@
;
45 AM_V_at
= $(am__v_at_@AM_V@
)
46 am__v_at_
= $(am__v_at_@AM_DEFAULT_V@
)
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.
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 # Files to compile early in compile-main. Works around bug#25556.
105 MAIN_FIRST
= .
/emacs-lisp
/eieio.el .
/emacs-lisp
/eieio-base.el \
106 .
/cedet
/semantic
/db.el
108 # Prevent any settings in the user environment causing problems.
109 unexport EMACSDATA EMACSDOC EMACSPATH
111 # The actual Emacs command run in the targets below.
112 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
113 emacs
= EMACSLOADPATH
= '$(EMACS)' $(EMACSOPT
)
115 ## Subdirectories, relative to builddir.
116 SUBDIRS
= $(sort $(shell find
${srcdir} -type d
-print))
117 ## Subdirectories, relative to srcdir.
118 SUBDIRS_REL
= $(patsubst ${srcdir}%,.
%,${SUBDIRS})
119 ## All subdirectories except 'obsolete' and 'term'.
120 SUBDIRS_ALMOST
= $(filter-out ${srcdir}/obsolete
${srcdir}/term
,${SUBDIRS})
121 ## All subdirectories except 'obsolete', 'term', and 'leim' (and subdirs).
122 ## We don't want the leim files listed as packages, especially
123 ## since many share basenames with files in language/.
124 SUBDIRS_FINDER
= $(filter-out ${srcdir}/leim
%,${SUBDIRS_ALMOST})
125 ## All subdirectories in which we might want to create subdirs.el.
126 SUBDIRS_SUBDIRS
= $(filter-out ${srcdir}/cedet
% ${srcdir}/leim
%,${SUBDIRS})
128 # cus-load and finder-inf are not explicitly requested by anything, so
129 # we add them here to make sure they get built.
130 all: compile-main
$(lisp
)/cus-load.el
$(lisp
)/finder-inf.el
133 .PHONY
: all custom-deps finder-data autoloads update-subdirs
$(PHONY_EXTRAS
)
135 # custom-deps and finder-data both used to scan _all_ the *.el files.
136 # This could lead to problems in parallel builds if automatically
137 # generated *.el files (eg loaddefs etc) were being changed at the same time.
138 # One solution was to add autoloads as a prerequisite:
139 # https://lists.gnu.org/r/emacs-pretest-bug/2007-01/msg00469.html
140 # https://lists.gnu.org/r/bug-gnu-emacs/2007-12/msg00171.html
141 # However, this meant that running these targets modified loaddefs.el,
142 # every time (due to time-stamping). Calling these rules from
143 # bootstrap-after would modify loaddefs after src/emacs, resulting
144 # in make install remaking src/emacs for no real reason:
145 # https://lists.gnu.org/r/emacs-devel/2008-02/msg00311.html
146 # Nowadays these commands don't scan automatically generated files,
147 # since they will never contain any useful information
148 # (see finder-no-scan-regexp and custom-dependencies-no-scan-regexp).
150 $(AM_V_at
)$(MAKE
) PHONY_EXTRAS
=$(lisp
)/cus-load.el
$(lisp
)/cus-load.el
152 $(AM_V_GEN
)$(emacs
) -l cus-dep \
153 --eval
'(setq generated-custom-dependencies-file (unmsys--file-name "$(srcdir)/cus-load.el"))' \
154 -f custom-make-dependencies
${SUBDIRS_ALMOST}
157 $(AM_V_at
)$(MAKE
) PHONY_EXTRAS
=$(lisp
)/finder-inf.el \
158 $(lisp
)/finder-inf.el
159 $(lisp
)/finder-inf.el
:
160 $(AM_V_GEN
)$(emacs
) -l finder \
161 --eval
'(setq generated-finder-keywords-file (unmsys--file-name "$(srcdir)/finder-inf.el"))' \
162 -f finder-compile-keywords-make-dist
${SUBDIRS_FINDER}
164 ## Comments on loaddefs generation:
166 # loaddefs depends on gen-lisp for two reasons:
167 # 1) In ../src, the emacs target depends on loaddefs but not on eg leim-list.
168 # So having leim as a dependency of loaddefs (via gen-lisp) ensures leim-list
169 # gets created before the final emacs is dumped. Having leim
170 # dependencies in ../src as well would create a parallel race condition.
172 # 2) Files that are marked no-update-autoloads still get recorded in loaddefs.
173 # So those files should be generated before we make autoloads, if we
174 # don't want a successive make autoloads to change the output file.
175 # Said changes are trivial (only comments in the "files without autoloads"
176 # section), but still can be annoying. Of course, if generated lisp files
177 # do contain autoloads, it is essential they be built before make autoloads.
178 # (Also, if a generated file is not written atomically, it is possible that
179 # in a parallel build, make autoloads could read a partial version of it.)
181 # We'd really like to add "make -C ../admin/unidata all" to gen-lisp
182 # because of 2) above, but it causes a race condition in parallel
183 # builds because ../src also runs that rule. Given the limitations of
184 # recursive make, the only way to fix that would be to remove unidata
185 # from ../src rules, but that doesn't seem possible due to the various
186 # non-trivial dependencies.
188 # We make $(lisp)/loaddefs.el a dependency of .PHONY to cause Make to
189 # ignore its time stamp. That's because the real dependencies of
190 # loaddefs.el aren't known to Make, they are implemented in
191 # batch-update-autoloads, which only updates the autoloads whose
192 # sources have changed.
194 # Use expand-file-name rather than $abs_scrdir so that Emacs does not
195 # get confused when it compares file-names for equality.
197 autoloads .PHONY
: $(lisp
)/loaddefs.el
198 $(lisp
)/loaddefs.el
: gen-lisp
$(LOADDEFS
)
199 @echo Directories for loaddefs
: ${SUBDIRS_ALMOST}
200 $(AM_V_GEN
)$(emacs
) -l autoload \
201 --eval
'(setq autoload-ensure-writable t)' \
202 --eval
'(setq autoload-builtin-package-versions t)' \
203 --eval
'(setq generated-autoload-file (expand-file-name (unmsys--file-name "$@")))' \
204 -f batch-update-autoloads
${SUBDIRS_ALMOST}
206 # autoloads only runs when loaddefs.el is nonexistent, although it
207 # generates a number of different files. Provide a force option to enable
208 # regeneration of all these files.
209 .PHONY
: autoloads-force
214 # This is required by the bootstrap-emacs target in ../src/Makefile, so
215 # we know that if we have an emacs executable, we also have a subdirs.el.
217 $(AM_V_GEN
)$(MAKE
) update-subdirs
219 $(AM_V_at
)for file in
${SUBDIRS_SUBDIRS}; do \
220 $(srcdir)/..
/build-aux
/update-subdirs
$$file; \
223 .PHONY
: updates repo-update update-authors update-gnus-news
225 # Some modes of make-dist use this.
226 updates
: update-subdirs autoloads finder-data custom-deps
228 # This is useful after updating from the repository; but it doesn't do
229 # anything that a plain "make" at top-level doesn't. The only
230 # difference between this and this directory's "all" rule is that this
231 # runs "autoloads" as well (because it uses "compile" rather than
232 # "compile-main"). In a bootstrap, $(lisp) in src/Makefile triggers
233 # this directory's autoloads rule.
234 repo-update
: compile finder-data custom-deps
236 # Update etc/AUTHORS and etc/GNUS-NEWS.
239 $(emacs
) -L
"$(top_srcdir)/admin" -l authors \
240 -f batch-update-authors
"$(top_srcdir)/etc/AUTHORS" "$(top_srcdir)"
243 $(emacs
) -L
"$(top_srcdir)/doc/misc" -l gnus-news
-f batch-gnus-news \
244 "$(top_srcdir)/doc/misc/gnus-news.texi" \
245 "$(top_srcdir)/etc/GNUS-NEWS"
250 tagsfiles
= $(shell find
${srcdir} -name
'*.el' \
251 ! -name
'.*' ! -name
'*loaddefs.el')
252 tagsfiles
:= $(filter-out ${srcdir}/ldefs-boot.el
,${tagsfiles})
253 tagsfiles
:= $(filter-out ${srcdir}/eshell
/esh-groups.el
,${tagsfiles})
255 ETAGS
= ..
/lib-src
/etags
${EXEEXT}
258 ${MAKE} -C ..
/lib-src
$(notdir $@
)
260 ## The use of xargs is to stop the command line getting too long
261 ## on MS Windows, when the MSYS Bash passes it to a MinGW compiled
262 ## etags. It might be better to use find in a similar way to
263 ## compile-main. But maybe this is not even necessary any more now
264 ## that this uses relative filenames.
265 TAGS
: ${ETAGS} ${tagsfiles}
268 ls
${tagsfiles} | xargs
$(XARGS_LIMIT
) "${ETAGS}" -a
-o
$@
271 # The src/Makefile.in has its own set of dependencies and when they decide
272 # that one Lisp file needs to be re-compiled, we had better recompile it as
273 # well, otherwise every subsequent make will again call us, until we finally
274 # end up deciding that yes, the file deserves recompilation.
275 # One option is to try and reproduce exactly the same dependencies here as
276 # we have in src/Makefile.in, but it turns out to be painful
277 # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we
278 # only know of $(lisp)/foo.elc). So instead we provide a direct way for
279 # src/Makefile.in to rebuild a particular Lisp file, no questions asked.
280 # Use byte-compile-refresh-preloaded to try and work around some of
281 # the most common problems of not bootstrapping from a clean state.
282 THEFILE
= no-such-file
285 $(AM_V_ELC
)$(emacs
) $(BYTE_COMPILE_FLAGS
) \
286 -l bytecomp
-f byte-compile-refresh-preloaded \
287 -f batch-byte-compile
$(THEFILE
)
289 # Files MUST be compiled one by one. If we compile several files in a
290 # row (i.e., in the same instance of Emacs) we can't make sure that
291 # the compilation environment is clean. We also set the load-path of
292 # the Emacs used for compilation to the current directory and its
293 # subdirectories, to make sure require's and load's in the files being
294 # compiled find the right files.
298 # An old-fashioned suffix rule, which, according to the GNU Make manual,
299 # cannot have prerequisites.
301 $(AM_V_ELC
)$(emacs
) $(BYTE_COMPILE_FLAGS
) -f batch-byte-compile
$<
303 .PHONY
: compile-first compile-main compile compile-always
305 compile-first
: $(COMPILE_FIRST
)
307 # In 'compile-main' we could directly do
308 # ... | xargs $(MAKE)
309 # and it works, but it generates a lot of messages like
310 # make[2]: gnus/gnus-mlspl.elc is up to date.
311 # so instead, we use "xargs echo" to split the list of file into manageable
312 # chunks and then use an intermediate 'compile-targets' target so the
313 # actual targets (the .elc files) are not mentioned as targets on the
317 .PHONY
: compile-targets
318 # TARGETS is set dynamically in the recursive call from 'compile-main'.
319 compile-targets
: $(TARGETS
)
321 # Compile all the Elisp files that need it. Beware: it approximates
322 # 'no-byte-compile', so watch out for false-positives!
323 compile-main
: gen-lisp compile-clean
325 els
=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
326 for el in
${MAIN_FIRST} $$els; do \
327 test -f
$$el || continue
; \
328 test ! -f
$${el}c
&& GREP_OPTIONS
= grep
'^;.*no-byte-compile: t' $$el > /dev
/null
&& continue
; \
330 done | xargs
$(XARGS_LIMIT
) echo
) | \
331 while read chunk
; do \
332 $(MAKE
) compile-targets TARGETS
="$$chunk"; \
335 .PHONY
: compile-clean
336 # Erase left-over .elc files that do not have a corresponding .el file.
339 elcs
=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \
340 for el in
`echo $$elcs | sed -e 's/\.elc/\.el/g'`; do \
341 if
test -f
"$$el" ||
test ! -f
"$${el}c"; then
:; else \
347 .PHONY
: gen-lisp leim semantic
349 ## make -C ../admin/unidata all should be here, but that would race
350 ## with ../src. See comments above for loaddefs.
351 gen-lisp
: leim semantic
354 $(MAKE
) -C ..
/leim
all EMACS
="$(EMACS)"
357 $(MAKE
) -C ..
/admin
/grammars
all EMACS
="$(EMACS:.%=../.%)"
359 # Compile all Lisp files, but don't recompile those that are up to
360 # date. Some .el files don't get compiled because they set the
361 # local variable no-byte-compile.
362 # Calling make recursively because suffix rule cannot have prerequisites.
363 compile
: $(LOADDEFS
) autoloads compile-first
366 # Compile all Lisp files. This is like 'compile' but compiles files
367 # unconditionally. Some files don't actually get compiled because they
368 # set the local variable no-byte-compile.
370 find
$(lisp
) -name
'*.elc' $(FIND_DELETE
)
373 .PHONY
: backup-compiled-files compile-after-backup
375 # Backup compiled Lisp files in elc.tar.gz. If that file already
376 # exists, make a backup of it.
378 backup-compiled-files
:
379 -mv
$(lisp
)/elc.
tar.gz
$(lisp
)/elc.
tar.gz~
380 -tar czf
$(lisp
)/elc.
tar.gz
$(lisp
)/*.elc
$(lisp
)/*/*.elc
$(lisp
)/*/*/*.elc
$(lisp
)/*/*/*/*.elc
382 # Compile Lisp files, but save old compiled files first.
384 compile-after-backup
: backup-compiled-files compile-always
386 # This does the same job as the "compile" rule, but in a different way.
387 # Rather than spawning a separate Emacs instance to compile each file,
388 # it uses the same Emacs instance to compile everything.
389 # This is faster on a single core, since it avoids the overhead of
390 # starting Emacs many times (it was 33% faster on a test with a
391 # random 10% of the .el files needing recompilation).
392 # Unlike compile, this is not parallelizable; so if you have more than
393 # one core and use make -j#, compile will be (much) faster.
394 # This rule also produces less accurate compilation warnings.
395 # The environment of later files is affected by definitions in
396 # earlier ones, so it does not produce some warnings that it should.
397 # It can also produces spurious warnings about "invalid byte code" if
398 # files that use byte-compile-dynamic are updated.
399 # There is no reason to use this rule unless you only have a single
400 # core and CPU time is an issue.
401 .PHONY
: compile-one-process
402 compile-one-process
: $(LOADDEFS
) compile-first
403 $(emacs
) $(BYTE_COMPILE_FLAGS
) \
404 --eval
"(batch-byte-recompile-directory 0)" $(lisp
)
406 # Update MH-E internal autoloads. These are not to be confused with
407 # the autoloads for the MH-E entry points, which are already in loaddefs.el.
408 MH_E_DIR
= $(lisp
)/mh-e
409 MH_E_SRC
= $(sort $(wildcard ${MH_E_DIR}/mh
*.el
))
410 MH_E_SRC
:= $(filter-out ${MH_E_DIR}/mh-loaddefs.el
,${MH_E_SRC})
413 mh-autoloads
: $(MH_E_DIR
)/mh-loaddefs.el
414 $(MH_E_DIR
)/mh-loaddefs.el
: $(MH_E_SRC
)
415 $(AM_V_GEN
)$(emacs
) -l autoload \
416 --eval
"(setq generate-autoload-cookie \";;;###mh-autoload\")" \
417 --eval
"(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
418 -f batch-update-autoloads
$(MH_E_DIR
)
420 # Update TRAMP internal autoloads. Maybe we could move tramp*.el into
421 # an own subdirectory. OTOH, it does not hurt to keep them in
423 TRAMP_DIR
= $(lisp
)/net
424 TRAMP_SRC
= $(sort $(wildcard ${TRAMP_DIR}/tramp
*.el
))
425 TRAMP_SRC
:= $(filter-out ${TRAMP_DIR}/tramp-loaddefs.el
,${TRAMP_SRC})
427 $(TRAMP_DIR
)/tramp-loaddefs.el
: $(TRAMP_SRC
)
428 $(AM_V_GEN
)$(emacs
) -l autoload \
429 --eval
"(setq generate-autoload-cookie \";;;###tramp-autoload\")" \
430 --eval
"(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
431 -f batch-update-autoloads
$(TRAMP_DIR
)
433 CAL_DIR
= $(lisp
)/calendar
434 ## Those files that may contain internal calendar autoload cookies.
435 CAL_SRC
= $(addprefix ${CAL_DIR}/,diary-lib.el holidays.el lunar.el solar.el
)
436 CAL_SRC
:= $(sort ${CAL_SRC} $(wildcard ${CAL_DIR}/cal-
*.el
))
437 CAL_SRC
:= $(filter-out ${CAL_DIR}/cal-loaddefs.el
,${CAL_SRC})
439 $(CAL_DIR
)/cal-loaddefs.el
: $(CAL_SRC
)
440 $(AM_V_GEN
)$(emacs
) -l autoload \
441 --eval
"(setq generate-autoload-cookie \";;;###cal-autoload\")" \
442 --eval
"(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
443 -f batch-update-autoloads
$(CAL_DIR
)
445 $(CAL_DIR
)/diary-loaddefs.el
: $(CAL_SRC
) $(CAL_DIR
)/cal-loaddefs.el
446 $(AM_V_GEN
)$(emacs
) -l autoload \
447 --eval
"(setq generate-autoload-cookie \";;;###diary-autoload\")" \
448 --eval
"(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
449 -f batch-update-autoloads
$(CAL_DIR
)
451 $(CAL_DIR
)/hol-loaddefs.el
: $(CAL_SRC
) $(CAL_DIR
)/diary-loaddefs.el
452 $(AM_V_GEN
)$(emacs
) -l autoload \
453 --eval
"(setq generate-autoload-cookie \";;;###holiday-autoload\")" \
454 --eval
"(setq generated-autoload-file (expand-file-name (unmsys--file-name \"$@\")))" \
455 -f batch-update-autoloads
$(CAL_DIR
)
457 .PHONY
: bootstrap-clean
distclean maintainer-clean
460 find
$(lisp
) -name
'*.elc' $(FIND_DELETE
)
464 -rm -f .
/Makefile
$(lisp
)/loaddefs.el~
466 maintainer-clean
: distclean bootstrap-clean
469 .PHONY
: check-declare
472 $(emacs
) -l check-declare
--eval
'(check-declare-directory "$(lisp)")'
474 ## This finds a lot of duplicates between foo.el and obsolete/foo.el.
476 sed
-n
-e
'/^(defun /s/\(.\)(.*/\1/p' \
477 $$(find .
-name
'*.el' ! -name
'.*' -print | \
478 grep
-Ev
'(loaddefs|ldefs-boot)\.el|obsolete') |
sort | uniq
-d
482 ## None of the following matters for bootstrap, which is the only way
483 ## to ensure a correct compilation of all lisp files.
484 ## Manually specifying dependencies of a handful of lisp files, (and
485 ## ones that don't change very often at that) seems pretty pointless
488 # https://debbugs.gnu.org/1004
489 # CC Mode uses a compile time macro system which causes a compile time
490 # dependency in cc-*.elc files on the macros in other cc-*.el and the
491 # version string in cc-defs.el.
492 $(lisp
)/progmodes
/cc-align.elc\
493 $(lisp
)/progmodes
/cc-cmds.elc
$(lisp
)/progmodes
/cc-compat.elc\
494 $(lisp
)/progmodes
/cc-engine.elc
$(lisp
)/progmodes
/cc-fonts.elc\
495 $(lisp
)/progmodes
/cc-langs.elc
$(lisp
)/progmodes
/cc-menus.elc\
496 $(lisp
)/progmodes
/cc-mode.elc
$(lisp
)/progmodes
/cc-styles.elc\
497 $(lisp
)/progmodes
/cc-vars.elc
: \
498 $(lisp
)/progmodes
/cc-bytecomp.elc
$(lisp
)/progmodes
/cc-defs.elc
500 $(lisp
)/progmodes
/cc-align.elc
$(lisp
)/progmodes
/cc-cmds.elc
: \
501 $(lisp
)/progmodes
/cc-vars.elc
$(lisp
)/progmodes
/cc-engine.elc
503 $(lisp
)/progmodes
/cc-compat.elc
: \
504 $(lisp
)/progmodes
/cc-vars.elc
$(lisp
)/progmodes
/cc-styles.elc \
505 $(lisp
)/progmodes
/cc-engine.elc
507 $(lisp
)/progmodes
/cc-defs.elc
: $(lisp
)/progmodes
/cc-bytecomp.elc
509 $(lisp
)/progmodes
/cc-engine.elc
: $(lisp
)/progmodes
/cc-langs.elc \
510 $(lisp
)/progmodes
/cc-vars.elc
512 $(lisp
)/progmodes
/cc-fonts.elc
: $(lisp
)/progmodes
/cc-langs.elc \
513 $(lisp
)/progmodes
/cc-vars.elc
$(lisp
)/progmodes
/cc-engine.elc
515 $(lisp
)/progmodes
/cc-langs.elc
: $(lisp
)/progmodes
/cc-vars.elc
517 $(lisp
)/progmodes
/cc-mode.elc
: $(lisp
)/progmodes
/cc-langs.elc \
518 $(lisp
)/progmodes
/cc-vars.elc
$(lisp
)/progmodes
/cc-engine.elc \
519 $(lisp
)/progmodes
/cc-styles.elc
$(lisp
)/progmodes
/cc-cmds.elc \
520 $(lisp
)/progmodes
/cc-align.elc
$(lisp
)/progmodes
/cc-menus.elc
522 $(lisp
)/progmodes
/cc-styles.elc
: $(lisp
)/progmodes
/cc-vars.elc \
523 $(lisp
)/progmodes
/cc-align.elc
525 # Makefile ends here.