X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/97e181925b60073563f1da0346cb3cf538067d38..f43cb6490878cb8f1dcb7e45044bc635f54d5951:/lisp/Makefile.in diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 5be9612408..e6f2a66ec8 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -1,6 +1,6 @@ # Maintenance productions for the Lisp directory -# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -# 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, +# 2009, 2010 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -19,14 +19,19 @@ SHELL = /bin/sh -lisp=@srcdir@ -VPATH=@srcdir@ -srcdir=@srcdir@/.. +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +abs_top_builddir = @abs_top_builddir@ +lisp = $(srcdir) +VPATH = $(srcdir) # You can specify a different executable on the make command line, # e.g. "make EMACS=../src/emacs ...". -EMACS = ../src/emacs +# We sometimes change directory before running Emacs (typically when +# building out-of-tree, we chdir to the source directory), so we need +# to use an absolute file name. +EMACS = ${abs_top_builddir}/src/emacs # Command line flags for Emacs. This must include --multibyte, # otherwise some files will not compile. @@ -41,6 +46,8 @@ BYTE_COMPILE_EXTRA_FLAGS = lisptagsfiles1 = $(lisp)/*.el lisptagsfiles2 = $(lisp)/*/*.el +lisptagsfiles3 = $(lisp)/*/*/*.el +lisptagsfiles4 = $(lisp)/*/*/*/*.el ETAGS = ../lib-src/etags # Automatically generated autoload files, apart from lisp/loaddefs.el. @@ -59,7 +66,17 @@ AUTOGENEL = loaddefs.el \ finder-inf.el \ subdirs.el \ calc/calc-loaddefs.el \ - eshell/esh-groups.el + eshell/esh-groups.el \ + cedet/semantic/loaddefs.el \ + cedet/ede/loaddefs.el \ + cedet/srecode/loaddefs.el + +# Value of max-lisp-eval-depth when compiling initially. +# During bootstrapping the byte-compiler is run interpreted when compiling +# itself, and uses more stack than usual. +# +BIG_STACK_DEPTH = 1000 +BIG_STACK_OPTS = --eval "(setq max-lisp-eval-depth $(BIG_STACK_DEPTH))" # Files to compile before others during a bootstrap. This is done to # speed up the bootstrap process. @@ -74,20 +91,26 @@ COMPILE_FIRST = \ emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) # Common command to find subdirectories - -setwins=subdirs=`(cd $$wd; find . -type d -print)`; \ +setwins=subdirs=`(find . -type d -print)`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \ - *) wins="$$wins $$wd/$$file" ;; \ + case $$file in */.* | */.*/* | */=* ) ;; \ + *) wins="$$wins $$file" ;; \ esac; \ done # Find all subdirectories except `obsolete' and `term'. +setwins_almost=subdirs=`(find . -type d -print)`; \ + for file in $$subdirs; do \ + case $$file in */.* | */.*/* | */=* | */obsolete | */term ) ;; \ + *) wins="$$wins $$file" ;; \ + esac; \ + done -setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ +# Find all subdirectories in which we might want to create subdirs.el +setwins_for_subdirs=subdirs=`(find . -type d -print)`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ - *) wins="$$wins $$wd/$$file" ;; \ + case $$file in */.* | */.*/* | */=* | */cedet* ) ;; \ + *) wins="$$wins $$file" ;; \ esac; \ done @@ -96,8 +119,6 @@ setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ # cus-load and finder-inf are not explicitly requested by anything, so # we add them here to make sure they get built. all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el - @: Let us check that we byte-compiled all the files. - $(MAKE) $(MFLAGS) compile-last EMACS=$(EMACS) doit: @@ -118,14 +139,14 @@ doit: $(lisp)/cus-load.el: $(MAKE) $(MFLAGS) custom-deps custom-deps: doit - wd=$(lisp); $(setwins_almost); \ + cd $(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins $(lisp)/finder-inf.el: $(MAKE) $(MFLAGS) finder-data finder-data: doit - wd=$(lisp); $(setwins_almost); \ + cd $(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins @@ -133,8 +154,9 @@ finder-data: doit # are identified by being the value of `generated-autoload-file'. autoloads: $(LOADDEFS) doit chmod +w $(lisp)/ps-print.el $(lisp)/emulation/tpu-edt.el \ - $(lisp)/emacs-lisp/cl-loaddefs.el - wd=$(lisp); $(setwins_almost); \ + $(lisp)/emacs-lisp/cl-loaddefs.el $(lisp)/mail/rmail.el \ + $(lisp)/dired.el $(lisp)/ibuffer.el $(lisp)/htmlfontify.el + cd $(lisp); $(setwins_almost); \ echo Directories: $$wins; \ $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins @@ -143,1120 +165,28 @@ autoloads: $(LOADDEFS) doit $(lisp)/subdirs.el: $(MAKE) $(MFLAGS) update-subdirs update-subdirs: doit - wd=$(lisp); $(setwins); \ + cd $(lisp); $(setwins_for_subdirs); \ for file in $$wins; do \ - $(srcdir)/update-subdirs $$file; \ + $(top_srcdir)/update-subdirs $$file; \ done; updates: update-subdirs autoloads finder-data custom-deps -# This is useful after "cvs up". -cvs-update: recompile autoloads finder-data custom-deps +# This is useful after "bzr up". +bzr-update: recompile autoloads finder-data custom-deps + +# For backwards compatibility: +cvs-update: bzr-update # Update the AUTHORS file. update-authors: - $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir) + $(emacs) -l authors -f batch-update-authors $(top_srcdir)/etc/AUTHORS $(top_srcdir) -TAGS TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) - els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/[^ ]*loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ +TAGS TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) + els=`echo $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4) | sed -e "s,$(lisp)/[^ ]*loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ ${ETAGS} -o $@ $$els -.PHONY: update-elclist - -## Post-bootstrap, find the list of .elc files and use sed to update -## ELCFILES in Makefile.in. -## Errors in the final sed are non-fatal, since they have no effect on -## building Emacs. chmod +w is for CVSREAD=1. -## "echo" is non-portable with regards to backslashes, eg between zsh -## and bash. Hence the use of sed on line 2 below (line 1 seems to be OK). -## http://lists.gnu.org/archive/html/emacs-devel/2008-05/msg01535.html -update-elclist: - echo "/^ELCFILES/,/^$$/c\\" > temp.sed - echo "ELCFILES =" | sed -e 's/$$/ \\\\\\/' >> temp.sed - LC_COLLATE=C ls $(lisp)/*.elc $(lisp)/*/*.elc | sed -e "s|^$(lisp)| \$$(lisp)|" -e 's/$$/ \\\\\\/' -e '$$ s/ \\\\//' >> temp.sed - echo "" >> temp.sed - -sed -f temp.sed $(lisp)/Makefile.in > temp-elcfiles || rm temp-elcfiles - rm temp.sed - @test -f temp-elcfiles || echo "Maintainer warning: failed to update Makefile.in. You can ignore this if you are not an Emacs developer." - if test -f temp-elcfiles; then \ - chmod +w $(lisp)/Makefile.in; \ - mv -f temp-elcfiles $(lisp)/Makefile.in; \ - fi - -## Explicitly list the .elc files, for the sake of parallel builds. -## http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-05/msg00016.html -## This can probably be done more elegantly, but needs to be portable. -ELCFILES = \ - $(lisp)/abbrev.elc \ - $(lisp)/abbrevlist.elc \ - $(lisp)/add-log.elc \ - $(lisp)/align.elc \ - $(lisp)/allout.elc \ - $(lisp)/ansi-color.elc \ - $(lisp)/apropos.elc \ - $(lisp)/arc-mode.elc \ - $(lisp)/array.elc \ - $(lisp)/autoarg.elc \ - $(lisp)/autoinsert.elc \ - $(lisp)/autorevert.elc \ - $(lisp)/avoid.elc \ - $(lisp)/battery.elc \ - $(lisp)/bindings.elc \ - $(lisp)/bookmark.elc \ - $(lisp)/bs.elc \ - $(lisp)/buff-menu.elc \ - $(lisp)/button.elc \ - $(lisp)/calc/calc-aent.elc \ - $(lisp)/calc/calc-alg.elc \ - $(lisp)/calc/calc-arith.elc \ - $(lisp)/calc/calc-bin.elc \ - $(lisp)/calc/calc-comb.elc \ - $(lisp)/calc/calc-cplx.elc \ - $(lisp)/calc/calc-embed.elc \ - $(lisp)/calc/calc-ext.elc \ - $(lisp)/calc/calc-fin.elc \ - $(lisp)/calc/calc-forms.elc \ - $(lisp)/calc/calc-frac.elc \ - $(lisp)/calc/calc-funcs.elc \ - $(lisp)/calc/calc-graph.elc \ - $(lisp)/calc/calc-help.elc \ - $(lisp)/calc/calc-incom.elc \ - $(lisp)/calc/calc-keypd.elc \ - $(lisp)/calc/calc-lang.elc \ - $(lisp)/calc/calc-macs.elc \ - $(lisp)/calc/calc-map.elc \ - $(lisp)/calc/calc-math.elc \ - $(lisp)/calc/calc-menu.elc \ - $(lisp)/calc/calc-misc.elc \ - $(lisp)/calc/calc-mode.elc \ - $(lisp)/calc/calc-mtx.elc \ - $(lisp)/calc/calc-nlfit.elc \ - $(lisp)/calc/calc-poly.elc \ - $(lisp)/calc/calc-prog.elc \ - $(lisp)/calc/calc-rewr.elc \ - $(lisp)/calc/calc-rules.elc \ - $(lisp)/calc/calc-sel.elc \ - $(lisp)/calc/calc-stat.elc \ - $(lisp)/calc/calc-store.elc \ - $(lisp)/calc/calc-stuff.elc \ - $(lisp)/calc/calc-trail.elc \ - $(lisp)/calc/calc-undo.elc \ - $(lisp)/calc/calc-units.elc \ - $(lisp)/calc/calc-vec.elc \ - $(lisp)/calc/calc-yank.elc \ - $(lisp)/calc/calc.elc \ - $(lisp)/calc/calcalg2.elc \ - $(lisp)/calc/calcalg3.elc \ - $(lisp)/calc/calccomp.elc \ - $(lisp)/calc/calcsel2.elc \ - $(lisp)/calculator.elc \ - $(lisp)/calendar/appt.elc \ - $(lisp)/calendar/cal-bahai.elc \ - $(lisp)/calendar/cal-china.elc \ - $(lisp)/calendar/cal-coptic.elc \ - $(lisp)/calendar/cal-dst.elc \ - $(lisp)/calendar/cal-french.elc \ - $(lisp)/calendar/cal-hebrew.elc \ - $(lisp)/calendar/cal-html.elc \ - $(lisp)/calendar/cal-islam.elc \ - $(lisp)/calendar/cal-iso.elc \ - $(lisp)/calendar/cal-julian.elc \ - $(lisp)/calendar/cal-mayan.elc \ - $(lisp)/calendar/cal-menu.elc \ - $(lisp)/calendar/cal-move.elc \ - $(lisp)/calendar/cal-persia.elc \ - $(lisp)/calendar/cal-tex.elc \ - $(lisp)/calendar/cal-x.elc \ - $(lisp)/calendar/calendar.elc \ - $(lisp)/calendar/diary-lib.elc \ - $(lisp)/calendar/holidays.elc \ - $(lisp)/calendar/icalendar.elc \ - $(lisp)/calendar/lunar.elc \ - $(lisp)/calendar/parse-time.elc \ - $(lisp)/calendar/solar.elc \ - $(lisp)/calendar/time-date.elc \ - $(lisp)/calendar/timeclock.elc \ - $(lisp)/calendar/todo-mode.elc \ - $(lisp)/case-table.elc \ - $(lisp)/cdl.elc \ - $(lisp)/chistory.elc \ - $(lisp)/cmuscheme.elc \ - $(lisp)/comint.elc \ - $(lisp)/compare-w.elc \ - $(lisp)/complete.elc \ - $(lisp)/completion.elc \ - $(lisp)/composite.elc \ - $(lisp)/cus-dep.elc \ - $(lisp)/cus-edit.elc \ - $(lisp)/cus-face.elc \ - $(lisp)/cus-start.elc \ - $(lisp)/cus-theme.elc \ - $(lisp)/custom.elc \ - $(lisp)/cvs-status.elc \ - $(lisp)/dabbrev.elc \ - $(lisp)/delim-col.elc \ - $(lisp)/delsel.elc \ - $(lisp)/descr-text.elc \ - $(lisp)/desktop.elc \ - $(lisp)/dframe.elc \ - $(lisp)/diff-mode.elc \ - $(lisp)/diff.elc \ - $(lisp)/dired-aux.elc \ - $(lisp)/dired-x.elc \ - $(lisp)/dired.elc \ - $(lisp)/dirtrack.elc \ - $(lisp)/disp-table.elc \ - $(lisp)/dnd.elc \ - $(lisp)/doc-view.elc \ - $(lisp)/dos-fns.elc \ - $(lisp)/dos-vars.elc \ - $(lisp)/dos-w32.elc \ - $(lisp)/double.elc \ - $(lisp)/ebuff-menu.elc \ - $(lisp)/echistory.elc \ - $(lisp)/ediff-diff.elc \ - $(lisp)/ediff-help.elc \ - $(lisp)/ediff-hook.elc \ - $(lisp)/ediff-init.elc \ - $(lisp)/ediff-merg.elc \ - $(lisp)/ediff-mult.elc \ - $(lisp)/ediff-ptch.elc \ - $(lisp)/ediff-util.elc \ - $(lisp)/ediff-vers.elc \ - $(lisp)/ediff-wind.elc \ - $(lisp)/ediff.elc \ - $(lisp)/edmacro.elc \ - $(lisp)/ehelp.elc \ - $(lisp)/electric.elc \ - $(lisp)/elide-head.elc \ - $(lisp)/emacs-lisp/advice.elc \ - $(lisp)/emacs-lisp/assoc.elc \ - $(lisp)/emacs-lisp/authors.elc \ - $(lisp)/emacs-lisp/autoload.elc \ - $(lisp)/emacs-lisp/avl-tree.elc \ - $(lisp)/emacs-lisp/backquote.elc \ - $(lisp)/emacs-lisp/benchmark.elc \ - $(lisp)/emacs-lisp/bindat.elc \ - $(lisp)/emacs-lisp/byte-opt.elc \ - $(lisp)/emacs-lisp/byte-run.elc \ - $(lisp)/emacs-lisp/bytecomp.elc \ - $(lisp)/emacs-lisp/check-declare.elc \ - $(lisp)/emacs-lisp/checkdoc.elc \ - $(lisp)/emacs-lisp/cl-compat.elc \ - $(lisp)/emacs-lisp/cl-extra.elc \ - $(lisp)/emacs-lisp/cl-indent.elc \ - $(lisp)/emacs-lisp/cl-macs.elc \ - $(lisp)/emacs-lisp/cl-seq.elc \ - $(lisp)/emacs-lisp/cl.elc \ - $(lisp)/emacs-lisp/copyright.elc \ - $(lisp)/emacs-lisp/crm.elc \ - $(lisp)/emacs-lisp/cust-print.elc \ - $(lisp)/emacs-lisp/debug.elc \ - $(lisp)/emacs-lisp/derived.elc \ - $(lisp)/emacs-lisp/disass.elc \ - $(lisp)/emacs-lisp/easy-mmode.elc \ - $(lisp)/emacs-lisp/easymenu.elc \ - $(lisp)/emacs-lisp/edebug.elc \ - $(lisp)/emacs-lisp/eldoc.elc \ - $(lisp)/emacs-lisp/elint.elc \ - $(lisp)/emacs-lisp/elp.elc \ - $(lisp)/emacs-lisp/ewoc.elc \ - $(lisp)/emacs-lisp/find-func.elc \ - $(lisp)/emacs-lisp/find-gc.elc \ - $(lisp)/emacs-lisp/float-sup.elc \ - $(lisp)/emacs-lisp/generic.elc \ - $(lisp)/emacs-lisp/gulp.elc \ - $(lisp)/emacs-lisp/helper.elc \ - $(lisp)/emacs-lisp/levents.elc \ - $(lisp)/emacs-lisp/lisp-mnt.elc \ - $(lisp)/emacs-lisp/lisp-mode.elc \ - $(lisp)/emacs-lisp/lisp.elc \ - $(lisp)/emacs-lisp/lmenu.elc \ - $(lisp)/emacs-lisp/lucid.elc \ - $(lisp)/emacs-lisp/macroexp.elc \ - $(lisp)/emacs-lisp/map-ynp.elc \ - $(lisp)/emacs-lisp/pp.elc \ - $(lisp)/emacs-lisp/re-builder.elc \ - $(lisp)/emacs-lisp/regexp-opt.elc \ - $(lisp)/emacs-lisp/regi.elc \ - $(lisp)/emacs-lisp/ring.elc \ - $(lisp)/emacs-lisp/rx.elc \ - $(lisp)/emacs-lisp/shadow.elc \ - $(lisp)/emacs-lisp/sregex.elc \ - $(lisp)/emacs-lisp/syntax.elc \ - $(lisp)/emacs-lisp/tcover-ses.elc \ - $(lisp)/emacs-lisp/tcover-unsafep.elc \ - $(lisp)/emacs-lisp/testcover.elc \ - $(lisp)/emacs-lisp/timer.elc \ - $(lisp)/emacs-lisp/tq.elc \ - $(lisp)/emacs-lisp/trace.elc \ - $(lisp)/emacs-lisp/unsafep.elc \ - $(lisp)/emacs-lisp/warnings.elc \ - $(lisp)/emacs-lock.elc \ - $(lisp)/emerge.elc \ - $(lisp)/emulation/crisp.elc \ - $(lisp)/emulation/cua-base.elc \ - $(lisp)/emulation/cua-gmrk.elc \ - $(lisp)/emulation/cua-rect.elc \ - $(lisp)/emulation/edt-lk201.elc \ - $(lisp)/emulation/edt-mapper.elc \ - $(lisp)/emulation/edt-pc.elc \ - $(lisp)/emulation/edt-vt100.elc \ - $(lisp)/emulation/edt.elc \ - $(lisp)/emulation/keypad.elc \ - $(lisp)/emulation/pc-mode.elc \ - $(lisp)/emulation/pc-select.elc \ - $(lisp)/emulation/tpu-edt.elc \ - $(lisp)/emulation/tpu-extras.elc \ - $(lisp)/emulation/tpu-mapper.elc \ - $(lisp)/emulation/vi.elc \ - $(lisp)/emulation/vip.elc \ - $(lisp)/emulation/viper-cmd.elc \ - $(lisp)/emulation/viper-ex.elc \ - $(lisp)/emulation/viper-init.elc \ - $(lisp)/emulation/viper-keym.elc \ - $(lisp)/emulation/viper-macs.elc \ - $(lisp)/emulation/viper-mous.elc \ - $(lisp)/emulation/viper-util.elc \ - $(lisp)/emulation/viper.elc \ - $(lisp)/emulation/ws-mode.elc \ - $(lisp)/env.elc \ - $(lisp)/epa-dired.elc \ - $(lisp)/epa-file.elc \ - $(lisp)/epa-hook.elc \ - $(lisp)/epa-mail.elc \ - $(lisp)/epa.elc \ - $(lisp)/epg-config.elc \ - $(lisp)/epg.elc \ - $(lisp)/erc/erc-autoaway.elc \ - $(lisp)/erc/erc-backend.elc \ - $(lisp)/erc/erc-button.elc \ - $(lisp)/erc/erc-capab.elc \ - $(lisp)/erc/erc-compat.elc \ - $(lisp)/erc/erc-dcc.elc \ - $(lisp)/erc/erc-ezbounce.elc \ - $(lisp)/erc/erc-fill.elc \ - $(lisp)/erc/erc-goodies.elc \ - $(lisp)/erc/erc-hecomplete.elc \ - $(lisp)/erc/erc-ibuffer.elc \ - $(lisp)/erc/erc-identd.elc \ - $(lisp)/erc/erc-imenu.elc \ - $(lisp)/erc/erc-join.elc \ - $(lisp)/erc/erc-lang.elc \ - $(lisp)/erc/erc-list.elc \ - $(lisp)/erc/erc-log.elc \ - $(lisp)/erc/erc-match.elc \ - $(lisp)/erc/erc-menu.elc \ - $(lisp)/erc/erc-netsplit.elc \ - $(lisp)/erc/erc-networks.elc \ - $(lisp)/erc/erc-notify.elc \ - $(lisp)/erc/erc-page.elc \ - $(lisp)/erc/erc-pcomplete.elc \ - $(lisp)/erc/erc-replace.elc \ - $(lisp)/erc/erc-ring.elc \ - $(lisp)/erc/erc-services.elc \ - $(lisp)/erc/erc-sound.elc \ - $(lisp)/erc/erc-speedbar.elc \ - $(lisp)/erc/erc-spelling.elc \ - $(lisp)/erc/erc-stamp.elc \ - $(lisp)/erc/erc-track.elc \ - $(lisp)/erc/erc-truncate.elc \ - $(lisp)/erc/erc-xdcc.elc \ - $(lisp)/erc/erc.elc \ - $(lisp)/eshell/em-alias.elc \ - $(lisp)/eshell/em-banner.elc \ - $(lisp)/eshell/em-basic.elc \ - $(lisp)/eshell/em-cmpl.elc \ - $(lisp)/eshell/em-dirs.elc \ - $(lisp)/eshell/em-glob.elc \ - $(lisp)/eshell/em-hist.elc \ - $(lisp)/eshell/em-ls.elc \ - $(lisp)/eshell/em-pred.elc \ - $(lisp)/eshell/em-prompt.elc \ - $(lisp)/eshell/em-rebind.elc \ - $(lisp)/eshell/em-script.elc \ - $(lisp)/eshell/em-smart.elc \ - $(lisp)/eshell/em-term.elc \ - $(lisp)/eshell/em-unix.elc \ - $(lisp)/eshell/em-xtra.elc \ - $(lisp)/eshell/esh-arg.elc \ - $(lisp)/eshell/esh-cmd.elc \ - $(lisp)/eshell/esh-ext.elc \ - $(lisp)/eshell/esh-io.elc \ - $(lisp)/eshell/esh-mode.elc \ - $(lisp)/eshell/esh-module.elc \ - $(lisp)/eshell/esh-opt.elc \ - $(lisp)/eshell/esh-proc.elc \ - $(lisp)/eshell/esh-test.elc \ - $(lisp)/eshell/esh-util.elc \ - $(lisp)/eshell/esh-var.elc \ - $(lisp)/eshell/eshell.elc \ - $(lisp)/expand.elc \ - $(lisp)/ezimage.elc \ - $(lisp)/face-remap.elc \ - $(lisp)/facemenu.elc \ - $(lisp)/faces.elc \ - $(lisp)/fadr.elc \ - $(lisp)/ffap.elc \ - $(lisp)/filecache.elc \ - $(lisp)/files.elc \ - $(lisp)/filesets.elc \ - $(lisp)/find-cmd.elc \ - $(lisp)/find-dired.elc \ - $(lisp)/find-file.elc \ - $(lisp)/find-lisp.elc \ - $(lisp)/finder.elc \ - $(lisp)/flow-ctrl.elc \ - $(lisp)/foldout.elc \ - $(lisp)/follow.elc \ - $(lisp)/font-core.elc \ - $(lisp)/font-lock.elc \ - $(lisp)/format-spec.elc \ - $(lisp)/format.elc \ - $(lisp)/forms.elc \ - $(lisp)/frame.elc \ - $(lisp)/fringe.elc \ - $(lisp)/generic-x.elc \ - $(lisp)/gnus/auth-source.elc \ - $(lisp)/gnus/canlock.elc \ - $(lisp)/gnus/compface.elc \ - $(lisp)/gnus/deuglify.elc \ - $(lisp)/gnus/earcon.elc \ - $(lisp)/gnus/ecomplete.elc \ - $(lisp)/gnus/flow-fill.elc \ - $(lisp)/gnus/gmm-utils.elc \ - $(lisp)/gnus/gnus-agent.elc \ - $(lisp)/gnus/gnus-art.elc \ - $(lisp)/gnus/gnus-async.elc \ - $(lisp)/gnus/gnus-audio.elc \ - $(lisp)/gnus/gnus-bcklg.elc \ - $(lisp)/gnus/gnus-bookmark.elc \ - $(lisp)/gnus/gnus-cache.elc \ - $(lisp)/gnus/gnus-cite.elc \ - $(lisp)/gnus/gnus-cus.elc \ - $(lisp)/gnus/gnus-delay.elc \ - $(lisp)/gnus/gnus-demon.elc \ - $(lisp)/gnus/gnus-diary.elc \ - $(lisp)/gnus/gnus-dired.elc \ - $(lisp)/gnus/gnus-draft.elc \ - $(lisp)/gnus/gnus-dup.elc \ - $(lisp)/gnus/gnus-eform.elc \ - $(lisp)/gnus/gnus-ems.elc \ - $(lisp)/gnus/gnus-fun.elc \ - $(lisp)/gnus/gnus-group.elc \ - $(lisp)/gnus/gnus-int.elc \ - $(lisp)/gnus/gnus-kill.elc \ - $(lisp)/gnus/gnus-logic.elc \ - $(lisp)/gnus/gnus-mh.elc \ - $(lisp)/gnus/gnus-ml.elc \ - $(lisp)/gnus/gnus-mlspl.elc \ - $(lisp)/gnus/gnus-move.elc \ - $(lisp)/gnus/gnus-msg.elc \ - $(lisp)/gnus/gnus-nocem.elc \ - $(lisp)/gnus/gnus-picon.elc \ - $(lisp)/gnus/gnus-range.elc \ - $(lisp)/gnus/gnus-registry.elc \ - $(lisp)/gnus/gnus-salt.elc \ - $(lisp)/gnus/gnus-score.elc \ - $(lisp)/gnus/gnus-setup.elc \ - $(lisp)/gnus/gnus-sieve.elc \ - $(lisp)/gnus/gnus-soup.elc \ - $(lisp)/gnus/gnus-spec.elc \ - $(lisp)/gnus/gnus-srvr.elc \ - $(lisp)/gnus/gnus-start.elc \ - $(lisp)/gnus/gnus-sum.elc \ - $(lisp)/gnus/gnus-topic.elc \ - $(lisp)/gnus/gnus-undo.elc \ - $(lisp)/gnus/gnus-util.elc \ - $(lisp)/gnus/gnus-uu.elc \ - $(lisp)/gnus/gnus-vm.elc \ - $(lisp)/gnus/gnus-win.elc \ - $(lisp)/gnus/gnus.elc \ - $(lisp)/gnus/html2text.elc \ - $(lisp)/gnus/ietf-drums.elc \ - $(lisp)/gnus/legacy-gnus-agent.elc \ - $(lisp)/gnus/mail-parse.elc \ - $(lisp)/gnus/mail-prsvr.elc \ - $(lisp)/gnus/mail-source.elc \ - $(lisp)/gnus/mailcap.elc \ - $(lisp)/gnus/message.elc \ - $(lisp)/gnus/messcompat.elc \ - $(lisp)/gnus/mm-bodies.elc \ - $(lisp)/gnus/mm-decode.elc \ - $(lisp)/gnus/mm-encode.elc \ - $(lisp)/gnus/mm-extern.elc \ - $(lisp)/gnus/mm-partial.elc \ - $(lisp)/gnus/mm-url.elc \ - $(lisp)/gnus/mm-util.elc \ - $(lisp)/gnus/mm-uu.elc \ - $(lisp)/gnus/mm-view.elc \ - $(lisp)/gnus/mml-sec.elc \ - $(lisp)/gnus/mml-smime.elc \ - $(lisp)/gnus/mml.elc \ - $(lisp)/gnus/mml1991.elc \ - $(lisp)/gnus/mml2015.elc \ - $(lisp)/gnus/nnagent.elc \ - $(lisp)/gnus/nnbabyl.elc \ - $(lisp)/gnus/nndb.elc \ - $(lisp)/gnus/nndiary.elc \ - $(lisp)/gnus/nndir.elc \ - $(lisp)/gnus/nndoc.elc \ - $(lisp)/gnus/nndraft.elc \ - $(lisp)/gnus/nneething.elc \ - $(lisp)/gnus/nnfolder.elc \ - $(lisp)/gnus/nngateway.elc \ - $(lisp)/gnus/nnheader.elc \ - $(lisp)/gnus/nnimap.elc \ - $(lisp)/gnus/nnir.elc \ - $(lisp)/gnus/nnkiboze.elc \ - $(lisp)/gnus/nnlistserv.elc \ - $(lisp)/gnus/nnmail.elc \ - $(lisp)/gnus/nnmaildir.elc \ - $(lisp)/gnus/nnmairix.elc \ - $(lisp)/gnus/nnmbox.elc \ - $(lisp)/gnus/nnmh.elc \ - $(lisp)/gnus/nnml.elc \ - $(lisp)/gnus/nnnil.elc \ - $(lisp)/gnus/nnoo.elc \ - $(lisp)/gnus/nnrss.elc \ - $(lisp)/gnus/nnslashdot.elc \ - $(lisp)/gnus/nnsoup.elc \ - $(lisp)/gnus/nnspool.elc \ - $(lisp)/gnus/nntp.elc \ - $(lisp)/gnus/nnultimate.elc \ - $(lisp)/gnus/nnvirtual.elc \ - $(lisp)/gnus/nnwarchive.elc \ - $(lisp)/gnus/nnweb.elc \ - $(lisp)/gnus/nnwfm.elc \ - $(lisp)/gnus/pop3.elc \ - $(lisp)/gnus/qp.elc \ - $(lisp)/gnus/rfc1843.elc \ - $(lisp)/gnus/rfc2045.elc \ - $(lisp)/gnus/rfc2047.elc \ - $(lisp)/gnus/rfc2104.elc \ - $(lisp)/gnus/rfc2231.elc \ - $(lisp)/gnus/score-mode.elc \ - $(lisp)/gnus/sieve-manage.elc \ - $(lisp)/gnus/sieve-mode.elc \ - $(lisp)/gnus/sieve.elc \ - $(lisp)/gnus/smiley.elc \ - $(lisp)/gnus/smime.elc \ - $(lisp)/gnus/spam-report.elc \ - $(lisp)/gnus/spam-stat.elc \ - $(lisp)/gnus/spam-wash.elc \ - $(lisp)/gnus/spam.elc \ - $(lisp)/gnus/starttls.elc \ - $(lisp)/gnus/utf7.elc \ - $(lisp)/gnus/webmail.elc \ - $(lisp)/gnus/yenc.elc \ - $(lisp)/gs.elc \ - $(lisp)/help-at-pt.elc \ - $(lisp)/help-fns.elc \ - $(lisp)/help-macro.elc \ - $(lisp)/help-mode.elc \ - $(lisp)/help.elc \ - $(lisp)/hex-util.elc \ - $(lisp)/hexl.elc \ - $(lisp)/hi-lock.elc \ - $(lisp)/hilit-chg.elc \ - $(lisp)/hippie-exp.elc \ - $(lisp)/hl-line.elc \ - $(lisp)/ibuf-ext.elc \ - $(lisp)/ibuf-macs.elc \ - $(lisp)/ibuffer.elc \ - $(lisp)/icomplete.elc \ - $(lisp)/ido.elc \ - $(lisp)/ielm.elc \ - $(lisp)/iimage.elc \ - $(lisp)/image-dired.elc \ - $(lisp)/image-file.elc \ - $(lisp)/image-mode.elc \ - $(lisp)/image.elc \ - $(lisp)/imenu.elc \ - $(lisp)/indent.elc \ - $(lisp)/info-look.elc \ - $(lisp)/info-xref.elc \ - $(lisp)/info.elc \ - $(lisp)/informat.elc \ - $(lisp)/international/ccl.elc \ - $(lisp)/international/characters.elc \ - $(lisp)/international/encoded-kb.elc \ - $(lisp)/international/fontset.elc \ - $(lisp)/international/isearch-x.elc \ - $(lisp)/international/iso-ascii.elc \ - $(lisp)/international/iso-cvt.elc \ - $(lisp)/international/iso-transl.elc \ - $(lisp)/international/ja-dic-cnv.elc \ - $(lisp)/international/ja-dic-utl.elc \ - $(lisp)/international/kinsoku.elc \ - $(lisp)/international/kkc.elc \ - $(lisp)/international/latexenc.elc \ - $(lisp)/international/latin1-disp.elc \ - $(lisp)/international/mule-cmds.elc \ - $(lisp)/international/mule-diag.elc \ - $(lisp)/international/mule-util.elc \ - $(lisp)/international/mule.elc \ - $(lisp)/international/ogonek.elc \ - $(lisp)/international/quail.elc \ - $(lisp)/international/robin.elc \ - $(lisp)/international/titdic-cnv.elc \ - $(lisp)/international/utf-7.elc \ - $(lisp)/isearch.elc \ - $(lisp)/isearchb.elc \ - $(lisp)/iswitchb.elc \ - $(lisp)/jit-lock.elc \ - $(lisp)/jka-cmpr-hook.elc \ - $(lisp)/jka-compr.elc \ - $(lisp)/json.elc \ - $(lisp)/kermit.elc \ - $(lisp)/kmacro.elc \ - $(lisp)/language/china-util.elc \ - $(lisp)/language/chinese.elc \ - $(lisp)/language/cyril-util.elc \ - $(lisp)/language/cyrillic.elc \ - $(lisp)/language/ethio-util.elc \ - $(lisp)/language/ethiopic.elc \ - $(lisp)/language/european.elc \ - $(lisp)/language/hanja-util.elc \ - $(lisp)/language/ind-util.elc \ - $(lisp)/language/indian.elc \ - $(lisp)/language/japan-util.elc \ - $(lisp)/language/korea-util.elc \ - $(lisp)/language/lao-util.elc \ - $(lisp)/language/thai-util.elc \ - $(lisp)/language/thai-word.elc \ - $(lisp)/language/tibet-util.elc \ - $(lisp)/language/tibetan.elc \ - $(lisp)/language/tv-util.elc \ - $(lisp)/language/viet-util.elc \ - $(lisp)/language/vietnamese.elc \ - $(lisp)/ledit.elc \ - $(lisp)/linum.elc \ - $(lisp)/loadhist.elc \ - $(lisp)/locate.elc \ - $(lisp)/log-edit.elc \ - $(lisp)/log-view.elc \ - $(lisp)/longlines.elc \ - $(lisp)/lpr.elc \ - $(lisp)/ls-lisp.elc \ - $(lisp)/macros.elc \ - $(lisp)/mail/binhex.elc \ - $(lisp)/mail/emacsbug.elc \ - $(lisp)/mail/feedmail.elc \ - $(lisp)/mail/footnote.elc \ - $(lisp)/mail/hashcash.elc \ - $(lisp)/mail/mail-extr.elc \ - $(lisp)/mail/mail-hist.elc \ - $(lisp)/mail/mail-utils.elc \ - $(lisp)/mail/mailabbrev.elc \ - $(lisp)/mail/mailalias.elc \ - $(lisp)/mail/mailclient.elc \ - $(lisp)/mail/mailheader.elc \ - $(lisp)/mail/mailpost.elc \ - $(lisp)/mail/metamail.elc \ - $(lisp)/mail/mspools.elc \ - $(lisp)/mail/reporter.elc \ - $(lisp)/mail/rfc2368.elc \ - $(lisp)/mail/rfc822.elc \ - $(lisp)/mail/rmail-spam-filter.elc \ - $(lisp)/mail/rmail.elc \ - $(lisp)/mail/rmailedit.elc \ - $(lisp)/mail/rmailkwd.elc \ - $(lisp)/mail/rmailmm.elc \ - $(lisp)/mail/rmailmsc.elc \ - $(lisp)/mail/rmailout.elc \ - $(lisp)/mail/rmailsort.elc \ - $(lisp)/mail/rmailsum.elc \ - $(lisp)/mail/sendmail.elc \ - $(lisp)/mail/smtpmail.elc \ - $(lisp)/mail/supercite.elc \ - $(lisp)/mail/uce.elc \ - $(lisp)/mail/undigest.elc \ - $(lisp)/mail/unrmail.elc \ - $(lisp)/mail/uudecode.elc \ - $(lisp)/makesum.elc \ - $(lisp)/man.elc \ - $(lisp)/master.elc \ - $(lisp)/mb-depth.elc \ - $(lisp)/md4.elc \ - $(lisp)/menu-bar.elc \ - $(lisp)/mh-e/mh-alias.elc \ - $(lisp)/mh-e/mh-buffers.elc \ - $(lisp)/mh-e/mh-comp.elc \ - $(lisp)/mh-e/mh-e.elc \ - $(lisp)/mh-e/mh-folder.elc \ - $(lisp)/mh-e/mh-funcs.elc \ - $(lisp)/mh-e/mh-identity.elc \ - $(lisp)/mh-e/mh-inc.elc \ - $(lisp)/mh-e/mh-junk.elc \ - $(lisp)/mh-e/mh-letter.elc \ - $(lisp)/mh-e/mh-limit.elc \ - $(lisp)/mh-e/mh-mime.elc \ - $(lisp)/mh-e/mh-print.elc \ - $(lisp)/mh-e/mh-scan.elc \ - $(lisp)/mh-e/mh-search.elc \ - $(lisp)/mh-e/mh-seq.elc \ - $(lisp)/mh-e/mh-show.elc \ - $(lisp)/mh-e/mh-speed.elc \ - $(lisp)/mh-e/mh-thread.elc \ - $(lisp)/mh-e/mh-tool-bar.elc \ - $(lisp)/mh-e/mh-utils.elc \ - $(lisp)/mh-e/mh-xface.elc \ - $(lisp)/midnight.elc \ - $(lisp)/minibuf-eldef.elc \ - $(lisp)/minibuffer.elc \ - $(lisp)/misc.elc \ - $(lisp)/misearch.elc \ - $(lisp)/mouse-copy.elc \ - $(lisp)/mouse-drag.elc \ - $(lisp)/mouse-sel.elc \ - $(lisp)/mouse.elc \ - $(lisp)/msb.elc \ - $(lisp)/mwheel.elc \ - $(lisp)/net/ange-ftp.elc \ - $(lisp)/net/browse-url.elc \ - $(lisp)/net/dbus.elc \ - $(lisp)/net/dig.elc \ - $(lisp)/net/dns.elc \ - $(lisp)/net/eudc-bob.elc \ - $(lisp)/net/eudc-export.elc \ - $(lisp)/net/eudc-hotlist.elc \ - $(lisp)/net/eudc-vars.elc \ - $(lisp)/net/eudc.elc \ - $(lisp)/net/eudcb-bbdb.elc \ - $(lisp)/net/eudcb-ldap.elc \ - $(lisp)/net/eudcb-mab.elc \ - $(lisp)/net/eudcb-ph.elc \ - $(lisp)/net/goto-addr.elc \ - $(lisp)/net/hmac-def.elc \ - $(lisp)/net/hmac-md5.elc \ - $(lisp)/net/imap.elc \ - $(lisp)/net/ldap.elc \ - $(lisp)/net/mairix.elc \ - $(lisp)/net/net-utils.elc \ - $(lisp)/net/netrc.elc \ - $(lisp)/net/newst-backend.elc \ - $(lisp)/net/newst-plainview.elc \ - $(lisp)/net/newst-reader.elc \ - $(lisp)/net/newst-ticker.elc \ - $(lisp)/net/newst-treeview.elc \ - $(lisp)/net/newsticker.elc \ - $(lisp)/net/ntlm.elc \ - $(lisp)/net/quickurl.elc \ - $(lisp)/net/rcirc.elc \ - $(lisp)/net/rcompile.elc \ - $(lisp)/net/rlogin.elc \ - $(lisp)/net/sasl-cram.elc \ - $(lisp)/net/sasl-digest.elc \ - $(lisp)/net/sasl-ntlm.elc \ - $(lisp)/net/sasl.elc \ - $(lisp)/net/snmp-mode.elc \ - $(lisp)/net/socks.elc \ - $(lisp)/net/telnet.elc \ - $(lisp)/net/tls.elc \ - $(lisp)/net/tramp-cache.elc \ - $(lisp)/net/tramp-cmds.elc \ - $(lisp)/net/tramp-compat.elc \ - $(lisp)/net/tramp-fish.elc \ - $(lisp)/net/tramp-ftp.elc \ - $(lisp)/net/tramp-gw.elc \ - $(lisp)/net/tramp-smb.elc \ - $(lisp)/net/tramp-uu.elc \ - $(lisp)/net/tramp.elc \ - $(lisp)/net/trampver.elc \ - $(lisp)/net/webjump.elc \ - $(lisp)/net/xesam.elc \ - $(lisp)/net/zeroconf.elc \ - $(lisp)/newcomment.elc \ - $(lisp)/novice.elc \ - $(lisp)/nxml/nxml-enc.elc \ - $(lisp)/nxml/nxml-glyph.elc \ - $(lisp)/nxml/nxml-maint.elc \ - $(lisp)/nxml/nxml-mode.elc \ - $(lisp)/nxml/nxml-ns.elc \ - $(lisp)/nxml/nxml-outln.elc \ - $(lisp)/nxml/nxml-parse.elc \ - $(lisp)/nxml/nxml-rap.elc \ - $(lisp)/nxml/nxml-uchnm.elc \ - $(lisp)/nxml/nxml-util.elc \ - $(lisp)/nxml/rng-cmpct.elc \ - $(lisp)/nxml/rng-dt.elc \ - $(lisp)/nxml/rng-loc.elc \ - $(lisp)/nxml/rng-maint.elc \ - $(lisp)/nxml/rng-match.elc \ - $(lisp)/nxml/rng-nxml.elc \ - $(lisp)/nxml/rng-parse.elc \ - $(lisp)/nxml/rng-pttrn.elc \ - $(lisp)/nxml/rng-uri.elc \ - $(lisp)/nxml/rng-util.elc \ - $(lisp)/nxml/rng-valid.elc \ - $(lisp)/nxml/rng-xsd.elc \ - $(lisp)/nxml/xmltok.elc \ - $(lisp)/nxml/xsd-regexp.elc \ - $(lisp)/obsolete/awk-mode.elc \ - $(lisp)/obsolete/fast-lock.elc \ - $(lisp)/obsolete/iso-acc.elc \ - $(lisp)/obsolete/iso-insert.elc \ - $(lisp)/obsolete/iso-swed.elc \ - $(lisp)/obsolete/lazy-lock.elc \ - $(lisp)/obsolete/old-whitespace.elc \ - $(lisp)/obsolete/options.elc \ - $(lisp)/obsolete/resume.elc \ - $(lisp)/obsolete/rnews.elc \ - $(lisp)/obsolete/rnewspost.elc \ - $(lisp)/obsolete/sc.elc \ - $(lisp)/obsolete/scribe.elc \ - $(lisp)/obsolete/swedish.elc \ - $(lisp)/obsolete/vc-mcvs.elc \ - $(lisp)/obsolete/x-menu.elc \ - $(lisp)/org/org-agenda.elc \ - $(lisp)/org/org-archive.elc \ - $(lisp)/org/org-attach.elc \ - $(lisp)/org/org-bbdb.elc \ - $(lisp)/org/org-bibtex.elc \ - $(lisp)/org/org-clock.elc \ - $(lisp)/org/org-colview.elc \ - $(lisp)/org/org-compat.elc \ - $(lisp)/org/org-exp.elc \ - $(lisp)/org/org-export-latex.elc \ - $(lisp)/org/org-faces.elc \ - $(lisp)/org/org-footnote.elc \ - $(lisp)/org/org-gnus.elc \ - $(lisp)/org/org-id.elc \ - $(lisp)/org/org-info.elc \ - $(lisp)/org/org-install.elc \ - $(lisp)/org/org-irc.elc \ - $(lisp)/org/org-jsinfo.elc \ - $(lisp)/org/org-list.elc \ - $(lisp)/org/org-mac-message.elc \ - $(lisp)/org/org-macs.elc \ - $(lisp)/org/org-mew.elc \ - $(lisp)/org/org-mhe.elc \ - $(lisp)/org/org-mouse.elc \ - $(lisp)/org/org-plot.elc \ - $(lisp)/org/org-publish.elc \ - $(lisp)/org/org-remember.elc \ - $(lisp)/org/org-rmail.elc \ - $(lisp)/org/org-table.elc \ - $(lisp)/org/org-timer.elc \ - $(lisp)/org/org-vm.elc \ - $(lisp)/org/org-w3m.elc \ - $(lisp)/org/org-wl.elc \ - $(lisp)/org/org.elc \ - $(lisp)/outline.elc \ - $(lisp)/paren.elc \ - $(lisp)/password-cache.elc \ - $(lisp)/pcmpl-cvs.elc \ - $(lisp)/pcmpl-gnu.elc \ - $(lisp)/pcmpl-linux.elc \ - $(lisp)/pcmpl-rpm.elc \ - $(lisp)/pcmpl-unix.elc \ - $(lisp)/pcomplete.elc \ - $(lisp)/pcvs-defs.elc \ - $(lisp)/pcvs-info.elc \ - $(lisp)/pcvs-parse.elc \ - $(lisp)/pcvs-util.elc \ - $(lisp)/pcvs.elc \ - $(lisp)/pgg-def.elc \ - $(lisp)/pgg-gpg.elc \ - $(lisp)/pgg-parse.elc \ - $(lisp)/pgg-pgp.elc \ - $(lisp)/pgg-pgp5.elc \ - $(lisp)/pgg.elc \ - $(lisp)/play/5x5.elc \ - $(lisp)/play/animate.elc \ - $(lisp)/play/blackbox.elc \ - $(lisp)/play/bubbles.elc \ - $(lisp)/play/cookie1.elc \ - $(lisp)/play/decipher.elc \ - $(lisp)/play/dissociate.elc \ - $(lisp)/play/doctor.elc \ - $(lisp)/play/dunnet.elc \ - $(lisp)/play/fortune.elc \ - $(lisp)/play/gamegrid.elc \ - $(lisp)/play/gametree.elc \ - $(lisp)/play/gomoku.elc \ - $(lisp)/play/handwrite.elc \ - $(lisp)/play/hanoi.elc \ - $(lisp)/play/landmark.elc \ - $(lisp)/play/life.elc \ - $(lisp)/play/meese.elc \ - $(lisp)/play/morse.elc \ - $(lisp)/play/mpuz.elc \ - $(lisp)/play/pong.elc \ - $(lisp)/play/snake.elc \ - $(lisp)/play/solitaire.elc \ - $(lisp)/play/spook.elc \ - $(lisp)/play/studly.elc \ - $(lisp)/play/tetris.elc \ - $(lisp)/play/yow.elc \ - $(lisp)/play/zone.elc \ - $(lisp)/printing.elc \ - $(lisp)/proced.elc \ - $(lisp)/progmodes/ada-mode.elc \ - $(lisp)/progmodes/ada-prj.elc \ - $(lisp)/progmodes/ada-stmt.elc \ - $(lisp)/progmodes/ada-xref.elc \ - $(lisp)/progmodes/antlr-mode.elc \ - $(lisp)/progmodes/asm-mode.elc \ - $(lisp)/progmodes/autoconf.elc \ - $(lisp)/progmodes/bug-reference.elc \ - $(lisp)/progmodes/cap-words.elc \ - $(lisp)/progmodes/cc-align.elc \ - $(lisp)/progmodes/cc-awk.elc \ - $(lisp)/progmodes/cc-bytecomp.elc \ - $(lisp)/progmodes/cc-cmds.elc \ - $(lisp)/progmodes/cc-compat.elc \ - $(lisp)/progmodes/cc-defs.elc \ - $(lisp)/progmodes/cc-engine.elc \ - $(lisp)/progmodes/cc-fonts.elc \ - $(lisp)/progmodes/cc-langs.elc \ - $(lisp)/progmodes/cc-menus.elc \ - $(lisp)/progmodes/cc-mode.elc \ - $(lisp)/progmodes/cc-styles.elc \ - $(lisp)/progmodes/cc-subword.elc \ - $(lisp)/progmodes/cc-vars.elc \ - $(lisp)/progmodes/cfengine.elc \ - $(lisp)/progmodes/cmacexp.elc \ - $(lisp)/progmodes/compile.elc \ - $(lisp)/progmodes/cperl-mode.elc \ - $(lisp)/progmodes/cpp.elc \ - $(lisp)/progmodes/cwarn.elc \ - $(lisp)/progmodes/dcl-mode.elc \ - $(lisp)/progmodes/delphi.elc \ - $(lisp)/progmodes/ebnf-abn.elc \ - $(lisp)/progmodes/ebnf-bnf.elc \ - $(lisp)/progmodes/ebnf-dtd.elc \ - $(lisp)/progmodes/ebnf-ebx.elc \ - $(lisp)/progmodes/ebnf-iso.elc \ - $(lisp)/progmodes/ebnf-otz.elc \ - $(lisp)/progmodes/ebnf-yac.elc \ - $(lisp)/progmodes/ebnf2ps.elc \ - $(lisp)/progmodes/ebrowse.elc \ - $(lisp)/progmodes/etags.elc \ - $(lisp)/progmodes/executable.elc \ - $(lisp)/progmodes/f90.elc \ - $(lisp)/progmodes/flymake.elc \ - $(lisp)/progmodes/fortran.elc \ - $(lisp)/progmodes/gdb-mi.elc \ - $(lisp)/progmodes/glasses.elc \ - $(lisp)/progmodes/grep.elc \ - $(lisp)/progmodes/gud.elc \ - $(lisp)/progmodes/hideif.elc \ - $(lisp)/progmodes/hideshow.elc \ - $(lisp)/progmodes/icon.elc \ - $(lisp)/progmodes/idlw-complete-structtag.elc \ - $(lisp)/progmodes/idlw-help.elc \ - $(lisp)/progmodes/idlw-shell.elc \ - $(lisp)/progmodes/idlw-toolbar.elc \ - $(lisp)/progmodes/idlwave.elc \ - $(lisp)/progmodes/inf-lisp.elc \ - $(lisp)/progmodes/ld-script.elc \ - $(lisp)/progmodes/m4-mode.elc \ - $(lisp)/progmodes/make-mode.elc \ - $(lisp)/progmodes/mantemp.elc \ - $(lisp)/progmodes/meta-mode.elc \ - $(lisp)/progmodes/mixal-mode.elc \ - $(lisp)/progmodes/modula2.elc \ - $(lisp)/progmodes/octave-inf.elc \ - $(lisp)/progmodes/octave-mod.elc \ - $(lisp)/progmodes/pascal.elc \ - $(lisp)/progmodes/perl-mode.elc \ - $(lisp)/progmodes/prolog.elc \ - $(lisp)/progmodes/ps-mode.elc \ - $(lisp)/progmodes/python.elc \ - $(lisp)/progmodes/ruby-mode.elc \ - $(lisp)/progmodes/scheme.elc \ - $(lisp)/progmodes/sh-script.elc \ - $(lisp)/progmodes/simula.elc \ - $(lisp)/progmodes/sql.elc \ - $(lisp)/progmodes/sym-comp.elc \ - $(lisp)/progmodes/tcl.elc \ - $(lisp)/progmodes/vera-mode.elc \ - $(lisp)/progmodes/verilog-mode.elc \ - $(lisp)/progmodes/vhdl-mode.elc \ - $(lisp)/progmodes/which-func.elc \ - $(lisp)/progmodes/xscheme.elc \ - $(lisp)/ps-bdf.elc \ - $(lisp)/ps-def.elc \ - $(lisp)/ps-mule.elc \ - $(lisp)/ps-print.elc \ - $(lisp)/ps-samp.elc \ - $(lisp)/recentf.elc \ - $(lisp)/rect.elc \ - $(lisp)/register.elc \ - $(lisp)/repeat.elc \ - $(lisp)/replace.elc \ - $(lisp)/reposition.elc \ - $(lisp)/reveal.elc \ - $(lisp)/rfn-eshadow.elc \ - $(lisp)/rot13.elc \ - $(lisp)/ruler-mode.elc \ - $(lisp)/s-region.elc \ - $(lisp)/savehist.elc \ - $(lisp)/saveplace.elc \ - $(lisp)/sb-image.elc \ - $(lisp)/scroll-all.elc \ - $(lisp)/scroll-bar.elc \ - $(lisp)/scroll-lock.elc \ - $(lisp)/select.elc \ - $(lisp)/server.elc \ - $(lisp)/ses.elc \ - $(lisp)/sha1.elc \ - $(lisp)/shadowfile.elc \ - $(lisp)/shell.elc \ - $(lisp)/simple.elc \ - $(lisp)/skeleton.elc \ - $(lisp)/smerge-mode.elc \ - $(lisp)/sort.elc \ - $(lisp)/soundex.elc \ - $(lisp)/speedbar.elc \ - $(lisp)/startup.elc \ - $(lisp)/strokes.elc \ - $(lisp)/subr.elc \ - $(lisp)/t-mouse.elc \ - $(lisp)/tabify.elc \ - $(lisp)/talk.elc \ - $(lisp)/tar-mode.elc \ - $(lisp)/tempo.elc \ - $(lisp)/term.elc \ - $(lisp)/term/common-win.elc \ - $(lisp)/term/internal.elc \ - $(lisp)/term/ns-win.elc \ - $(lisp)/term/pc-win.elc \ - $(lisp)/term/rxvt.elc \ - $(lisp)/term/sun.elc \ - $(lisp)/term/sup-mouse.elc \ - $(lisp)/term/tty-colors.elc \ - $(lisp)/term/tvi970.elc \ - $(lisp)/term/vt100.elc \ - $(lisp)/term/w32-win.elc \ - $(lisp)/term/w32console.elc \ - $(lisp)/term/x-win.elc \ - $(lisp)/term/xterm.elc \ - $(lisp)/terminal.elc \ - $(lisp)/textmodes/artist.elc \ - $(lisp)/textmodes/bib-mode.elc \ - $(lisp)/textmodes/bibtex-style.elc \ - $(lisp)/textmodes/bibtex.elc \ - $(lisp)/textmodes/conf-mode.elc \ - $(lisp)/textmodes/css-mode.elc \ - $(lisp)/textmodes/dns-mode.elc \ - $(lisp)/textmodes/enriched.elc \ - $(lisp)/textmodes/fill.elc \ - $(lisp)/textmodes/flyspell.elc \ - $(lisp)/textmodes/ispell.elc \ - $(lisp)/textmodes/makeinfo.elc \ - $(lisp)/textmodes/nroff-mode.elc \ - $(lisp)/textmodes/page-ext.elc \ - $(lisp)/textmodes/page.elc \ - $(lisp)/textmodes/paragraphs.elc \ - $(lisp)/textmodes/picture.elc \ - $(lisp)/textmodes/po.elc \ - $(lisp)/textmodes/refbib.elc \ - $(lisp)/textmodes/refer.elc \ - $(lisp)/textmodes/refill.elc \ - $(lisp)/textmodes/reftex-auc.elc \ - $(lisp)/textmodes/reftex-cite.elc \ - $(lisp)/textmodes/reftex-dcr.elc \ - $(lisp)/textmodes/reftex-global.elc \ - $(lisp)/textmodes/reftex-index.elc \ - $(lisp)/textmodes/reftex-parse.elc \ - $(lisp)/textmodes/reftex-ref.elc \ - $(lisp)/textmodes/reftex-sel.elc \ - $(lisp)/textmodes/reftex-toc.elc \ - $(lisp)/textmodes/reftex-vars.elc \ - $(lisp)/textmodes/reftex.elc \ - $(lisp)/textmodes/remember.elc \ - $(lisp)/textmodes/rst.elc \ - $(lisp)/textmodes/sgml-mode.elc \ - $(lisp)/textmodes/spell.elc \ - $(lisp)/textmodes/table.elc \ - $(lisp)/textmodes/tex-mode.elc \ - $(lisp)/textmodes/texinfmt.elc \ - $(lisp)/textmodes/texinfo.elc \ - $(lisp)/textmodes/texnfo-upd.elc \ - $(lisp)/textmodes/text-mode.elc \ - $(lisp)/textmodes/tildify.elc \ - $(lisp)/textmodes/two-column.elc \ - $(lisp)/textmodes/underline.elc \ - $(lisp)/thingatpt.elc \ - $(lisp)/thumbs.elc \ - $(lisp)/time-stamp.elc \ - $(lisp)/time.elc \ - $(lisp)/timezone.elc \ - $(lisp)/tmm.elc \ - $(lisp)/tool-bar.elc \ - $(lisp)/tooltip.elc \ - $(lisp)/tree-widget.elc \ - $(lisp)/tutorial.elc \ - $(lisp)/type-break.elc \ - $(lisp)/uniquify.elc \ - $(lisp)/url/url-about.elc \ - $(lisp)/url/url-auth.elc \ - $(lisp)/url/url-cache.elc \ - $(lisp)/url/url-cid.elc \ - $(lisp)/url/url-cookie.elc \ - $(lisp)/url/url-dav.elc \ - $(lisp)/url/url-dired.elc \ - $(lisp)/url/url-expand.elc \ - $(lisp)/url/url-file.elc \ - $(lisp)/url/url-ftp.elc \ - $(lisp)/url/url-gw.elc \ - $(lisp)/url/url-handlers.elc \ - $(lisp)/url/url-history.elc \ - $(lisp)/url/url-http.elc \ - $(lisp)/url/url-imap.elc \ - $(lisp)/url/url-irc.elc \ - $(lisp)/url/url-ldap.elc \ - $(lisp)/url/url-mailto.elc \ - $(lisp)/url/url-methods.elc \ - $(lisp)/url/url-misc.elc \ - $(lisp)/url/url-news.elc \ - $(lisp)/url/url-nfs.elc \ - $(lisp)/url/url-ns.elc \ - $(lisp)/url/url-parse.elc \ - $(lisp)/url/url-privacy.elc \ - $(lisp)/url/url-proxy.elc \ - $(lisp)/url/url-util.elc \ - $(lisp)/url/url-vars.elc \ - $(lisp)/url/url.elc \ - $(lisp)/userlock.elc \ - $(lisp)/vc-annotate.elc \ - $(lisp)/vc-arch.elc \ - $(lisp)/vc-bzr.elc \ - $(lisp)/vc-cvs.elc \ - $(lisp)/vc-dav.elc \ - $(lisp)/vc-dir.elc \ - $(lisp)/vc-dispatcher.elc \ - $(lisp)/vc-git.elc \ - $(lisp)/vc-hg.elc \ - $(lisp)/vc-hooks.elc \ - $(lisp)/vc-mtn.elc \ - $(lisp)/vc-rcs.elc \ - $(lisp)/vc-sccs.elc \ - $(lisp)/vc-svn.elc \ - $(lisp)/vc.elc \ - $(lisp)/vcursor.elc \ - $(lisp)/view.elc \ - $(lisp)/vt-control.elc \ - $(lisp)/vt100-led.elc \ - $(lisp)/w32-fns.elc \ - $(lisp)/w32-vars.elc \ - $(lisp)/wdired.elc \ - $(lisp)/whitespace.elc \ - $(lisp)/wid-browse.elc \ - $(lisp)/wid-edit.elc \ - $(lisp)/widget.elc \ - $(lisp)/windmove.elc \ - $(lisp)/window.elc \ - $(lisp)/winner.elc \ - $(lisp)/woman.elc \ - $(lisp)/x-dnd.elc \ - $(lisp)/xml.elc \ - $(lisp)/xt-mouse.elc - # The src/Makefile.in has its own set of dependencies and when they decide # that one Lisp file needs to be re-compiled, we had better recompile it as # well, otherwise every subsequent make will again call us, until we finally @@ -1266,9 +196,15 @@ ELCFILES = \ # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we # only know of $(lisp)/foo.elc). So instead we provide a direct way for # src/Makefile.in to rebuild a particular Lisp file, no questions asked. +# Use byte-compile-refresh-preloaded to try and work around some of +# the most common problems of not bootstrapping from a clean state. compile-onefile: @echo Compiling $(THEFILE) - @$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) + @# Use byte-compile-refresh-preloaded to try and work around some of + @# the most common bootstrapping problems. + @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded \ + $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS) \ + -f batch-byte-compile $(THEFILE) # Files MUST be compiled one by one. If we compile several files in a # row (i.e., in the same instance of Emacs) we can't make sure that @@ -1281,17 +217,54 @@ compile-onefile: # An old-fashioned suffix rule, which, according to the GNU Make manual, # cannot have prerequisites. -# Note that if a .el file is removed from the repository without -# updating ELCFILES, make will abort. .el.elc: @echo Compiling $< - @$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $< + @$(emacs) $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS) \ + -f batch-byte-compile $< -.PHONY: compile-first compile-main compile-last compile compile-always +.PHONY: compile-first compile-main compile compile-always compile-first: $(COMPILE_FIRST) -compile-main: $(ELCFILES) +# In `compile-main' we could directly do +# ... | xargs $(MAKE) $(MFLAGS) EMACS="$(EMACS)" +# and it works, but it generates a lot of messages like +# make[2]: « gnus/gnus-mlspl.elc » is up to date. +# so instead, we use "xargs echo" to split the list of file into manageable +# chunks and then use an intermediate `compile-targets' target so the +# actual targets (the .elc files) are not mentioned as targets on the +# make command line. + + +.PHONY: compile-targets +# TARGETS is set dynamically in the recursive call from `compile-main'. +compile-targets: $(TARGETS) + +# Compile all the Elisp files that need it. Beware: it approximates +# `no-byte-compile', so watch out for false-positives! +compile-main: compile-clean + @(cd $(lisp); $(setwins); \ + els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \ + for el in $$els; do \ + test -f $$el || continue; \ + test ! -f $${el}c && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el > /dev/null && continue; \ + echo "$${el}c"; \ + done | xargs echo) | \ + while read chunk; do \ + $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \ + done + +.PHONY: compile-clean +# Erase left-over .elc files that do not have a corresponding .el file. +compile-clean: + @cd $(lisp); $(setwins); \ + elcs=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \ + for el in $$(echo $$elcs | sed -e 's/\.elc/\.el/g'); do \ + if test -f "$$el" -o \! -f "$${el}c"; then :; else \ + echo rm "$${el}c"; \ + rm "$${el}c"; \ + fi \ + done # Compile all Lisp files, but don't recompile those that are up to # date. Some .el files don't get compiled because they set the @@ -1301,34 +274,14 @@ compile-main: $(ELCFILES) # sub-makes that run rules that use it, for the sake of some non-GNU makes. compile: $(LOADDEFS) autoloads compile-first $(MAKE) $(MFLAGS) compile-main EMACS=$(EMACS) - $(MAKE) $(MFLAGS) compile-last EMACS=$(EMACS) - -## Doing this causes make install to dump another emacs. -# $(MAKE) $(MFLAGS) update-elclist # Compile all Lisp files. This is like `compile' but compiles files # unconditionally. Some files don't actually get compiled because they # set the local variable no-byte-compile. compile-always: doit - cd $(lisp); rm -f *.elc */*.elc + cd $(lisp); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc $(MAKE) $(MFLAGS) compile EMACS=$(EMACS) -## In case any files are missing from ELCFILES. -## Why is the UnicodeData check needed, when these files are no-byte-compile? -compile-last: - @wd=$(lisp); $(setwins); \ - els=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \ - for el in $$els; do \ - test -f $$el || continue; \ - test -f $${el}c && continue; \ - grep 'no-byte-compile: t' $$el > /dev/null && continue; \ - head -n 1 $$el | grep '^;; Automatically generated from UnicodeData.txt.' > /dev/null && continue; \ - sel=`echo $$el | sed "s|^$(lisp)|\\$$(lisp)|"`; \ - echo "Maintainer warning: $$sel missing from \$$ELCFILES?"; \ - echo "Compiling $$el"; \ - $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \ - done - compile-calc: for el in $(lisp)/calc/*.el; do \ echo Compiling $$el; \ @@ -1340,7 +293,7 @@ compile-calc: backup-compiled-files: -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ - -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc + -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc $(lisp)/*/*/*.elc $(lisp)/*/*/*/*.elc # Compile Lisp files, but save old compiled files first. @@ -1348,8 +301,7 @@ compile-after-backup: backup-compiled-files compile-always # Recompile all Lisp files which are newer than their .elc files and compile # new ones. -# This has the same effect as compile-main (followed up with compile-last, -# if ELCFILES is out of date). recompile has some advantages: +# This has the same effect as compile-main. recompile has some advantages: # i) It is faster (on a single processor), since it only has to start # Emacs once. It was 33% faster on a test with a random 10% of the .el # files needing recompilation. @@ -1438,7 +390,7 @@ $(CAL_DIR)/hol-loaddefs.el: $(CAL_SRC) # file, we don't want to store it in the source repository). bootstrap-clean: - cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) + cd $(lisp); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc $(AUTOGENEL) distclean: -rm -f ./Makefile @@ -1461,7 +413,7 @@ $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-awk.elc\ $(lisp)/progmodes/cc-engine.elc $(lisp)/progmodes/cc-fonts.elc\ $(lisp)/progmodes/cc-langs.elc $(lisp)/progmodes/cc-menus.elc\ $(lisp)/progmodes/cc-mode.elc $(lisp)/progmodes/cc-styles.elc\ - $(lisp)/progmodes/cc-subword.elc $(lisp)/progmodes/cc-vars.elc: \ + $(lisp)/progmodes/cc-vars.elc: \ $(lisp)/progmodes/cc-bytecomp.elc $(lisp)/progmodes/cc-defs.elc $(lisp)/progmodes/cc-align.elc: \ @@ -1495,8 +447,6 @@ $(lisp)/progmodes/cc-mode.elc: $(lisp)/progmodes/cc-langs.elc \ $(lisp)/progmodes/cc-styles.elc: $(lisp)/progmodes/cc-vars.elc \ $(lisp)/progmodes/cc-align.elc -$(lisp)/progmodes/cc-subword.elc: $(lisp)/progmodes/cc-cmds.elc - $(lisp)/progmodes/cc-vars.elc: $(lisp)/custom.elc $(lisp)/widget.elc # MH-E dependencies, mainly to prevent failures with parallel