diff options
| author | Stefan Monnier | 2010-03-22 00:24:25 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2010-03-22 00:24:25 -0400 |
| commit | 111a9dff676dd7aa9d6cb9b334c9243d7d7396f3 (patch) | |
| tree | 1eecf21af2790dda8f181041d67e12c1d8eab4b2 | |
| parent | b70640642e488145f0277e4e80f38fecae741b9a (diff) | |
| download | emacs-111a9dff676dd7aa9d6cb9b334c9243d7d7396f3.tar.gz emacs-111a9dff676dd7aa9d6cb9b334c9243d7d7396f3.zip | |
Get rid of the ELCFILES abomination, again.
* Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
(all, compile): Don't call compile-last.
(compile-main): Build the "elcfiles" list dynamically.
(compile-targets): New (internal) target.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/Makefile.in | 1333 |
2 files changed, 38 insertions, 1306 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index de399c39bd9..1c2305b61b4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2010-03-22 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | Get rid of the ELCFILES abomination, again. | ||
| 4 | * Makefile.in (update-elclist, ELCFILES, compile-last): Remove. | ||
| 5 | (all, compile): Don't call compile-last. | ||
| 6 | (compile-main): Build the "elcfiles" list dynamically. | ||
| 7 | (compile-targets): New (internal) target. | ||
| 8 | |||
| 1 | 2010-03-21 Andreas Schwab <schwab@linux-m68k.org> | 9 | 2010-03-21 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 10 | ||
| 3 | * Makefile.in (top_srcdir): Define. | 11 | * Makefile.in (top_srcdir): Define. |
| @@ -5,8 +13,7 @@ | |||
| 5 | (srcdir): Don't append `/..'. | 13 | (srcdir): Don't append `/..'. |
| 6 | (EMACS): Use ${abs_top_builddir}. | 14 | (EMACS): Use ${abs_top_builddir}. |
| 7 | (all, compile, compile-always, compile-last): Don't set emacswd. | 15 | (all, compile, compile-always, compile-last): Don't set emacswd. |
| 8 | (update-subdirs, update-authors): Use $(top_srcdir) instead of | 16 | (update-subdirs, update-authors): Use $(top_srcdir) instead of $(srcdir). |
| 9 | $(srcdir). | ||
| 10 | (lisp): Use $(srcdir) instead of @srcdir@. | 17 | (lisp): Use $(srcdir) instead of @srcdir@. |
| 11 | 18 | ||
| 12 | 2010-03-21 Juri Linkov <juri@jurta.org> | 19 | 2010-03-21 Juri Linkov <juri@jurta.org> |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index a08e7e9e47b..cc91894c01c 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -115,8 +115,6 @@ setwins_for_subdirs=subdirs=`(find . -type d -print)`; \ | |||
| 115 | # cus-load and finder-inf are not explicitly requested by anything, so | 115 | # cus-load and finder-inf are not explicitly requested by anything, so |
| 116 | # we add them here to make sure they get built. | 116 | # we add them here to make sure they get built. |
| 117 | all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el | 117 | all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el |
| 118 | @: Let us check that we byte-compiled all the files. | ||
| 119 | $(MAKE) $(MFLAGS) compile-last EMACS=$(EMACS) | ||
| 120 | 118 | ||
| 121 | doit: | 119 | doit: |
| 122 | 120 | ||
| @@ -185,1284 +183,6 @@ TAGS TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptags | |||
| 185 | els=`echo $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) | sed -e "s,$(lisp)/[^ ]*loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ | 183 | els=`echo $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) | sed -e "s,$(lisp)/[^ ]*loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ |
| 186 | ${ETAGS} -o $@ $$els | 184 | ${ETAGS} -o $@ $$els |
| 187 | 185 | ||
| 188 | .PHONY: update-elclist | ||
| 189 | |||
| 190 | ## Post-bootstrap, find the list of .elc files and use sed to update | ||
| 191 | ## ELCFILES in Makefile.in. | ||
| 192 | ## Errors in the final sed are non-fatal, since they have no effect on | ||
| 193 | ## building Emacs. chmod +w is for CVSREAD=1. | ||
| 194 | ## "echo" is non-portable with regards to backslashes, eg between zsh | ||
| 195 | ## and bash. Hence the use of sed on line 2 below (line 1 seems to be OK). | ||
| 196 | ## http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg01535.html | ||
| 197 | update-elclist: | ||
| 198 | echo "/^ELCFILES/,/^$$/c\\" > temp.sed | ||
| 199 | echo "ELCFILES =" | sed -e 's/$$/ \\\\\\/' >> temp.sed | ||
| 200 | LC_COLLATE=C ls $(lisp)/*.elc $(lisp)/*/*.elc $(lisp)/*/*/*.elc $(lisp)/*/*/*/*.elc | sed -e "s|^$(lisp)| \$$(lisp)|" -e 's/$$/ \\\\\\/' -e '$$ s/ \\\\//' >> temp.sed | ||
| 201 | echo "" >> temp.sed | ||
| 202 | -sed -f temp.sed $(lisp)/Makefile.in > temp-elcfiles || rm temp-elcfiles | ||
| 203 | rm temp.sed | ||
| 204 | @test -f temp-elcfiles || echo "Maintainer warning: failed to update Makefile.in. You can ignore this if you are not an Emacs developer." | ||
| 205 | if test -f temp-elcfiles; then \ | ||
| 206 | chmod +w $(lisp)/Makefile.in; \ | ||
| 207 | mv -f temp-elcfiles $(lisp)/Makefile.in; \ | ||
| 208 | fi | ||
| 209 | -(LC_COLLATE=C ls $(lisp)/*.elc $(lisp)/*/*.elc $(lisp)/*/*/*.elc $(lisp)/*/*/*/*.elc | sed 's/elc$$/el/'; \ | ||
| 210 | LC_COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el $(lisp)/*/*/*.el $(lisp)/*/*/*/*.el; \ | ||
| 211 | LC_COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el $(lisp)/*/*/*.el $(lisp)/*/*/*/*.el) | \ | ||
| 212 | sort | uniq -u | while read extra; do \ | ||
| 213 | echo "Found left over byte-compiled file: $${extra}c !!" ;\ | ||
| 214 | done | ||
| 215 | |||
| 216 | ## Explicitly list the .elc files, for the sake of parallel builds. | ||
| 217 | ## http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-05/msg00016.html | ||
| 218 | ## This can probably be done more elegantly, but needs to be portable. | ||
| 219 | ELCFILES = \ | ||
| 220 | $(lisp)/abbrev.elc \ | ||
| 221 | $(lisp)/abbrevlist.elc \ | ||
| 222 | $(lisp)/add-log.elc \ | ||
| 223 | $(lisp)/align.elc \ | ||
| 224 | $(lisp)/allout.elc \ | ||
| 225 | $(lisp)/ansi-color.elc \ | ||
| 226 | $(lisp)/apropos.elc \ | ||
| 227 | $(lisp)/arc-mode.elc \ | ||
| 228 | $(lisp)/array.elc \ | ||
| 229 | $(lisp)/autoarg.elc \ | ||
| 230 | $(lisp)/autoinsert.elc \ | ||
| 231 | $(lisp)/autorevert.elc \ | ||
| 232 | $(lisp)/avoid.elc \ | ||
| 233 | $(lisp)/battery.elc \ | ||
| 234 | $(lisp)/bindings.elc \ | ||
| 235 | $(lisp)/bookmark.elc \ | ||
| 236 | $(lisp)/bs.elc \ | ||
| 237 | $(lisp)/buff-menu.elc \ | ||
| 238 | $(lisp)/button.elc \ | ||
| 239 | $(lisp)/calc/calc-aent.elc \ | ||
| 240 | $(lisp)/calc/calc-alg.elc \ | ||
| 241 | $(lisp)/calc/calc-arith.elc \ | ||
| 242 | $(lisp)/calc/calc-bin.elc \ | ||
| 243 | $(lisp)/calc/calc-comb.elc \ | ||
| 244 | $(lisp)/calc/calc-cplx.elc \ | ||
| 245 | $(lisp)/calc/calc-embed.elc \ | ||
| 246 | $(lisp)/calc/calc-ext.elc \ | ||
| 247 | $(lisp)/calc/calc-fin.elc \ | ||
| 248 | $(lisp)/calc/calc-forms.elc \ | ||
| 249 | $(lisp)/calc/calc-frac.elc \ | ||
| 250 | $(lisp)/calc/calc-funcs.elc \ | ||
| 251 | $(lisp)/calc/calc-graph.elc \ | ||
| 252 | $(lisp)/calc/calc-help.elc \ | ||
| 253 | $(lisp)/calc/calc-incom.elc \ | ||
| 254 | $(lisp)/calc/calc-keypd.elc \ | ||
| 255 | $(lisp)/calc/calc-lang.elc \ | ||
| 256 | $(lisp)/calc/calc-macs.elc \ | ||
| 257 | $(lisp)/calc/calc-map.elc \ | ||
| 258 | $(lisp)/calc/calc-math.elc \ | ||
| 259 | $(lisp)/calc/calc-menu.elc \ | ||
| 260 | $(lisp)/calc/calc-misc.elc \ | ||
| 261 | $(lisp)/calc/calc-mode.elc \ | ||
| 262 | $(lisp)/calc/calc-mtx.elc \ | ||
| 263 | $(lisp)/calc/calc-nlfit.elc \ | ||
| 264 | $(lisp)/calc/calc-poly.elc \ | ||
| 265 | $(lisp)/calc/calc-prog.elc \ | ||
| 266 | $(lisp)/calc/calc-rewr.elc \ | ||
| 267 | $(lisp)/calc/calc-rules.elc \ | ||
| 268 | $(lisp)/calc/calc-sel.elc \ | ||
| 269 | $(lisp)/calc/calc-stat.elc \ | ||
| 270 | $(lisp)/calc/calc-store.elc \ | ||
| 271 | $(lisp)/calc/calc-stuff.elc \ | ||
| 272 | $(lisp)/calc/calc-trail.elc \ | ||
| 273 | $(lisp)/calc/calc-undo.elc \ | ||
| 274 | $(lisp)/calc/calc-units.elc \ | ||
| 275 | $(lisp)/calc/calc-vec.elc \ | ||
| 276 | $(lisp)/calc/calc-yank.elc \ | ||
| 277 | $(lisp)/calc/calc.elc \ | ||
| 278 | $(lisp)/calc/calcalg2.elc \ | ||
| 279 | $(lisp)/calc/calcalg3.elc \ | ||
| 280 | $(lisp)/calc/calccomp.elc \ | ||
| 281 | $(lisp)/calc/calcsel2.elc \ | ||
| 282 | $(lisp)/calculator.elc \ | ||
| 283 | $(lisp)/calendar/appt.elc \ | ||
| 284 | $(lisp)/calendar/cal-bahai.elc \ | ||
| 285 | $(lisp)/calendar/cal-china.elc \ | ||
| 286 | $(lisp)/calendar/cal-coptic.elc \ | ||
| 287 | $(lisp)/calendar/cal-dst.elc \ | ||
| 288 | $(lisp)/calendar/cal-french.elc \ | ||
| 289 | $(lisp)/calendar/cal-hebrew.elc \ | ||
| 290 | $(lisp)/calendar/cal-html.elc \ | ||
| 291 | $(lisp)/calendar/cal-islam.elc \ | ||
| 292 | $(lisp)/calendar/cal-iso.elc \ | ||
| 293 | $(lisp)/calendar/cal-julian.elc \ | ||
| 294 | $(lisp)/calendar/cal-mayan.elc \ | ||
| 295 | $(lisp)/calendar/cal-menu.elc \ | ||
| 296 | $(lisp)/calendar/cal-move.elc \ | ||
| 297 | $(lisp)/calendar/cal-persia.elc \ | ||
| 298 | $(lisp)/calendar/cal-tex.elc \ | ||
| 299 | $(lisp)/calendar/cal-x.elc \ | ||
| 300 | $(lisp)/calendar/calendar.elc \ | ||
| 301 | $(lisp)/calendar/diary-lib.elc \ | ||
| 302 | $(lisp)/calendar/holidays.elc \ | ||
| 303 | $(lisp)/calendar/icalendar.elc \ | ||
| 304 | $(lisp)/calendar/lunar.elc \ | ||
| 305 | $(lisp)/calendar/parse-time.elc \ | ||
| 306 | $(lisp)/calendar/solar.elc \ | ||
| 307 | $(lisp)/calendar/time-date.elc \ | ||
| 308 | $(lisp)/calendar/timeclock.elc \ | ||
| 309 | $(lisp)/calendar/todo-mode.elc \ | ||
| 310 | $(lisp)/case-table.elc \ | ||
| 311 | $(lisp)/cdl.elc \ | ||
| 312 | $(lisp)/cedet/cedet-cscope.elc \ | ||
| 313 | $(lisp)/cedet/cedet-files.elc \ | ||
| 314 | $(lisp)/cedet/cedet-global.elc \ | ||
| 315 | $(lisp)/cedet/cedet-idutils.elc \ | ||
| 316 | $(lisp)/cedet/cedet.elc \ | ||
| 317 | $(lisp)/cedet/data-debug.elc \ | ||
| 318 | $(lisp)/cedet/ede.elc \ | ||
| 319 | $(lisp)/cedet/ede/autoconf-edit.elc \ | ||
| 320 | $(lisp)/cedet/ede/cpp-root.elc \ | ||
| 321 | $(lisp)/cedet/ede/dired.elc \ | ||
| 322 | $(lisp)/cedet/ede/emacs.elc \ | ||
| 323 | $(lisp)/cedet/ede/files.elc \ | ||
| 324 | $(lisp)/cedet/ede/linux.elc \ | ||
| 325 | $(lisp)/cedet/ede/locate.elc \ | ||
| 326 | $(lisp)/cedet/ede/make.elc \ | ||
| 327 | $(lisp)/cedet/ede/makefile-edit.elc \ | ||
| 328 | $(lisp)/cedet/ede/pconf.elc \ | ||
| 329 | $(lisp)/cedet/ede/pmake.elc \ | ||
| 330 | $(lisp)/cedet/ede/proj-archive.elc \ | ||
| 331 | $(lisp)/cedet/ede/proj-aux.elc \ | ||
| 332 | $(lisp)/cedet/ede/proj-comp.elc \ | ||
| 333 | $(lisp)/cedet/ede/proj-elisp.elc \ | ||
| 334 | $(lisp)/cedet/ede/proj-info.elc \ | ||
| 335 | $(lisp)/cedet/ede/proj-misc.elc \ | ||
| 336 | $(lisp)/cedet/ede/proj-obj.elc \ | ||
| 337 | $(lisp)/cedet/ede/proj-prog.elc \ | ||
| 338 | $(lisp)/cedet/ede/proj-scheme.elc \ | ||
| 339 | $(lisp)/cedet/ede/proj-shared.elc \ | ||
| 340 | $(lisp)/cedet/ede/proj.elc \ | ||
| 341 | $(lisp)/cedet/ede/project-am.elc \ | ||
| 342 | $(lisp)/cedet/ede/shell.elc \ | ||
| 343 | $(lisp)/cedet/ede/simple.elc \ | ||
| 344 | $(lisp)/cedet/ede/source.elc \ | ||
| 345 | $(lisp)/cedet/ede/speedbar.elc \ | ||
| 346 | $(lisp)/cedet/ede/srecode.elc \ | ||
| 347 | $(lisp)/cedet/ede/system.elc \ | ||
| 348 | $(lisp)/cedet/ede/util.elc \ | ||
| 349 | $(lisp)/cedet/inversion.elc \ | ||
| 350 | $(lisp)/cedet/mode-local.elc \ | ||
| 351 | $(lisp)/cedet/pulse.elc \ | ||
| 352 | $(lisp)/cedet/semantic.elc \ | ||
| 353 | $(lisp)/cedet/semantic/analyze.elc \ | ||
| 354 | $(lisp)/cedet/semantic/analyze/complete.elc \ | ||
| 355 | $(lisp)/cedet/semantic/analyze/debug.elc \ | ||
| 356 | $(lisp)/cedet/semantic/analyze/fcn.elc \ | ||
| 357 | $(lisp)/cedet/semantic/analyze/refs.elc \ | ||
| 358 | $(lisp)/cedet/semantic/bovine.elc \ | ||
| 359 | $(lisp)/cedet/semantic/bovine/c-by.elc \ | ||
| 360 | $(lisp)/cedet/semantic/bovine/c.elc \ | ||
| 361 | $(lisp)/cedet/semantic/bovine/debug.elc \ | ||
| 362 | $(lisp)/cedet/semantic/bovine/el.elc \ | ||
| 363 | $(lisp)/cedet/semantic/bovine/gcc.elc \ | ||
| 364 | $(lisp)/cedet/semantic/bovine/make-by.elc \ | ||
| 365 | $(lisp)/cedet/semantic/bovine/make.elc \ | ||
| 366 | $(lisp)/cedet/semantic/bovine/scm-by.elc \ | ||
| 367 | $(lisp)/cedet/semantic/bovine/scm.elc \ | ||
| 368 | $(lisp)/cedet/semantic/chart.elc \ | ||
| 369 | $(lisp)/cedet/semantic/complete.elc \ | ||
| 370 | $(lisp)/cedet/semantic/ctxt.elc \ | ||
| 371 | $(lisp)/cedet/semantic/db-debug.elc \ | ||
| 372 | $(lisp)/cedet/semantic/db-ebrowse.elc \ | ||
| 373 | $(lisp)/cedet/semantic/db-el.elc \ | ||
| 374 | $(lisp)/cedet/semantic/db-file.elc \ | ||
| 375 | $(lisp)/cedet/semantic/db-find.elc \ | ||
| 376 | $(lisp)/cedet/semantic/db-global.elc \ | ||
| 377 | $(lisp)/cedet/semantic/db-javascript.elc \ | ||
| 378 | $(lisp)/cedet/semantic/db-mode.elc \ | ||
| 379 | $(lisp)/cedet/semantic/db-ref.elc \ | ||
| 380 | $(lisp)/cedet/semantic/db-typecache.elc \ | ||
| 381 | $(lisp)/cedet/semantic/db.elc \ | ||
| 382 | $(lisp)/cedet/semantic/debug.elc \ | ||
| 383 | $(lisp)/cedet/semantic/decorate.elc \ | ||
| 384 | $(lisp)/cedet/semantic/decorate/include.elc \ | ||
| 385 | $(lisp)/cedet/semantic/decorate/mode.elc \ | ||
| 386 | $(lisp)/cedet/semantic/dep.elc \ | ||
| 387 | $(lisp)/cedet/semantic/doc.elc \ | ||
| 388 | $(lisp)/cedet/semantic/ede-grammar.elc \ | ||
| 389 | $(lisp)/cedet/semantic/edit.elc \ | ||
| 390 | $(lisp)/cedet/semantic/find.elc \ | ||
| 391 | $(lisp)/cedet/semantic/format.elc \ | ||
| 392 | $(lisp)/cedet/semantic/fw.elc \ | ||
| 393 | $(lisp)/cedet/semantic/grammar-wy.elc \ | ||
| 394 | $(lisp)/cedet/semantic/grammar.elc \ | ||
| 395 | $(lisp)/cedet/semantic/html.elc \ | ||
| 396 | $(lisp)/cedet/semantic/ia-sb.elc \ | ||
| 397 | $(lisp)/cedet/semantic/ia.elc \ | ||
| 398 | $(lisp)/cedet/semantic/idle.elc \ | ||
| 399 | $(lisp)/cedet/semantic/java.elc \ | ||
| 400 | $(lisp)/cedet/semantic/lex-spp.elc \ | ||
| 401 | $(lisp)/cedet/semantic/lex.elc \ | ||
| 402 | $(lisp)/cedet/semantic/mru-bookmark.elc \ | ||
| 403 | $(lisp)/cedet/semantic/sb.elc \ | ||
| 404 | $(lisp)/cedet/semantic/scope.elc \ | ||
| 405 | $(lisp)/cedet/semantic/senator.elc \ | ||
| 406 | $(lisp)/cedet/semantic/sort.elc \ | ||
| 407 | $(lisp)/cedet/semantic/symref.elc \ | ||
| 408 | $(lisp)/cedet/semantic/symref/cscope.elc \ | ||
| 409 | $(lisp)/cedet/semantic/symref/filter.elc \ | ||
| 410 | $(lisp)/cedet/semantic/symref/global.elc \ | ||
| 411 | $(lisp)/cedet/semantic/symref/grep.elc \ | ||
| 412 | $(lisp)/cedet/semantic/symref/idutils.elc \ | ||
| 413 | $(lisp)/cedet/semantic/symref/list.elc \ | ||
| 414 | $(lisp)/cedet/semantic/tag-file.elc \ | ||
| 415 | $(lisp)/cedet/semantic/tag-ls.elc \ | ||
| 416 | $(lisp)/cedet/semantic/tag-write.elc \ | ||
| 417 | $(lisp)/cedet/semantic/tag.elc \ | ||
| 418 | $(lisp)/cedet/semantic/texi.elc \ | ||
| 419 | $(lisp)/cedet/semantic/util-modes.elc \ | ||
| 420 | $(lisp)/cedet/semantic/util.elc \ | ||
| 421 | $(lisp)/cedet/semantic/wisent.elc \ | ||
| 422 | $(lisp)/cedet/semantic/wisent/comp.elc \ | ||
| 423 | $(lisp)/cedet/semantic/wisent/java-tags.elc \ | ||
| 424 | $(lisp)/cedet/semantic/wisent/javascript.elc \ | ||
| 425 | $(lisp)/cedet/semantic/wisent/javat-wy.elc \ | ||
| 426 | $(lisp)/cedet/semantic/wisent/js-wy.elc \ | ||
| 427 | $(lisp)/cedet/semantic/wisent/python-wy.elc \ | ||
| 428 | $(lisp)/cedet/semantic/wisent/python.elc \ | ||
| 429 | $(lisp)/cedet/semantic/wisent/wisent.elc \ | ||
| 430 | $(lisp)/cedet/srecode.elc \ | ||
| 431 | $(lisp)/cedet/srecode/args.elc \ | ||
| 432 | $(lisp)/cedet/srecode/compile.elc \ | ||
| 433 | $(lisp)/cedet/srecode/cpp.elc \ | ||
| 434 | $(lisp)/cedet/srecode/ctxt.elc \ | ||
| 435 | $(lisp)/cedet/srecode/dictionary.elc \ | ||
| 436 | $(lisp)/cedet/srecode/document.elc \ | ||
| 437 | $(lisp)/cedet/srecode/el.elc \ | ||
| 438 | $(lisp)/cedet/srecode/expandproto.elc \ | ||
| 439 | $(lisp)/cedet/srecode/extract.elc \ | ||
| 440 | $(lisp)/cedet/srecode/fields.elc \ | ||
| 441 | $(lisp)/cedet/srecode/filters.elc \ | ||
| 442 | $(lisp)/cedet/srecode/find.elc \ | ||
| 443 | $(lisp)/cedet/srecode/getset.elc \ | ||
| 444 | $(lisp)/cedet/srecode/insert.elc \ | ||
| 445 | $(lisp)/cedet/srecode/java.elc \ | ||
| 446 | $(lisp)/cedet/srecode/map.elc \ | ||
| 447 | $(lisp)/cedet/srecode/mode.elc \ | ||
| 448 | $(lisp)/cedet/srecode/semantic.elc \ | ||
| 449 | $(lisp)/cedet/srecode/srt-mode.elc \ | ||
| 450 | $(lisp)/cedet/srecode/srt-wy.elc \ | ||
| 451 | $(lisp)/cedet/srecode/srt.elc \ | ||
| 452 | $(lisp)/cedet/srecode/table.elc \ | ||
| 453 | $(lisp)/cedet/srecode/template.elc \ | ||
| 454 | $(lisp)/cedet/srecode/texi.elc \ | ||
| 455 | $(lisp)/chistory.elc \ | ||
| 456 | $(lisp)/cmuscheme.elc \ | ||
| 457 | $(lisp)/comint.elc \ | ||
| 458 | $(lisp)/compare-w.elc \ | ||
| 459 | $(lisp)/complete.elc \ | ||
| 460 | $(lisp)/completion.elc \ | ||
| 461 | $(lisp)/composite.elc \ | ||
| 462 | $(lisp)/cus-dep.elc \ | ||
| 463 | $(lisp)/cus-edit.elc \ | ||
| 464 | $(lisp)/cus-face.elc \ | ||
| 465 | $(lisp)/cus-start.elc \ | ||
| 466 | $(lisp)/cus-theme.elc \ | ||
| 467 | $(lisp)/custom.elc \ | ||
| 468 | $(lisp)/cvs-status.elc \ | ||
| 469 | $(lisp)/dabbrev.elc \ | ||
| 470 | $(lisp)/delim-col.elc \ | ||
| 471 | $(lisp)/delsel.elc \ | ||
| 472 | $(lisp)/descr-text.elc \ | ||
| 473 | $(lisp)/desktop.elc \ | ||
| 474 | $(lisp)/dframe.elc \ | ||
| 475 | $(lisp)/diff-mode.elc \ | ||
| 476 | $(lisp)/diff.elc \ | ||
| 477 | $(lisp)/dired-aux.elc \ | ||
| 478 | $(lisp)/dired-x.elc \ | ||
| 479 | $(lisp)/dired.elc \ | ||
| 480 | $(lisp)/dirtrack.elc \ | ||
| 481 | $(lisp)/disp-table.elc \ | ||
| 482 | $(lisp)/dnd.elc \ | ||
| 483 | $(lisp)/doc-view.elc \ | ||
| 484 | $(lisp)/dos-fns.elc \ | ||
| 485 | $(lisp)/dos-vars.elc \ | ||
| 486 | $(lisp)/dos-w32.elc \ | ||
| 487 | $(lisp)/double.elc \ | ||
| 488 | $(lisp)/ebuff-menu.elc \ | ||
| 489 | $(lisp)/echistory.elc \ | ||
| 490 | $(lisp)/ediff-diff.elc \ | ||
| 491 | $(lisp)/ediff-help.elc \ | ||
| 492 | $(lisp)/ediff-hook.elc \ | ||
| 493 | $(lisp)/ediff-init.elc \ | ||
| 494 | $(lisp)/ediff-merg.elc \ | ||
| 495 | $(lisp)/ediff-mult.elc \ | ||
| 496 | $(lisp)/ediff-ptch.elc \ | ||
| 497 | $(lisp)/ediff-util.elc \ | ||
| 498 | $(lisp)/ediff-vers.elc \ | ||
| 499 | $(lisp)/ediff-wind.elc \ | ||
| 500 | $(lisp)/ediff.elc \ | ||
| 501 | $(lisp)/edmacro.elc \ | ||
| 502 | $(lisp)/ehelp.elc \ | ||
| 503 | $(lisp)/electric.elc \ | ||
| 504 | $(lisp)/elide-head.elc \ | ||
| 505 | $(lisp)/emacs-lisp/advice.elc \ | ||
| 506 | $(lisp)/emacs-lisp/assoc.elc \ | ||
| 507 | $(lisp)/emacs-lisp/authors.elc \ | ||
| 508 | $(lisp)/emacs-lisp/autoload.elc \ | ||
| 509 | $(lisp)/emacs-lisp/avl-tree.elc \ | ||
| 510 | $(lisp)/emacs-lisp/backquote.elc \ | ||
| 511 | $(lisp)/emacs-lisp/benchmark.elc \ | ||
| 512 | $(lisp)/emacs-lisp/bindat.elc \ | ||
| 513 | $(lisp)/emacs-lisp/byte-opt.elc \ | ||
| 514 | $(lisp)/emacs-lisp/byte-run.elc \ | ||
| 515 | $(lisp)/emacs-lisp/bytecomp.elc \ | ||
| 516 | $(lisp)/emacs-lisp/chart.elc \ | ||
| 517 | $(lisp)/emacs-lisp/check-declare.elc \ | ||
| 518 | $(lisp)/emacs-lisp/checkdoc.elc \ | ||
| 519 | $(lisp)/emacs-lisp/cl-compat.elc \ | ||
| 520 | $(lisp)/emacs-lisp/cl-extra.elc \ | ||
| 521 | $(lisp)/emacs-lisp/cl-indent.elc \ | ||
| 522 | $(lisp)/emacs-lisp/cl-macs.elc \ | ||
| 523 | $(lisp)/emacs-lisp/cl-seq.elc \ | ||
| 524 | $(lisp)/emacs-lisp/cl.elc \ | ||
| 525 | $(lisp)/emacs-lisp/copyright.elc \ | ||
| 526 | $(lisp)/emacs-lisp/crm.elc \ | ||
| 527 | $(lisp)/emacs-lisp/cust-print.elc \ | ||
| 528 | $(lisp)/emacs-lisp/debug.elc \ | ||
| 529 | $(lisp)/emacs-lisp/derived.elc \ | ||
| 530 | $(lisp)/emacs-lisp/disass.elc \ | ||
| 531 | $(lisp)/emacs-lisp/easy-mmode.elc \ | ||
| 532 | $(lisp)/emacs-lisp/easymenu.elc \ | ||
| 533 | $(lisp)/emacs-lisp/edebug.elc \ | ||
| 534 | $(lisp)/emacs-lisp/eieio-base.elc \ | ||
| 535 | $(lisp)/emacs-lisp/eieio-comp.elc \ | ||
| 536 | $(lisp)/emacs-lisp/eieio-custom.elc \ | ||
| 537 | $(lisp)/emacs-lisp/eieio-datadebug.elc \ | ||
| 538 | $(lisp)/emacs-lisp/eieio-opt.elc \ | ||
| 539 | $(lisp)/emacs-lisp/eieio-speedbar.elc \ | ||
| 540 | $(lisp)/emacs-lisp/eieio.elc \ | ||
| 541 | $(lisp)/emacs-lisp/eldoc.elc \ | ||
| 542 | $(lisp)/emacs-lisp/elint.elc \ | ||
| 543 | $(lisp)/emacs-lisp/elp.elc \ | ||
| 544 | $(lisp)/emacs-lisp/ewoc.elc \ | ||
| 545 | $(lisp)/emacs-lisp/find-func.elc \ | ||
| 546 | $(lisp)/emacs-lisp/find-gc.elc \ | ||
| 547 | $(lisp)/emacs-lisp/float-sup.elc \ | ||
| 548 | $(lisp)/emacs-lisp/generic.elc \ | ||
| 549 | $(lisp)/emacs-lisp/gulp.elc \ | ||
| 550 | $(lisp)/emacs-lisp/helper.elc \ | ||
| 551 | $(lisp)/emacs-lisp/lisp-mnt.elc \ | ||
| 552 | $(lisp)/emacs-lisp/lisp-mode.elc \ | ||
| 553 | $(lisp)/emacs-lisp/lisp.elc \ | ||
| 554 | $(lisp)/emacs-lisp/lmenu.elc \ | ||
| 555 | $(lisp)/emacs-lisp/macroexp.elc \ | ||
| 556 | $(lisp)/emacs-lisp/map-ynp.elc \ | ||
| 557 | $(lisp)/emacs-lisp/pp.elc \ | ||
| 558 | $(lisp)/emacs-lisp/re-builder.elc \ | ||
| 559 | $(lisp)/emacs-lisp/regexp-opt.elc \ | ||
| 560 | $(lisp)/emacs-lisp/regi.elc \ | ||
| 561 | $(lisp)/emacs-lisp/ring.elc \ | ||
| 562 | $(lisp)/emacs-lisp/rx.elc \ | ||
| 563 | $(lisp)/emacs-lisp/shadow.elc \ | ||
| 564 | $(lisp)/emacs-lisp/sregex.elc \ | ||
| 565 | $(lisp)/emacs-lisp/syntax.elc \ | ||
| 566 | $(lisp)/emacs-lisp/tcover-ses.elc \ | ||
| 567 | $(lisp)/emacs-lisp/tcover-unsafep.elc \ | ||
| 568 | $(lisp)/emacs-lisp/testcover.elc \ | ||
| 569 | $(lisp)/emacs-lisp/timer.elc \ | ||
| 570 | $(lisp)/emacs-lisp/tq.elc \ | ||
| 571 | $(lisp)/emacs-lisp/trace.elc \ | ||
| 572 | $(lisp)/emacs-lisp/unsafep.elc \ | ||
| 573 | $(lisp)/emacs-lisp/warnings.elc \ | ||
| 574 | $(lisp)/emacs-lock.elc \ | ||
| 575 | $(lisp)/emerge.elc \ | ||
| 576 | $(lisp)/emulation/crisp.elc \ | ||
| 577 | $(lisp)/emulation/cua-base.elc \ | ||
| 578 | $(lisp)/emulation/cua-gmrk.elc \ | ||
| 579 | $(lisp)/emulation/cua-rect.elc \ | ||
| 580 | $(lisp)/emulation/edt-lk201.elc \ | ||
| 581 | $(lisp)/emulation/edt-mapper.elc \ | ||
| 582 | $(lisp)/emulation/edt-pc.elc \ | ||
| 583 | $(lisp)/emulation/edt-vt100.elc \ | ||
| 584 | $(lisp)/emulation/edt.elc \ | ||
| 585 | $(lisp)/emulation/keypad.elc \ | ||
| 586 | $(lisp)/emulation/pc-mode.elc \ | ||
| 587 | $(lisp)/emulation/pc-select.elc \ | ||
| 588 | $(lisp)/emulation/tpu-edt.elc \ | ||
| 589 | $(lisp)/emulation/tpu-extras.elc \ | ||
| 590 | $(lisp)/emulation/tpu-mapper.elc \ | ||
| 591 | $(lisp)/emulation/vi.elc \ | ||
| 592 | $(lisp)/emulation/vip.elc \ | ||
| 593 | $(lisp)/emulation/viper-cmd.elc \ | ||
| 594 | $(lisp)/emulation/viper-ex.elc \ | ||
| 595 | $(lisp)/emulation/viper-init.elc \ | ||
| 596 | $(lisp)/emulation/viper-keym.elc \ | ||
| 597 | $(lisp)/emulation/viper-macs.elc \ | ||
| 598 | $(lisp)/emulation/viper-mous.elc \ | ||
| 599 | $(lisp)/emulation/viper-util.elc \ | ||
| 600 | $(lisp)/emulation/viper.elc \ | ||
| 601 | $(lisp)/emulation/ws-mode.elc \ | ||
| 602 | $(lisp)/env.elc \ | ||
| 603 | $(lisp)/epa-dired.elc \ | ||
| 604 | $(lisp)/epa-file.elc \ | ||
| 605 | $(lisp)/epa-hook.elc \ | ||
| 606 | $(lisp)/epa-mail.elc \ | ||
| 607 | $(lisp)/epa.elc \ | ||
| 608 | $(lisp)/epg-config.elc \ | ||
| 609 | $(lisp)/epg.elc \ | ||
| 610 | $(lisp)/erc/erc-autoaway.elc \ | ||
| 611 | $(lisp)/erc/erc-backend.elc \ | ||
| 612 | $(lisp)/erc/erc-button.elc \ | ||
| 613 | $(lisp)/erc/erc-capab.elc \ | ||
| 614 | $(lisp)/erc/erc-compat.elc \ | ||
| 615 | $(lisp)/erc/erc-dcc.elc \ | ||
| 616 | $(lisp)/erc/erc-ezbounce.elc \ | ||
| 617 | $(lisp)/erc/erc-fill.elc \ | ||
| 618 | $(lisp)/erc/erc-goodies.elc \ | ||
| 619 | $(lisp)/erc/erc-hecomplete.elc \ | ||
| 620 | $(lisp)/erc/erc-ibuffer.elc \ | ||
| 621 | $(lisp)/erc/erc-identd.elc \ | ||
| 622 | $(lisp)/erc/erc-imenu.elc \ | ||
| 623 | $(lisp)/erc/erc-join.elc \ | ||
| 624 | $(lisp)/erc/erc-lang.elc \ | ||
| 625 | $(lisp)/erc/erc-list.elc \ | ||
| 626 | $(lisp)/erc/erc-log.elc \ | ||
| 627 | $(lisp)/erc/erc-match.elc \ | ||
| 628 | $(lisp)/erc/erc-menu.elc \ | ||
| 629 | $(lisp)/erc/erc-netsplit.elc \ | ||
| 630 | $(lisp)/erc/erc-networks.elc \ | ||
| 631 | $(lisp)/erc/erc-notify.elc \ | ||
| 632 | $(lisp)/erc/erc-page.elc \ | ||
| 633 | $(lisp)/erc/erc-pcomplete.elc \ | ||
| 634 | $(lisp)/erc/erc-replace.elc \ | ||
| 635 | $(lisp)/erc/erc-ring.elc \ | ||
| 636 | $(lisp)/erc/erc-services.elc \ | ||
| 637 | $(lisp)/erc/erc-sound.elc \ | ||
| 638 | $(lisp)/erc/erc-speedbar.elc \ | ||
| 639 | $(lisp)/erc/erc-spelling.elc \ | ||
| 640 | $(lisp)/erc/erc-stamp.elc \ | ||
| 641 | $(lisp)/erc/erc-track.elc \ | ||
| 642 | $(lisp)/erc/erc-truncate.elc \ | ||
| 643 | $(lisp)/erc/erc-xdcc.elc \ | ||
| 644 | $(lisp)/erc/erc.elc \ | ||
| 645 | $(lisp)/eshell/em-alias.elc \ | ||
| 646 | $(lisp)/eshell/em-banner.elc \ | ||
| 647 | $(lisp)/eshell/em-basic.elc \ | ||
| 648 | $(lisp)/eshell/em-cmpl.elc \ | ||
| 649 | $(lisp)/eshell/em-dirs.elc \ | ||
| 650 | $(lisp)/eshell/em-glob.elc \ | ||
| 651 | $(lisp)/eshell/em-hist.elc \ | ||
| 652 | $(lisp)/eshell/em-ls.elc \ | ||
| 653 | $(lisp)/eshell/em-pred.elc \ | ||
| 654 | $(lisp)/eshell/em-prompt.elc \ | ||
| 655 | $(lisp)/eshell/em-rebind.elc \ | ||
| 656 | $(lisp)/eshell/em-script.elc \ | ||
| 657 | $(lisp)/eshell/em-smart.elc \ | ||
| 658 | $(lisp)/eshell/em-term.elc \ | ||
| 659 | $(lisp)/eshell/em-unix.elc \ | ||
| 660 | $(lisp)/eshell/em-xtra.elc \ | ||
| 661 | $(lisp)/eshell/esh-arg.elc \ | ||
| 662 | $(lisp)/eshell/esh-cmd.elc \ | ||
| 663 | $(lisp)/eshell/esh-ext.elc \ | ||
| 664 | $(lisp)/eshell/esh-io.elc \ | ||
| 665 | $(lisp)/eshell/esh-mode.elc \ | ||
| 666 | $(lisp)/eshell/esh-module.elc \ | ||
| 667 | $(lisp)/eshell/esh-opt.elc \ | ||
| 668 | $(lisp)/eshell/esh-proc.elc \ | ||
| 669 | $(lisp)/eshell/esh-test.elc \ | ||
| 670 | $(lisp)/eshell/esh-util.elc \ | ||
| 671 | $(lisp)/eshell/esh-var.elc \ | ||
| 672 | $(lisp)/eshell/eshell.elc \ | ||
| 673 | $(lisp)/expand.elc \ | ||
| 674 | $(lisp)/ezimage.elc \ | ||
| 675 | $(lisp)/face-remap.elc \ | ||
| 676 | $(lisp)/facemenu.elc \ | ||
| 677 | $(lisp)/faces.elc \ | ||
| 678 | $(lisp)/ffap.elc \ | ||
| 679 | $(lisp)/filecache.elc \ | ||
| 680 | $(lisp)/files-x.elc \ | ||
| 681 | $(lisp)/files.elc \ | ||
| 682 | $(lisp)/filesets.elc \ | ||
| 683 | $(lisp)/find-cmd.elc \ | ||
| 684 | $(lisp)/find-dired.elc \ | ||
| 685 | $(lisp)/find-file.elc \ | ||
| 686 | $(lisp)/find-lisp.elc \ | ||
| 687 | $(lisp)/finder.elc \ | ||
| 688 | $(lisp)/flow-ctrl.elc \ | ||
| 689 | $(lisp)/foldout.elc \ | ||
| 690 | $(lisp)/follow.elc \ | ||
| 691 | $(lisp)/font-core.elc \ | ||
| 692 | $(lisp)/font-lock.elc \ | ||
| 693 | $(lisp)/font-setting.elc \ | ||
| 694 | $(lisp)/format-spec.elc \ | ||
| 695 | $(lisp)/format.elc \ | ||
| 696 | $(lisp)/forms.elc \ | ||
| 697 | $(lisp)/frame.elc \ | ||
| 698 | $(lisp)/fringe.elc \ | ||
| 699 | $(lisp)/generic-x.elc \ | ||
| 700 | $(lisp)/gnus/auth-source.elc \ | ||
| 701 | $(lisp)/gnus/canlock.elc \ | ||
| 702 | $(lisp)/gnus/compface.elc \ | ||
| 703 | $(lisp)/gnus/deuglify.elc \ | ||
| 704 | $(lisp)/gnus/earcon.elc \ | ||
| 705 | $(lisp)/gnus/ecomplete.elc \ | ||
| 706 | $(lisp)/gnus/flow-fill.elc \ | ||
| 707 | $(lisp)/gnus/gmm-utils.elc \ | ||
| 708 | $(lisp)/gnus/gnus-agent.elc \ | ||
| 709 | $(lisp)/gnus/gnus-art.elc \ | ||
| 710 | $(lisp)/gnus/gnus-async.elc \ | ||
| 711 | $(lisp)/gnus/gnus-audio.elc \ | ||
| 712 | $(lisp)/gnus/gnus-bcklg.elc \ | ||
| 713 | $(lisp)/gnus/gnus-bookmark.elc \ | ||
| 714 | $(lisp)/gnus/gnus-cache.elc \ | ||
| 715 | $(lisp)/gnus/gnus-cite.elc \ | ||
| 716 | $(lisp)/gnus/gnus-cus.elc \ | ||
| 717 | $(lisp)/gnus/gnus-delay.elc \ | ||
| 718 | $(lisp)/gnus/gnus-demon.elc \ | ||
| 719 | $(lisp)/gnus/gnus-diary.elc \ | ||
| 720 | $(lisp)/gnus/gnus-dired.elc \ | ||
| 721 | $(lisp)/gnus/gnus-draft.elc \ | ||
| 722 | $(lisp)/gnus/gnus-dup.elc \ | ||
| 723 | $(lisp)/gnus/gnus-eform.elc \ | ||
| 724 | $(lisp)/gnus/gnus-ems.elc \ | ||
| 725 | $(lisp)/gnus/gnus-fun.elc \ | ||
| 726 | $(lisp)/gnus/gnus-group.elc \ | ||
| 727 | $(lisp)/gnus/gnus-int.elc \ | ||
| 728 | $(lisp)/gnus/gnus-kill.elc \ | ||
| 729 | $(lisp)/gnus/gnus-logic.elc \ | ||
| 730 | $(lisp)/gnus/gnus-mh.elc \ | ||
| 731 | $(lisp)/gnus/gnus-ml.elc \ | ||
| 732 | $(lisp)/gnus/gnus-mlspl.elc \ | ||
| 733 | $(lisp)/gnus/gnus-move.elc \ | ||
| 734 | $(lisp)/gnus/gnus-msg.elc \ | ||
| 735 | $(lisp)/gnus/gnus-nocem.elc \ | ||
| 736 | $(lisp)/gnus/gnus-picon.elc \ | ||
| 737 | $(lisp)/gnus/gnus-range.elc \ | ||
| 738 | $(lisp)/gnus/gnus-registry.elc \ | ||
| 739 | $(lisp)/gnus/gnus-salt.elc \ | ||
| 740 | $(lisp)/gnus/gnus-score.elc \ | ||
| 741 | $(lisp)/gnus/gnus-setup.elc \ | ||
| 742 | $(lisp)/gnus/gnus-sieve.elc \ | ||
| 743 | $(lisp)/gnus/gnus-soup.elc \ | ||
| 744 | $(lisp)/gnus/gnus-spec.elc \ | ||
| 745 | $(lisp)/gnus/gnus-srvr.elc \ | ||
| 746 | $(lisp)/gnus/gnus-start.elc \ | ||
| 747 | $(lisp)/gnus/gnus-sum.elc \ | ||
| 748 | $(lisp)/gnus/gnus-topic.elc \ | ||
| 749 | $(lisp)/gnus/gnus-undo.elc \ | ||
| 750 | $(lisp)/gnus/gnus-util.elc \ | ||
| 751 | $(lisp)/gnus/gnus-uu.elc \ | ||
| 752 | $(lisp)/gnus/gnus-vm.elc \ | ||
| 753 | $(lisp)/gnus/gnus-win.elc \ | ||
| 754 | $(lisp)/gnus/gnus.elc \ | ||
| 755 | $(lisp)/gnus/html2text.elc \ | ||
| 756 | $(lisp)/gnus/ietf-drums.elc \ | ||
| 757 | $(lisp)/gnus/legacy-gnus-agent.elc \ | ||
| 758 | $(lisp)/gnus/mail-parse.elc \ | ||
| 759 | $(lisp)/gnus/mail-prsvr.elc \ | ||
| 760 | $(lisp)/gnus/mail-source.elc \ | ||
| 761 | $(lisp)/gnus/mailcap.elc \ | ||
| 762 | $(lisp)/gnus/message.elc \ | ||
| 763 | $(lisp)/gnus/messcompat.elc \ | ||
| 764 | $(lisp)/gnus/mm-bodies.elc \ | ||
| 765 | $(lisp)/gnus/mm-decode.elc \ | ||
| 766 | $(lisp)/gnus/mm-encode.elc \ | ||
| 767 | $(lisp)/gnus/mm-extern.elc \ | ||
| 768 | $(lisp)/gnus/mm-partial.elc \ | ||
| 769 | $(lisp)/gnus/mm-url.elc \ | ||
| 770 | $(lisp)/gnus/mm-util.elc \ | ||
| 771 | $(lisp)/gnus/mm-uu.elc \ | ||
| 772 | $(lisp)/gnus/mm-view.elc \ | ||
| 773 | $(lisp)/gnus/mml-sec.elc \ | ||
| 774 | $(lisp)/gnus/mml-smime.elc \ | ||
| 775 | $(lisp)/gnus/mml.elc \ | ||
| 776 | $(lisp)/gnus/mml1991.elc \ | ||
| 777 | $(lisp)/gnus/mml2015.elc \ | ||
| 778 | $(lisp)/gnus/nnagent.elc \ | ||
| 779 | $(lisp)/gnus/nnbabyl.elc \ | ||
| 780 | $(lisp)/gnus/nndb.elc \ | ||
| 781 | $(lisp)/gnus/nndiary.elc \ | ||
| 782 | $(lisp)/gnus/nndir.elc \ | ||
| 783 | $(lisp)/gnus/nndoc.elc \ | ||
| 784 | $(lisp)/gnus/nndraft.elc \ | ||
| 785 | $(lisp)/gnus/nneething.elc \ | ||
| 786 | $(lisp)/gnus/nnfolder.elc \ | ||
| 787 | $(lisp)/gnus/nngateway.elc \ | ||
| 788 | $(lisp)/gnus/nnheader.elc \ | ||
| 789 | $(lisp)/gnus/nnimap.elc \ | ||
| 790 | $(lisp)/gnus/nnir.elc \ | ||
| 791 | $(lisp)/gnus/nnkiboze.elc \ | ||
| 792 | $(lisp)/gnus/nnlistserv.elc \ | ||
| 793 | $(lisp)/gnus/nnmail.elc \ | ||
| 794 | $(lisp)/gnus/nnmaildir.elc \ | ||
| 795 | $(lisp)/gnus/nnmairix.elc \ | ||
| 796 | $(lisp)/gnus/nnmbox.elc \ | ||
| 797 | $(lisp)/gnus/nnmh.elc \ | ||
| 798 | $(lisp)/gnus/nnml.elc \ | ||
| 799 | $(lisp)/gnus/nnnil.elc \ | ||
| 800 | $(lisp)/gnus/nnoo.elc \ | ||
| 801 | $(lisp)/gnus/nnrss.elc \ | ||
| 802 | $(lisp)/gnus/nnslashdot.elc \ | ||
| 803 | $(lisp)/gnus/nnsoup.elc \ | ||
| 804 | $(lisp)/gnus/nnspool.elc \ | ||
| 805 | $(lisp)/gnus/nntp.elc \ | ||
| 806 | $(lisp)/gnus/nnultimate.elc \ | ||
| 807 | $(lisp)/gnus/nnvirtual.elc \ | ||
| 808 | $(lisp)/gnus/nnwarchive.elc \ | ||
| 809 | $(lisp)/gnus/nnweb.elc \ | ||
| 810 | $(lisp)/gnus/nnwfm.elc \ | ||
| 811 | $(lisp)/gnus/pop3.elc \ | ||
| 812 | $(lisp)/gnus/qp.elc \ | ||
| 813 | $(lisp)/gnus/rfc1843.elc \ | ||
| 814 | $(lisp)/gnus/rfc2045.elc \ | ||
| 815 | $(lisp)/gnus/rfc2047.elc \ | ||
| 816 | $(lisp)/gnus/rfc2104.elc \ | ||
| 817 | $(lisp)/gnus/rfc2231.elc \ | ||
| 818 | $(lisp)/gnus/score-mode.elc \ | ||
| 819 | $(lisp)/gnus/sieve-manage.elc \ | ||
| 820 | $(lisp)/gnus/sieve-mode.elc \ | ||
| 821 | $(lisp)/gnus/sieve.elc \ | ||
| 822 | $(lisp)/gnus/smiley.elc \ | ||
| 823 | $(lisp)/gnus/smime.elc \ | ||
| 824 | $(lisp)/gnus/spam-report.elc \ | ||
| 825 | $(lisp)/gnus/spam-stat.elc \ | ||
| 826 | $(lisp)/gnus/spam-wash.elc \ | ||
| 827 | $(lisp)/gnus/spam.elc \ | ||
| 828 | $(lisp)/gnus/starttls.elc \ | ||
| 829 | $(lisp)/gnus/utf7.elc \ | ||
| 830 | $(lisp)/gnus/webmail.elc \ | ||
| 831 | $(lisp)/gnus/yenc.elc \ | ||
| 832 | $(lisp)/gs.elc \ | ||
| 833 | $(lisp)/help-at-pt.elc \ | ||
| 834 | $(lisp)/help-fns.elc \ | ||
| 835 | $(lisp)/help-macro.elc \ | ||
| 836 | $(lisp)/help-mode.elc \ | ||
| 837 | $(lisp)/help.elc \ | ||
| 838 | $(lisp)/hex-util.elc \ | ||
| 839 | $(lisp)/hexl.elc \ | ||
| 840 | $(lisp)/hfy-cmap.elc \ | ||
| 841 | $(lisp)/hi-lock.elc \ | ||
| 842 | $(lisp)/hilit-chg.elc \ | ||
| 843 | $(lisp)/hippie-exp.elc \ | ||
| 844 | $(lisp)/hl-line.elc \ | ||
| 845 | $(lisp)/htmlfontify.elc \ | ||
| 846 | $(lisp)/ibuf-ext.elc \ | ||
| 847 | $(lisp)/ibuf-macs.elc \ | ||
| 848 | $(lisp)/ibuffer.elc \ | ||
| 849 | $(lisp)/icomplete.elc \ | ||
| 850 | $(lisp)/ido.elc \ | ||
| 851 | $(lisp)/ielm.elc \ | ||
| 852 | $(lisp)/iimage.elc \ | ||
| 853 | $(lisp)/image-dired.elc \ | ||
| 854 | $(lisp)/image-file.elc \ | ||
| 855 | $(lisp)/image-mode.elc \ | ||
| 856 | $(lisp)/image.elc \ | ||
| 857 | $(lisp)/imenu.elc \ | ||
| 858 | $(lisp)/indent.elc \ | ||
| 859 | $(lisp)/info-look.elc \ | ||
| 860 | $(lisp)/info-xref.elc \ | ||
| 861 | $(lisp)/info.elc \ | ||
| 862 | $(lisp)/informat.elc \ | ||
| 863 | $(lisp)/international/ccl.elc \ | ||
| 864 | $(lisp)/international/characters.elc \ | ||
| 865 | $(lisp)/international/fontset.elc \ | ||
| 866 | $(lisp)/international/isearch-x.elc \ | ||
| 867 | $(lisp)/international/iso-ascii.elc \ | ||
| 868 | $(lisp)/international/iso-cvt.elc \ | ||
| 869 | $(lisp)/international/iso-transl.elc \ | ||
| 870 | $(lisp)/international/ja-dic-cnv.elc \ | ||
| 871 | $(lisp)/international/ja-dic-utl.elc \ | ||
| 872 | $(lisp)/international/kinsoku.elc \ | ||
| 873 | $(lisp)/international/kkc.elc \ | ||
| 874 | $(lisp)/international/latexenc.elc \ | ||
| 875 | $(lisp)/international/latin1-disp.elc \ | ||
| 876 | $(lisp)/international/mule-cmds.elc \ | ||
| 877 | $(lisp)/international/mule-conf.elc \ | ||
| 878 | $(lisp)/international/mule-diag.elc \ | ||
| 879 | $(lisp)/international/mule-util.elc \ | ||
| 880 | $(lisp)/international/mule.elc \ | ||
| 881 | $(lisp)/international/ogonek.elc \ | ||
| 882 | $(lisp)/international/quail.elc \ | ||
| 883 | $(lisp)/international/robin.elc \ | ||
| 884 | $(lisp)/international/titdic-cnv.elc \ | ||
| 885 | $(lisp)/international/ucs-normalize.elc \ | ||
| 886 | $(lisp)/international/utf-7.elc \ | ||
| 887 | $(lisp)/isearch.elc \ | ||
| 888 | $(lisp)/isearchb.elc \ | ||
| 889 | $(lisp)/iswitchb.elc \ | ||
| 890 | $(lisp)/jit-lock.elc \ | ||
| 891 | $(lisp)/jka-cmpr-hook.elc \ | ||
| 892 | $(lisp)/jka-compr.elc \ | ||
| 893 | $(lisp)/json.elc \ | ||
| 894 | $(lisp)/kermit.elc \ | ||
| 895 | $(lisp)/kmacro.elc \ | ||
| 896 | $(lisp)/language/china-util.elc \ | ||
| 897 | $(lisp)/language/chinese.elc \ | ||
| 898 | $(lisp)/language/cyril-util.elc \ | ||
| 899 | $(lisp)/language/cyrillic.elc \ | ||
| 900 | $(lisp)/language/ethio-util.elc \ | ||
| 901 | $(lisp)/language/ethiopic.elc \ | ||
| 902 | $(lisp)/language/european.elc \ | ||
| 903 | $(lisp)/language/hanja-util.elc \ | ||
| 904 | $(lisp)/language/ind-util.elc \ | ||
| 905 | $(lisp)/language/indian.elc \ | ||
| 906 | $(lisp)/language/japan-util.elc \ | ||
| 907 | $(lisp)/language/korea-util.elc \ | ||
| 908 | $(lisp)/language/lao-util.elc \ | ||
| 909 | $(lisp)/language/thai-util.elc \ | ||
| 910 | $(lisp)/language/thai-word.elc \ | ||
| 911 | $(lisp)/language/tibet-util.elc \ | ||
| 912 | $(lisp)/language/tibetan.elc \ | ||
| 913 | $(lisp)/language/tv-util.elc \ | ||
| 914 | $(lisp)/language/viet-util.elc \ | ||
| 915 | $(lisp)/language/vietnamese.elc \ | ||
| 916 | $(lisp)/ledit.elc \ | ||
| 917 | $(lisp)/linum.elc \ | ||
| 918 | $(lisp)/loadhist.elc \ | ||
| 919 | $(lisp)/locate.elc \ | ||
| 920 | $(lisp)/log-edit.elc \ | ||
| 921 | $(lisp)/log-view.elc \ | ||
| 922 | $(lisp)/longlines.elc \ | ||
| 923 | $(lisp)/lpr.elc \ | ||
| 924 | $(lisp)/ls-lisp.elc \ | ||
| 925 | $(lisp)/macros.elc \ | ||
| 926 | $(lisp)/mail/binhex.elc \ | ||
| 927 | $(lisp)/mail/emacsbug.elc \ | ||
| 928 | $(lisp)/mail/feedmail.elc \ | ||
| 929 | $(lisp)/mail/footnote.elc \ | ||
| 930 | $(lisp)/mail/hashcash.elc \ | ||
| 931 | $(lisp)/mail/mail-extr.elc \ | ||
| 932 | $(lisp)/mail/mail-hist.elc \ | ||
| 933 | $(lisp)/mail/mail-utils.elc \ | ||
| 934 | $(lisp)/mail/mailabbrev.elc \ | ||
| 935 | $(lisp)/mail/mailalias.elc \ | ||
| 936 | $(lisp)/mail/mailclient.elc \ | ||
| 937 | $(lisp)/mail/mailheader.elc \ | ||
| 938 | $(lisp)/mail/mailpost.elc \ | ||
| 939 | $(lisp)/mail/metamail.elc \ | ||
| 940 | $(lisp)/mail/mspools.elc \ | ||
| 941 | $(lisp)/mail/reporter.elc \ | ||
| 942 | $(lisp)/mail/rfc2368.elc \ | ||
| 943 | $(lisp)/mail/rfc822.elc \ | ||
| 944 | $(lisp)/mail/rmail-spam-filter.elc \ | ||
| 945 | $(lisp)/mail/rmail.elc \ | ||
| 946 | $(lisp)/mail/rmailedit.elc \ | ||
| 947 | $(lisp)/mail/rmailkwd.elc \ | ||
| 948 | $(lisp)/mail/rmailmm.elc \ | ||
| 949 | $(lisp)/mail/rmailmsc.elc \ | ||
| 950 | $(lisp)/mail/rmailout.elc \ | ||
| 951 | $(lisp)/mail/rmailsort.elc \ | ||
| 952 | $(lisp)/mail/rmailsum.elc \ | ||
| 953 | $(lisp)/mail/sendmail.elc \ | ||
| 954 | $(lisp)/mail/smtpmail.elc \ | ||
| 955 | $(lisp)/mail/supercite.elc \ | ||
| 956 | $(lisp)/mail/uce.elc \ | ||
| 957 | $(lisp)/mail/undigest.elc \ | ||
| 958 | $(lisp)/mail/unrmail.elc \ | ||
| 959 | $(lisp)/mail/uudecode.elc \ | ||
| 960 | $(lisp)/makesum.elc \ | ||
| 961 | $(lisp)/man.elc \ | ||
| 962 | $(lisp)/master.elc \ | ||
| 963 | $(lisp)/mb-depth.elc \ | ||
| 964 | $(lisp)/md4.elc \ | ||
| 965 | $(lisp)/menu-bar.elc \ | ||
| 966 | $(lisp)/mh-e/mh-alias.elc \ | ||
| 967 | $(lisp)/mh-e/mh-buffers.elc \ | ||
| 968 | $(lisp)/mh-e/mh-comp.elc \ | ||
| 969 | $(lisp)/mh-e/mh-e.elc \ | ||
| 970 | $(lisp)/mh-e/mh-folder.elc \ | ||
| 971 | $(lisp)/mh-e/mh-funcs.elc \ | ||
| 972 | $(lisp)/mh-e/mh-identity.elc \ | ||
| 973 | $(lisp)/mh-e/mh-inc.elc \ | ||
| 974 | $(lisp)/mh-e/mh-junk.elc \ | ||
| 975 | $(lisp)/mh-e/mh-letter.elc \ | ||
| 976 | $(lisp)/mh-e/mh-limit.elc \ | ||
| 977 | $(lisp)/mh-e/mh-mime.elc \ | ||
| 978 | $(lisp)/mh-e/mh-print.elc \ | ||
| 979 | $(lisp)/mh-e/mh-scan.elc \ | ||
| 980 | $(lisp)/mh-e/mh-search.elc \ | ||
| 981 | $(lisp)/mh-e/mh-seq.elc \ | ||
| 982 | $(lisp)/mh-e/mh-show.elc \ | ||
| 983 | $(lisp)/mh-e/mh-speed.elc \ | ||
| 984 | $(lisp)/mh-e/mh-thread.elc \ | ||
| 985 | $(lisp)/mh-e/mh-tool-bar.elc \ | ||
| 986 | $(lisp)/mh-e/mh-utils.elc \ | ||
| 987 | $(lisp)/mh-e/mh-xface.elc \ | ||
| 988 | $(lisp)/midnight.elc \ | ||
| 989 | $(lisp)/minibuf-eldef.elc \ | ||
| 990 | $(lisp)/minibuffer.elc \ | ||
| 991 | $(lisp)/misc.elc \ | ||
| 992 | $(lisp)/misearch.elc \ | ||
| 993 | $(lisp)/mouse-copy.elc \ | ||
| 994 | $(lisp)/mouse-drag.elc \ | ||
| 995 | $(lisp)/mouse-sel.elc \ | ||
| 996 | $(lisp)/mouse.elc \ | ||
| 997 | $(lisp)/mpc.elc \ | ||
| 998 | $(lisp)/msb.elc \ | ||
| 999 | $(lisp)/mwheel.elc \ | ||
| 1000 | $(lisp)/net/ange-ftp.elc \ | ||
| 1001 | $(lisp)/net/browse-url.elc \ | ||
| 1002 | $(lisp)/net/dbus.elc \ | ||
| 1003 | $(lisp)/net/dig.elc \ | ||
| 1004 | $(lisp)/net/dns.elc \ | ||
| 1005 | $(lisp)/net/eudc-bob.elc \ | ||
| 1006 | $(lisp)/net/eudc-export.elc \ | ||
| 1007 | $(lisp)/net/eudc-hotlist.elc \ | ||
| 1008 | $(lisp)/net/eudc-vars.elc \ | ||
| 1009 | $(lisp)/net/eudc.elc \ | ||
| 1010 | $(lisp)/net/eudcb-bbdb.elc \ | ||
| 1011 | $(lisp)/net/eudcb-ldap.elc \ | ||
| 1012 | $(lisp)/net/eudcb-mab.elc \ | ||
| 1013 | $(lisp)/net/eudcb-ph.elc \ | ||
| 1014 | $(lisp)/net/goto-addr.elc \ | ||
| 1015 | $(lisp)/net/hmac-def.elc \ | ||
| 1016 | $(lisp)/net/hmac-md5.elc \ | ||
| 1017 | $(lisp)/net/imap-hash.elc \ | ||
| 1018 | $(lisp)/net/imap.elc \ | ||
| 1019 | $(lisp)/net/ldap.elc \ | ||
| 1020 | $(lisp)/net/mairix.elc \ | ||
| 1021 | $(lisp)/net/net-utils.elc \ | ||
| 1022 | $(lisp)/net/netrc.elc \ | ||
| 1023 | $(lisp)/net/newst-backend.elc \ | ||
| 1024 | $(lisp)/net/newst-plainview.elc \ | ||
| 1025 | $(lisp)/net/newst-reader.elc \ | ||
| 1026 | $(lisp)/net/newst-ticker.elc \ | ||
| 1027 | $(lisp)/net/newst-treeview.elc \ | ||
| 1028 | $(lisp)/net/newsticker.elc \ | ||
| 1029 | $(lisp)/net/ntlm.elc \ | ||
| 1030 | $(lisp)/net/quickurl.elc \ | ||
| 1031 | $(lisp)/net/rcirc.elc \ | ||
| 1032 | $(lisp)/net/rcompile.elc \ | ||
| 1033 | $(lisp)/net/rlogin.elc \ | ||
| 1034 | $(lisp)/net/sasl-cram.elc \ | ||
| 1035 | $(lisp)/net/sasl-digest.elc \ | ||
| 1036 | $(lisp)/net/sasl-ntlm.elc \ | ||
| 1037 | $(lisp)/net/sasl.elc \ | ||
| 1038 | $(lisp)/net/secrets.elc \ | ||
| 1039 | $(lisp)/net/snmp-mode.elc \ | ||
| 1040 | $(lisp)/net/socks.elc \ | ||
| 1041 | $(lisp)/net/telnet.elc \ | ||
| 1042 | $(lisp)/net/tls.elc \ | ||
| 1043 | $(lisp)/net/tramp-cache.elc \ | ||
| 1044 | $(lisp)/net/tramp-cmds.elc \ | ||
| 1045 | $(lisp)/net/tramp-compat.elc \ | ||
| 1046 | $(lisp)/net/tramp-fish.elc \ | ||
| 1047 | $(lisp)/net/tramp-ftp.elc \ | ||
| 1048 | $(lisp)/net/tramp-gvfs.elc \ | ||
| 1049 | $(lisp)/net/tramp-gw.elc \ | ||
| 1050 | $(lisp)/net/tramp-imap.elc \ | ||
| 1051 | $(lisp)/net/tramp-smb.elc \ | ||
| 1052 | $(lisp)/net/tramp-uu.elc \ | ||
| 1053 | $(lisp)/net/tramp.elc \ | ||
| 1054 | $(lisp)/net/trampver.elc \ | ||
| 1055 | $(lisp)/net/webjump.elc \ | ||
| 1056 | $(lisp)/net/xesam.elc \ | ||
| 1057 | $(lisp)/net/zeroconf.elc \ | ||
| 1058 | $(lisp)/newcomment.elc \ | ||
| 1059 | $(lisp)/novice.elc \ | ||
| 1060 | $(lisp)/nxml/nxml-enc.elc \ | ||
| 1061 | $(lisp)/nxml/nxml-glyph.elc \ | ||
| 1062 | $(lisp)/nxml/nxml-maint.elc \ | ||
| 1063 | $(lisp)/nxml/nxml-mode.elc \ | ||
| 1064 | $(lisp)/nxml/nxml-ns.elc \ | ||
| 1065 | $(lisp)/nxml/nxml-outln.elc \ | ||
| 1066 | $(lisp)/nxml/nxml-parse.elc \ | ||
| 1067 | $(lisp)/nxml/nxml-rap.elc \ | ||
| 1068 | $(lisp)/nxml/nxml-uchnm.elc \ | ||
| 1069 | $(lisp)/nxml/nxml-util.elc \ | ||
| 1070 | $(lisp)/nxml/rng-cmpct.elc \ | ||
| 1071 | $(lisp)/nxml/rng-dt.elc \ | ||
| 1072 | $(lisp)/nxml/rng-loc.elc \ | ||
| 1073 | $(lisp)/nxml/rng-maint.elc \ | ||
| 1074 | $(lisp)/nxml/rng-match.elc \ | ||
| 1075 | $(lisp)/nxml/rng-nxml.elc \ | ||
| 1076 | $(lisp)/nxml/rng-parse.elc \ | ||
| 1077 | $(lisp)/nxml/rng-pttrn.elc \ | ||
| 1078 | $(lisp)/nxml/rng-uri.elc \ | ||
| 1079 | $(lisp)/nxml/rng-util.elc \ | ||
| 1080 | $(lisp)/nxml/rng-valid.elc \ | ||
| 1081 | $(lisp)/nxml/rng-xsd.elc \ | ||
| 1082 | $(lisp)/nxml/xmltok.elc \ | ||
| 1083 | $(lisp)/nxml/xsd-regexp.elc \ | ||
| 1084 | $(lisp)/obsolete/awk-mode.elc \ | ||
| 1085 | $(lisp)/obsolete/fast-lock.elc \ | ||
| 1086 | $(lisp)/obsolete/iso-acc.elc \ | ||
| 1087 | $(lisp)/obsolete/iso-insert.elc \ | ||
| 1088 | $(lisp)/obsolete/iso-swed.elc \ | ||
| 1089 | $(lisp)/obsolete/lazy-lock.elc \ | ||
| 1090 | $(lisp)/obsolete/levents.elc \ | ||
| 1091 | $(lisp)/obsolete/lucid.elc \ | ||
| 1092 | $(lisp)/obsolete/old-whitespace.elc \ | ||
| 1093 | $(lisp)/obsolete/options.elc \ | ||
| 1094 | $(lisp)/obsolete/resume.elc \ | ||
| 1095 | $(lisp)/obsolete/rnews.elc \ | ||
| 1096 | $(lisp)/obsolete/rnewspost.elc \ | ||
| 1097 | $(lisp)/obsolete/sc.elc \ | ||
| 1098 | $(lisp)/obsolete/scribe.elc \ | ||
| 1099 | $(lisp)/obsolete/s-region.elc \ | ||
| 1100 | $(lisp)/obsolete/swedish.elc \ | ||
| 1101 | $(lisp)/obsolete/sym-comp.elc \ | ||
| 1102 | $(lisp)/obsolete/vc-mcvs.elc \ | ||
| 1103 | $(lisp)/obsolete/x-menu.elc \ | ||
| 1104 | $(lisp)/org/org-agenda.elc \ | ||
| 1105 | $(lisp)/org/org-archive.elc \ | ||
| 1106 | $(lisp)/org/org-ascii.elc \ | ||
| 1107 | $(lisp)/org/org-attach.elc \ | ||
| 1108 | $(lisp)/org/org-bbdb.elc \ | ||
| 1109 | $(lisp)/org/org-bibtex.elc \ | ||
| 1110 | $(lisp)/org/org-clock.elc \ | ||
| 1111 | $(lisp)/org/org-colview.elc \ | ||
| 1112 | $(lisp)/org/org-compat.elc \ | ||
| 1113 | $(lisp)/org/org-crypt.elc \ | ||
| 1114 | $(lisp)/org/org-datetree.elc \ | ||
| 1115 | $(lisp)/org/org-docbook.elc \ | ||
| 1116 | $(lisp)/org/org-exp-blocks.elc \ | ||
| 1117 | $(lisp)/org/org-exp.elc \ | ||
| 1118 | $(lisp)/org/org-faces.elc \ | ||
| 1119 | $(lisp)/org/org-feed.elc \ | ||
| 1120 | $(lisp)/org/org-footnote.elc \ | ||
| 1121 | $(lisp)/org/org-freemind.elc \ | ||
| 1122 | $(lisp)/org/org-gnus.elc \ | ||
| 1123 | $(lisp)/org/org-habit.elc \ | ||
| 1124 | $(lisp)/org/org-html.elc \ | ||
| 1125 | $(lisp)/org/org-icalendar.elc \ | ||
| 1126 | $(lisp)/org/org-id.elc \ | ||
| 1127 | $(lisp)/org/org-indent.elc \ | ||
| 1128 | $(lisp)/org/org-info.elc \ | ||
| 1129 | $(lisp)/org/org-inlinetask.elc \ | ||
| 1130 | $(lisp)/org/org-install.elc \ | ||
| 1131 | $(lisp)/org/org-irc.elc \ | ||
| 1132 | $(lisp)/org/org-jsinfo.elc \ | ||
| 1133 | $(lisp)/org/org-latex.elc \ | ||
| 1134 | $(lisp)/org/org-list.elc \ | ||
| 1135 | $(lisp)/org/org-mac-message.elc \ | ||
| 1136 | $(lisp)/org/org-macs.elc \ | ||
| 1137 | $(lisp)/org/org-mew.elc \ | ||
| 1138 | $(lisp)/org/org-mhe.elc \ | ||
| 1139 | $(lisp)/org/org-mobile.elc \ | ||
| 1140 | $(lisp)/org/org-mouse.elc \ | ||
| 1141 | $(lisp)/org/org-plot.elc \ | ||
| 1142 | $(lisp)/org/org-protocol.elc \ | ||
| 1143 | $(lisp)/org/org-publish.elc \ | ||
| 1144 | $(lisp)/org/org-remember.elc \ | ||
| 1145 | $(lisp)/org/org-rmail.elc \ | ||
| 1146 | $(lisp)/org/org-src.elc \ | ||
| 1147 | $(lisp)/org/org-table.elc \ | ||
| 1148 | $(lisp)/org/org-timer.elc \ | ||
| 1149 | $(lisp)/org/org-vm.elc \ | ||
| 1150 | $(lisp)/org/org-w3m.elc \ | ||
| 1151 | $(lisp)/org/org-wl.elc \ | ||
| 1152 | $(lisp)/org/org-xoxo.elc \ | ||
| 1153 | $(lisp)/org/org.elc \ | ||
| 1154 | $(lisp)/outline.elc \ | ||
| 1155 | $(lisp)/paren.elc \ | ||
| 1156 | $(lisp)/password-cache.elc \ | ||
| 1157 | $(lisp)/pcmpl-cvs.elc \ | ||
| 1158 | $(lisp)/pcmpl-gnu.elc \ | ||
| 1159 | $(lisp)/pcmpl-linux.elc \ | ||
| 1160 | $(lisp)/pcmpl-rpm.elc \ | ||
| 1161 | $(lisp)/pcmpl-unix.elc \ | ||
| 1162 | $(lisp)/pcomplete.elc \ | ||
| 1163 | $(lisp)/pcvs-defs.elc \ | ||
| 1164 | $(lisp)/pcvs-info.elc \ | ||
| 1165 | $(lisp)/pcvs-parse.elc \ | ||
| 1166 | $(lisp)/pcvs-util.elc \ | ||
| 1167 | $(lisp)/pcvs.elc \ | ||
| 1168 | $(lisp)/pgg-def.elc \ | ||
| 1169 | $(lisp)/pgg-gpg.elc \ | ||
| 1170 | $(lisp)/pgg-parse.elc \ | ||
| 1171 | $(lisp)/pgg-pgp.elc \ | ||
| 1172 | $(lisp)/pgg-pgp5.elc \ | ||
| 1173 | $(lisp)/pgg.elc \ | ||
| 1174 | $(lisp)/play/5x5.elc \ | ||
| 1175 | $(lisp)/play/animate.elc \ | ||
| 1176 | $(lisp)/play/blackbox.elc \ | ||
| 1177 | $(lisp)/play/bubbles.elc \ | ||
| 1178 | $(lisp)/play/cookie1.elc \ | ||
| 1179 | $(lisp)/play/decipher.elc \ | ||
| 1180 | $(lisp)/play/dissociate.elc \ | ||
| 1181 | $(lisp)/play/doctor.elc \ | ||
| 1182 | $(lisp)/play/dunnet.elc \ | ||
| 1183 | $(lisp)/play/fortune.elc \ | ||
| 1184 | $(lisp)/play/gamegrid.elc \ | ||
| 1185 | $(lisp)/play/gametree.elc \ | ||
| 1186 | $(lisp)/play/gomoku.elc \ | ||
| 1187 | $(lisp)/play/handwrite.elc \ | ||
| 1188 | $(lisp)/play/hanoi.elc \ | ||
| 1189 | $(lisp)/play/landmark.elc \ | ||
| 1190 | $(lisp)/play/life.elc \ | ||
| 1191 | $(lisp)/play/meese.elc \ | ||
| 1192 | $(lisp)/play/morse.elc \ | ||
| 1193 | $(lisp)/play/mpuz.elc \ | ||
| 1194 | $(lisp)/play/pong.elc \ | ||
| 1195 | $(lisp)/play/snake.elc \ | ||
| 1196 | $(lisp)/play/solitaire.elc \ | ||
| 1197 | $(lisp)/play/spook.elc \ | ||
| 1198 | $(lisp)/play/studly.elc \ | ||
| 1199 | $(lisp)/play/tetris.elc \ | ||
| 1200 | $(lisp)/play/yow.elc \ | ||
| 1201 | $(lisp)/play/zone.elc \ | ||
| 1202 | $(lisp)/printing.elc \ | ||
| 1203 | $(lisp)/proced.elc \ | ||
| 1204 | $(lisp)/progmodes/ada-mode.elc \ | ||
| 1205 | $(lisp)/progmodes/ada-prj.elc \ | ||
| 1206 | $(lisp)/progmodes/ada-stmt.elc \ | ||
| 1207 | $(lisp)/progmodes/ada-xref.elc \ | ||
| 1208 | $(lisp)/progmodes/antlr-mode.elc \ | ||
| 1209 | $(lisp)/progmodes/asm-mode.elc \ | ||
| 1210 | $(lisp)/progmodes/autoconf.elc \ | ||
| 1211 | $(lisp)/progmodes/bug-reference.elc \ | ||
| 1212 | $(lisp)/progmodes/cap-words.elc \ | ||
| 1213 | $(lisp)/progmodes/cc-align.elc \ | ||
| 1214 | $(lisp)/progmodes/cc-awk.elc \ | ||
| 1215 | $(lisp)/progmodes/cc-bytecomp.elc \ | ||
| 1216 | $(lisp)/progmodes/cc-cmds.elc \ | ||
| 1217 | $(lisp)/progmodes/cc-compat.elc \ | ||
| 1218 | $(lisp)/progmodes/cc-defs.elc \ | ||
| 1219 | $(lisp)/progmodes/cc-engine.elc \ | ||
| 1220 | $(lisp)/progmodes/cc-fonts.elc \ | ||
| 1221 | $(lisp)/progmodes/cc-langs.elc \ | ||
| 1222 | $(lisp)/progmodes/cc-menus.elc \ | ||
| 1223 | $(lisp)/progmodes/cc-mode.elc \ | ||
| 1224 | $(lisp)/progmodes/cc-styles.elc \ | ||
| 1225 | $(lisp)/progmodes/cc-vars.elc \ | ||
| 1226 | $(lisp)/progmodes/cfengine.elc \ | ||
| 1227 | $(lisp)/progmodes/cmacexp.elc \ | ||
| 1228 | $(lisp)/progmodes/compile.elc \ | ||
| 1229 | $(lisp)/progmodes/cperl-mode.elc \ | ||
| 1230 | $(lisp)/progmodes/cpp.elc \ | ||
| 1231 | $(lisp)/progmodes/cwarn.elc \ | ||
| 1232 | $(lisp)/progmodes/dcl-mode.elc \ | ||
| 1233 | $(lisp)/progmodes/delphi.elc \ | ||
| 1234 | $(lisp)/progmodes/ebnf-abn.elc \ | ||
| 1235 | $(lisp)/progmodes/ebnf-bnf.elc \ | ||
| 1236 | $(lisp)/progmodes/ebnf-dtd.elc \ | ||
| 1237 | $(lisp)/progmodes/ebnf-ebx.elc \ | ||
| 1238 | $(lisp)/progmodes/ebnf-iso.elc \ | ||
| 1239 | $(lisp)/progmodes/ebnf-otz.elc \ | ||
| 1240 | $(lisp)/progmodes/ebnf-yac.elc \ | ||
| 1241 | $(lisp)/progmodes/ebnf2ps.elc \ | ||
| 1242 | $(lisp)/progmodes/ebrowse.elc \ | ||
| 1243 | $(lisp)/progmodes/etags.elc \ | ||
| 1244 | $(lisp)/progmodes/executable.elc \ | ||
| 1245 | $(lisp)/progmodes/f90.elc \ | ||
| 1246 | $(lisp)/progmodes/flymake.elc \ | ||
| 1247 | $(lisp)/progmodes/fortran.elc \ | ||
| 1248 | $(lisp)/progmodes/gdb-ui.elc \ | ||
| 1249 | $(lisp)/progmodes/glasses.elc \ | ||
| 1250 | $(lisp)/progmodes/grep.elc \ | ||
| 1251 | $(lisp)/progmodes/gud.elc \ | ||
| 1252 | $(lisp)/progmodes/hideif.elc \ | ||
| 1253 | $(lisp)/progmodes/hideshow.elc \ | ||
| 1254 | $(lisp)/progmodes/icon.elc \ | ||
| 1255 | $(lisp)/progmodes/idlw-complete-structtag.elc \ | ||
| 1256 | $(lisp)/progmodes/idlw-help.elc \ | ||
| 1257 | $(lisp)/progmodes/idlw-shell.elc \ | ||
| 1258 | $(lisp)/progmodes/idlw-toolbar.elc \ | ||
| 1259 | $(lisp)/progmodes/idlwave.elc \ | ||
| 1260 | $(lisp)/progmodes/inf-lisp.elc \ | ||
| 1261 | $(lisp)/progmodes/js.elc \ | ||
| 1262 | $(lisp)/progmodes/ld-script.elc \ | ||
| 1263 | $(lisp)/progmodes/m4-mode.elc \ | ||
| 1264 | $(lisp)/progmodes/make-mode.elc \ | ||
| 1265 | $(lisp)/progmodes/mantemp.elc \ | ||
| 1266 | $(lisp)/progmodes/meta-mode.elc \ | ||
| 1267 | $(lisp)/progmodes/mixal-mode.elc \ | ||
| 1268 | $(lisp)/progmodes/modula2.elc \ | ||
| 1269 | $(lisp)/progmodes/octave-inf.elc \ | ||
| 1270 | $(lisp)/progmodes/octave-mod.elc \ | ||
| 1271 | $(lisp)/progmodes/pascal.elc \ | ||
| 1272 | $(lisp)/progmodes/perl-mode.elc \ | ||
| 1273 | $(lisp)/progmodes/prolog.elc \ | ||
| 1274 | $(lisp)/progmodes/ps-mode.elc \ | ||
| 1275 | $(lisp)/progmodes/python.elc \ | ||
| 1276 | $(lisp)/progmodes/ruby-mode.elc \ | ||
| 1277 | $(lisp)/progmodes/scheme.elc \ | ||
| 1278 | $(lisp)/progmodes/sh-script.elc \ | ||
| 1279 | $(lisp)/progmodes/simula.elc \ | ||
| 1280 | $(lisp)/progmodes/sql.elc \ | ||
| 1281 | $(lisp)/progmodes/subword.elc \ | ||
| 1282 | $(lisp)/progmodes/tcl.elc \ | ||
| 1283 | $(lisp)/progmodes/vera-mode.elc \ | ||
| 1284 | $(lisp)/progmodes/verilog-mode.elc \ | ||
| 1285 | $(lisp)/progmodes/vhdl-mode.elc \ | ||
| 1286 | $(lisp)/progmodes/which-func.elc \ | ||
| 1287 | $(lisp)/progmodes/xscheme.elc \ | ||
| 1288 | $(lisp)/ps-bdf.elc \ | ||
| 1289 | $(lisp)/ps-def.elc \ | ||
| 1290 | $(lisp)/ps-mule.elc \ | ||
| 1291 | $(lisp)/ps-print.elc \ | ||
| 1292 | $(lisp)/ps-samp.elc \ | ||
| 1293 | $(lisp)/recentf.elc \ | ||
| 1294 | $(lisp)/rect.elc \ | ||
| 1295 | $(lisp)/register.elc \ | ||
| 1296 | $(lisp)/repeat.elc \ | ||
| 1297 | $(lisp)/replace.elc \ | ||
| 1298 | $(lisp)/reposition.elc \ | ||
| 1299 | $(lisp)/reveal.elc \ | ||
| 1300 | $(lisp)/rfn-eshadow.elc \ | ||
| 1301 | $(lisp)/rot13.elc \ | ||
| 1302 | $(lisp)/ruler-mode.elc \ | ||
| 1303 | $(lisp)/savehist.elc \ | ||
| 1304 | $(lisp)/saveplace.elc \ | ||
| 1305 | $(lisp)/sb-image.elc \ | ||
| 1306 | $(lisp)/scroll-all.elc \ | ||
| 1307 | $(lisp)/scroll-bar.elc \ | ||
| 1308 | $(lisp)/scroll-lock.elc \ | ||
| 1309 | $(lisp)/select.elc \ | ||
| 1310 | $(lisp)/server.elc \ | ||
| 1311 | $(lisp)/ses.elc \ | ||
| 1312 | $(lisp)/sha1.elc \ | ||
| 1313 | $(lisp)/shadowfile.elc \ | ||
| 1314 | $(lisp)/shell.elc \ | ||
| 1315 | $(lisp)/simple.elc \ | ||
| 1316 | $(lisp)/skeleton.elc \ | ||
| 1317 | $(lisp)/smerge-mode.elc \ | ||
| 1318 | $(lisp)/sort.elc \ | ||
| 1319 | $(lisp)/soundex.elc \ | ||
| 1320 | $(lisp)/speedbar.elc \ | ||
| 1321 | $(lisp)/startup.elc \ | ||
| 1322 | $(lisp)/strokes.elc \ | ||
| 1323 | $(lisp)/subr.elc \ | ||
| 1324 | $(lisp)/t-mouse.elc \ | ||
| 1325 | $(lisp)/tabify.elc \ | ||
| 1326 | $(lisp)/talk.elc \ | ||
| 1327 | $(lisp)/tar-mode.elc \ | ||
| 1328 | $(lisp)/tempo.elc \ | ||
| 1329 | $(lisp)/term.elc \ | ||
| 1330 | $(lisp)/term/common-win.elc \ | ||
| 1331 | $(lisp)/term/internal.elc \ | ||
| 1332 | $(lisp)/term/ns-win.elc \ | ||
| 1333 | $(lisp)/term/pc-win.elc \ | ||
| 1334 | $(lisp)/term/rxvt.elc \ | ||
| 1335 | $(lisp)/term/sun.elc \ | ||
| 1336 | $(lisp)/term/sup-mouse.elc \ | ||
| 1337 | $(lisp)/term/tty-colors.elc \ | ||
| 1338 | $(lisp)/term/tvi970.elc \ | ||
| 1339 | $(lisp)/term/vt100.elc \ | ||
| 1340 | $(lisp)/term/w32-win.elc \ | ||
| 1341 | $(lisp)/term/w32console.elc \ | ||
| 1342 | $(lisp)/term/x-win.elc \ | ||
| 1343 | $(lisp)/term/xterm.elc \ | ||
| 1344 | $(lisp)/terminal.elc \ | ||
| 1345 | $(lisp)/textmodes/artist.elc \ | ||
| 1346 | $(lisp)/textmodes/bib-mode.elc \ | ||
| 1347 | $(lisp)/textmodes/bibtex-style.elc \ | ||
| 1348 | $(lisp)/textmodes/bibtex.elc \ | ||
| 1349 | $(lisp)/textmodes/conf-mode.elc \ | ||
| 1350 | $(lisp)/textmodes/css-mode.elc \ | ||
| 1351 | $(lisp)/textmodes/dns-mode.elc \ | ||
| 1352 | $(lisp)/textmodes/enriched.elc \ | ||
| 1353 | $(lisp)/textmodes/fill.elc \ | ||
| 1354 | $(lisp)/textmodes/flyspell.elc \ | ||
| 1355 | $(lisp)/textmodes/ispell.elc \ | ||
| 1356 | $(lisp)/textmodes/makeinfo.elc \ | ||
| 1357 | $(lisp)/textmodes/nroff-mode.elc \ | ||
| 1358 | $(lisp)/textmodes/page-ext.elc \ | ||
| 1359 | $(lisp)/textmodes/page.elc \ | ||
| 1360 | $(lisp)/textmodes/paragraphs.elc \ | ||
| 1361 | $(lisp)/textmodes/picture.elc \ | ||
| 1362 | $(lisp)/textmodes/po.elc \ | ||
| 1363 | $(lisp)/textmodes/refbib.elc \ | ||
| 1364 | $(lisp)/textmodes/refer.elc \ | ||
| 1365 | $(lisp)/textmodes/refill.elc \ | ||
| 1366 | $(lisp)/textmodes/reftex-auc.elc \ | ||
| 1367 | $(lisp)/textmodes/reftex-cite.elc \ | ||
| 1368 | $(lisp)/textmodes/reftex-dcr.elc \ | ||
| 1369 | $(lisp)/textmodes/reftex-global.elc \ | ||
| 1370 | $(lisp)/textmodes/reftex-index.elc \ | ||
| 1371 | $(lisp)/textmodes/reftex-parse.elc \ | ||
| 1372 | $(lisp)/textmodes/reftex-ref.elc \ | ||
| 1373 | $(lisp)/textmodes/reftex-sel.elc \ | ||
| 1374 | $(lisp)/textmodes/reftex-toc.elc \ | ||
| 1375 | $(lisp)/textmodes/reftex-vars.elc \ | ||
| 1376 | $(lisp)/textmodes/reftex.elc \ | ||
| 1377 | $(lisp)/textmodes/remember.elc \ | ||
| 1378 | $(lisp)/textmodes/rst.elc \ | ||
| 1379 | $(lisp)/textmodes/sgml-mode.elc \ | ||
| 1380 | $(lisp)/textmodes/spell.elc \ | ||
| 1381 | $(lisp)/textmodes/table.elc \ | ||
| 1382 | $(lisp)/textmodes/tex-mode.elc \ | ||
| 1383 | $(lisp)/textmodes/texinfmt.elc \ | ||
| 1384 | $(lisp)/textmodes/texinfo.elc \ | ||
| 1385 | $(lisp)/textmodes/texnfo-upd.elc \ | ||
| 1386 | $(lisp)/textmodes/text-mode.elc \ | ||
| 1387 | $(lisp)/textmodes/tildify.elc \ | ||
| 1388 | $(lisp)/textmodes/two-column.elc \ | ||
| 1389 | $(lisp)/textmodes/underline.elc \ | ||
| 1390 | $(lisp)/thingatpt.elc \ | ||
| 1391 | $(lisp)/thumbs.elc \ | ||
| 1392 | $(lisp)/time-stamp.elc \ | ||
| 1393 | $(lisp)/time.elc \ | ||
| 1394 | $(lisp)/timezone.elc \ | ||
| 1395 | $(lisp)/tmm.elc \ | ||
| 1396 | $(lisp)/tool-bar.elc \ | ||
| 1397 | $(lisp)/tooltip.elc \ | ||
| 1398 | $(lisp)/tree-widget.elc \ | ||
| 1399 | $(lisp)/tutorial.elc \ | ||
| 1400 | $(lisp)/type-break.elc \ | ||
| 1401 | $(lisp)/uniquify.elc \ | ||
| 1402 | $(lisp)/url/url-about.elc \ | ||
| 1403 | $(lisp)/url/url-auth.elc \ | ||
| 1404 | $(lisp)/url/url-cache.elc \ | ||
| 1405 | $(lisp)/url/url-cid.elc \ | ||
| 1406 | $(lisp)/url/url-cookie.elc \ | ||
| 1407 | $(lisp)/url/url-dav.elc \ | ||
| 1408 | $(lisp)/url/url-dired.elc \ | ||
| 1409 | $(lisp)/url/url-expand.elc \ | ||
| 1410 | $(lisp)/url/url-file.elc \ | ||
| 1411 | $(lisp)/url/url-ftp.elc \ | ||
| 1412 | $(lisp)/url/url-gw.elc \ | ||
| 1413 | $(lisp)/url/url-handlers.elc \ | ||
| 1414 | $(lisp)/url/url-history.elc \ | ||
| 1415 | $(lisp)/url/url-http.elc \ | ||
| 1416 | $(lisp)/url/url-imap.elc \ | ||
| 1417 | $(lisp)/url/url-irc.elc \ | ||
| 1418 | $(lisp)/url/url-ldap.elc \ | ||
| 1419 | $(lisp)/url/url-mailto.elc \ | ||
| 1420 | $(lisp)/url/url-methods.elc \ | ||
| 1421 | $(lisp)/url/url-misc.elc \ | ||
| 1422 | $(lisp)/url/url-news.elc \ | ||
| 1423 | $(lisp)/url/url-nfs.elc \ | ||
| 1424 | $(lisp)/url/url-ns.elc \ | ||
| 1425 | $(lisp)/url/url-parse.elc \ | ||
| 1426 | $(lisp)/url/url-privacy.elc \ | ||
| 1427 | $(lisp)/url/url-proxy.elc \ | ||
| 1428 | $(lisp)/url/url-util.elc \ | ||
| 1429 | $(lisp)/url/url-vars.elc \ | ||
| 1430 | $(lisp)/url/url.elc \ | ||
| 1431 | $(lisp)/userlock.elc \ | ||
| 1432 | $(lisp)/vc-annotate.elc \ | ||
| 1433 | $(lisp)/vc-arch.elc \ | ||
| 1434 | $(lisp)/vc-bzr.elc \ | ||
| 1435 | $(lisp)/vc-cvs.elc \ | ||
| 1436 | $(lisp)/vc-dav.elc \ | ||
| 1437 | $(lisp)/vc-dir.elc \ | ||
| 1438 | $(lisp)/vc-dispatcher.elc \ | ||
| 1439 | $(lisp)/vc-git.elc \ | ||
| 1440 | $(lisp)/vc-hg.elc \ | ||
| 1441 | $(lisp)/vc-hooks.elc \ | ||
| 1442 | $(lisp)/vc-mtn.elc \ | ||
| 1443 | $(lisp)/vc-rcs.elc \ | ||
| 1444 | $(lisp)/vc-sccs.elc \ | ||
| 1445 | $(lisp)/vc-svn.elc \ | ||
| 1446 | $(lisp)/vc.elc \ | ||
| 1447 | $(lisp)/vcursor.elc \ | ||
| 1448 | $(lisp)/view.elc \ | ||
| 1449 | $(lisp)/vt-control.elc \ | ||
| 1450 | $(lisp)/vt100-led.elc \ | ||
| 1451 | $(lisp)/w32-fns.elc \ | ||
| 1452 | $(lisp)/w32-vars.elc \ | ||
| 1453 | $(lisp)/wdired.elc \ | ||
| 1454 | $(lisp)/whitespace.elc \ | ||
| 1455 | $(lisp)/wid-browse.elc \ | ||
| 1456 | $(lisp)/wid-edit.elc \ | ||
| 1457 | $(lisp)/widget.elc \ | ||
| 1458 | $(lisp)/windmove.elc \ | ||
| 1459 | $(lisp)/window.elc \ | ||
| 1460 | $(lisp)/winner.elc \ | ||
| 1461 | $(lisp)/woman.elc \ | ||
| 1462 | $(lisp)/x-dnd.elc \ | ||
| 1463 | $(lisp)/xml.elc \ | ||
| 1464 | $(lisp)/xt-mouse.elc | ||
| 1465 | |||
| 1466 | # The src/Makefile.in has its own set of dependencies and when they decide | 186 | # The src/Makefile.in has its own set of dependencies and when they decide |
| 1467 | # that one Lisp file needs to be re-compiled, we had better recompile it as | 187 | # that one Lisp file needs to be re-compiled, we had better recompile it as |
| 1468 | # well, otherwise every subsequent make will again call us, until we finally | 188 | # well, otherwise every subsequent make will again call us, until we finally |
| @@ -1491,17 +211,41 @@ compile-onefile: | |||
| 1491 | 211 | ||
| 1492 | # An old-fashioned suffix rule, which, according to the GNU Make manual, | 212 | # An old-fashioned suffix rule, which, according to the GNU Make manual, |
| 1493 | # cannot have prerequisites. | 213 | # cannot have prerequisites. |
| 1494 | # Note that if a .el file is removed from the repository without | ||
| 1495 | # updating ELCFILES, make will abort. | ||
| 1496 | .el.elc: | 214 | .el.elc: |
| 1497 | @echo Compiling $< | 215 | @echo Compiling $< |
| 1498 | @$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $< | 216 | @$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $< |
| 1499 | 217 | ||
| 1500 | .PHONY: compile-first compile-main compile-last compile compile-always | 218 | .PHONY: compile-first compile-main compile compile-always |
| 1501 | 219 | ||
| 1502 | compile-first: $(COMPILE_FIRST) | 220 | compile-first: $(COMPILE_FIRST) |
| 1503 | 221 | ||
| 1504 | compile-main: $(ELCFILES) | 222 | # In `compile-main' we could directly do |
| 223 | # ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)" | ||
| 224 | # and it works, but it generates a lot of messages like | ||
| 225 | # make[2]: « gnus/gnus-mlspl.elc » is up to date. | ||
| 226 | # so instead, we use "xargs echo" to split the list of file into manageable | ||
| 227 | # chunks and then use an intermediate `compile-targets' target so the | ||
| 228 | # actual targets (the .elc files) are not mentioned as targets on the | ||
| 229 | # make command line. | ||
| 230 | |||
| 231 | |||
| 232 | .PHONY: compile-targets | ||
| 233 | # TARGETS is set dynamically in the recursive call from `compile-main'. | ||
| 234 | compile-targets: $(TARGETS) | ||
| 235 | |||
| 236 | # Compile all the Elisp files that need it. Beware: it approximates | ||
| 237 | # `no-byte-compile', so watch out for false-positives! | ||
| 238 | compile-main: | ||
| 239 | @cd $(lisp); $(setwins); \ | ||
| 240 | els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \ | ||
| 241 | for el in $$els; do \ | ||
| 242 | test -f $$el || continue; \ | ||
| 243 | test ! -f $${el}c && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el > /dev/null && continue; \ | ||
| 244 | echo "$${el}c"; \ | ||
| 245 | done | xargs echo | \ | ||
| 246 | while read chunk; do \ | ||
| 247 | $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \ | ||
| 248 | done | ||
| 1505 | 249 | ||
| 1506 | # Compile all Lisp files, but don't recompile those that are up to | 250 | # Compile all Lisp files, but don't recompile those that are up to |
| 1507 | # date. Some .el files don't get compiled because they set the | 251 | # date. Some .el files don't get compiled because they set the |
| @@ -1511,10 +255,6 @@ compile-main: $(ELCFILES) | |||
| 1511 | # sub-makes that run rules that use it, for the sake of some non-GNU makes. | 255 | # sub-makes that run rules that use it, for the sake of some non-GNU makes. |
| 1512 | compile: $(LOADDEFS) autoloads compile-first | 256 | compile: $(LOADDEFS) autoloads compile-first |
| 1513 | $(MAKE) $(MFLAGS) compile-main EMACS=$(EMACS) | 257 | $(MAKE) $(MFLAGS) compile-main EMACS=$(EMACS) |
| 1514 | $(MAKE) $(MFLAGS) compile-last EMACS=$(EMACS) | ||
| 1515 | |||
| 1516 | ## Doing this causes make install to dump another emacs. | ||
| 1517 | # $(MAKE) $(MFLAGS) update-elclist | ||
| 1518 | 258 | ||
| 1519 | # Compile all Lisp files. This is like `compile' but compiles files | 259 | # Compile all Lisp files. This is like `compile' but compiles files |
| 1520 | # unconditionally. Some files don't actually get compiled because they | 260 | # unconditionally. Some files don't actually get compiled because they |
| @@ -1523,20 +263,6 @@ compile-always: doit | |||
| 1523 | cd $(lisp); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc | 263 | cd $(lisp); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc |
| 1524 | $(MAKE) $(MFLAGS) compile EMACS=$(EMACS) | 264 | $(MAKE) $(MFLAGS) compile EMACS=$(EMACS) |
| 1525 | 265 | ||
| 1526 | ## In case any files are missing from ELCFILES. | ||
| 1527 | compile-last: | ||
| 1528 | @cd $(lisp); $(setwins); \ | ||
| 1529 | els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \ | ||
| 1530 | for el in $$els; do \ | ||
| 1531 | test -f $$el || continue; \ | ||
| 1532 | test -f $${el}c && continue; \ | ||
| 1533 | GREP_OPTIONS= grep 'no-byte-compile: t' $$el > /dev/null && continue; \ | ||
| 1534 | sel=`echo $$el | sed "s|^$(lisp)|\\$$(lisp)|"`; \ | ||
| 1535 | echo "Maintainer warning: $$sel missing from \$$ELCFILES?"; \ | ||
| 1536 | echo "Compiling $$el"; \ | ||
| 1537 | $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \ | ||
| 1538 | done | ||
| 1539 | |||
| 1540 | compile-calc: | 266 | compile-calc: |
| 1541 | for el in $(lisp)/calc/*.el; do \ | 267 | for el in $(lisp)/calc/*.el; do \ |
| 1542 | echo Compiling $$el; \ | 268 | echo Compiling $$el; \ |
| @@ -1556,8 +282,7 @@ compile-after-backup: backup-compiled-files compile-always | |||
| 1556 | 282 | ||
| 1557 | # Recompile all Lisp files which are newer than their .elc files and compile | 283 | # Recompile all Lisp files which are newer than their .elc files and compile |
| 1558 | # new ones. | 284 | # new ones. |
| 1559 | # This has the same effect as compile-main (followed up with compile-last, | 285 | # This has the same effect as compile-main. recompile has some advantages: |
| 1560 | # if ELCFILES is out of date). recompile has some advantages: | ||
| 1561 | # i) It is faster (on a single processor), since it only has to start | 286 | # i) It is faster (on a single processor), since it only has to start |
| 1562 | # Emacs once. It was 33% faster on a test with a random 10% of the .el | 287 | # Emacs once. It was 33% faster on a test with a random 10% of the .el |
| 1563 | # files needing recompilation. | 288 | # files needing recompilation. |