emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog Makefile.in


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog Makefile.in
Date: Wed, 09 Dec 2009 01:53:20 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/12/09 01:53:19

Modified files:
        lisp           : ChangeLog Makefile.in 

Log message:
        Get rid of the ELCFILES abomination.
        * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
        (compile-elcfiles): New phony target.
        (compile-main): Compute ELCFILES dynamically.
        (compile-clean): New target to remove left-over elc files.
        (compile, all): Use it.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16871&r2=1.16872
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/Makefile.in?cvsroot=emacs&r1=1.214&r2=1.215

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16871
retrieving revision 1.16872
diff -u -b -r1.16871 -r1.16872
--- ChangeLog   9 Dec 2009 01:02:11 -0000       1.16871
+++ ChangeLog   9 Dec 2009 01:53:15 -0000       1.16872
@@ -1,3 +1,12 @@
+2009-12-09  Stefan Monnier  <address@hidden>
+
+       Get rid of the ELCFILES abomination.
+       * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
+       (compile-elcfiles): New phony target.
+       (compile-main): Compute ELCFILES dynamically.
+       (compile-clean): New target to remove left-over elc files.
+       (compile, all): Use it.
+
 2009-12-09  Kenichi Handa  <address@hidden>
 
        * international/mule-diag.el: Require help-mode instead of help-fns.

Index: Makefile.in
===================================================================
RCS file: /sources/emacs/emacs/lisp/Makefile.in,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -b -r1.214 -r1.215
--- Makefile.in 8 Dec 2009 03:27:09 -0000       1.214
+++ Makefile.in 9 Dec 2009 01:53:19 -0000       1.215
@@ -109,9 +109,7 @@
 # with "make -j" and results in more deterministic compilation warnings.
 # 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)
+all: compile-main $(lisp)/cus-load.el $(lisp)/finder-inf.el compile-clean
 
 doit:
 
@@ -177,1281 +175,6 @@
        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 $(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
-       -(LC_COLLATE=C ls $(lisp)/*.elc $(lisp)/*/*.elc $(lisp)/*/*/*.elc 
$(lisp)/*/*/*/*.elc | sed 's/elc$$/el/';  \
-         LC_COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el $(lisp)/*/*/*.el 
$(lisp)/*/*/*/*.el; \
-         LC_COLLATE=C ls $(lisp)/*.el $(lisp)/*/*.el $(lisp)/*/*/*.el 
$(lisp)/*/*/*/*.el) |       \
-            sort | uniq -u | while read extra; do                         \
-                echo "Found left over byte-compiled file: $${extra}c !!" ;\
-            done
-
-## 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)/cedet/cedet-cscope.elc \
-       $(lisp)/cedet/cedet-files.elc \
-       $(lisp)/cedet/cedet-global.elc \
-       $(lisp)/cedet/cedet-idutils.elc \
-       $(lisp)/cedet/cedet.elc \
-       $(lisp)/cedet/data-debug.elc \
-       $(lisp)/cedet/ede.elc \
-       $(lisp)/cedet/ede/autoconf-edit.elc \
-       $(lisp)/cedet/ede/cpp-root.elc \
-       $(lisp)/cedet/ede/dired.elc \
-       $(lisp)/cedet/ede/emacs.elc \
-       $(lisp)/cedet/ede/files.elc \
-       $(lisp)/cedet/ede/linux.elc \
-       $(lisp)/cedet/ede/locate.elc \
-       $(lisp)/cedet/ede/make.elc \
-       $(lisp)/cedet/ede/makefile-edit.elc \
-       $(lisp)/cedet/ede/pconf.elc \
-       $(lisp)/cedet/ede/pmake.elc \
-       $(lisp)/cedet/ede/proj-archive.elc \
-       $(lisp)/cedet/ede/proj-aux.elc \
-       $(lisp)/cedet/ede/proj-comp.elc \
-       $(lisp)/cedet/ede/proj-elisp.elc \
-       $(lisp)/cedet/ede/proj-info.elc \
-       $(lisp)/cedet/ede/proj-misc.elc \
-       $(lisp)/cedet/ede/proj-obj.elc \
-       $(lisp)/cedet/ede/proj-prog.elc \
-       $(lisp)/cedet/ede/proj-scheme.elc \
-       $(lisp)/cedet/ede/proj-shared.elc \
-       $(lisp)/cedet/ede/proj.elc \
-       $(lisp)/cedet/ede/project-am.elc \
-       $(lisp)/cedet/ede/shell.elc \
-       $(lisp)/cedet/ede/simple.elc \
-       $(lisp)/cedet/ede/source.elc \
-       $(lisp)/cedet/ede/speedbar.elc \
-       $(lisp)/cedet/ede/srecode.elc \
-       $(lisp)/cedet/ede/system.elc \
-       $(lisp)/cedet/ede/util.elc \
-       $(lisp)/cedet/inversion.elc \
-       $(lisp)/cedet/mode-local.elc \
-       $(lisp)/cedet/pulse.elc \
-       $(lisp)/cedet/semantic.elc \
-       $(lisp)/cedet/semantic/analyze.elc \
-       $(lisp)/cedet/semantic/analyze/complete.elc \
-       $(lisp)/cedet/semantic/analyze/debug.elc \
-       $(lisp)/cedet/semantic/analyze/fcn.elc \
-       $(lisp)/cedet/semantic/analyze/refs.elc \
-       $(lisp)/cedet/semantic/bovine.elc \
-       $(lisp)/cedet/semantic/bovine/c-by.elc \
-       $(lisp)/cedet/semantic/bovine/c.elc \
-       $(lisp)/cedet/semantic/bovine/debug.elc \
-       $(lisp)/cedet/semantic/bovine/el.elc \
-       $(lisp)/cedet/semantic/bovine/gcc.elc \
-       $(lisp)/cedet/semantic/bovine/make-by.elc \
-       $(lisp)/cedet/semantic/bovine/make.elc \
-       $(lisp)/cedet/semantic/bovine/scm-by.elc \
-       $(lisp)/cedet/semantic/bovine/scm.elc \
-       $(lisp)/cedet/semantic/chart.elc \
-       $(lisp)/cedet/semantic/complete.elc \
-       $(lisp)/cedet/semantic/ctxt.elc \
-       $(lisp)/cedet/semantic/db-debug.elc \
-       $(lisp)/cedet/semantic/db-ebrowse.elc \
-       $(lisp)/cedet/semantic/db-el.elc \
-       $(lisp)/cedet/semantic/db-file.elc \
-       $(lisp)/cedet/semantic/db-find.elc \
-       $(lisp)/cedet/semantic/db-global.elc \
-       $(lisp)/cedet/semantic/db-javascript.elc \
-       $(lisp)/cedet/semantic/db-mode.elc \
-       $(lisp)/cedet/semantic/db-ref.elc \
-       $(lisp)/cedet/semantic/db-typecache.elc \
-       $(lisp)/cedet/semantic/db.elc \
-       $(lisp)/cedet/semantic/debug.elc \
-       $(lisp)/cedet/semantic/decorate.elc \
-       $(lisp)/cedet/semantic/decorate/include.elc \
-       $(lisp)/cedet/semantic/decorate/mode.elc \
-       $(lisp)/cedet/semantic/dep.elc \
-       $(lisp)/cedet/semantic/doc.elc \
-       $(lisp)/cedet/semantic/ede-grammar.elc \
-       $(lisp)/cedet/semantic/edit.elc \
-       $(lisp)/cedet/semantic/find.elc \
-       $(lisp)/cedet/semantic/format.elc \
-       $(lisp)/cedet/semantic/fw.elc \
-       $(lisp)/cedet/semantic/grammar-wy.elc \
-       $(lisp)/cedet/semantic/grammar.elc \
-       $(lisp)/cedet/semantic/html.elc \
-       $(lisp)/cedet/semantic/ia-sb.elc \
-       $(lisp)/cedet/semantic/ia.elc \
-       $(lisp)/cedet/semantic/idle.elc \
-       $(lisp)/cedet/semantic/java.elc \
-       $(lisp)/cedet/semantic/lex-spp.elc \
-       $(lisp)/cedet/semantic/lex.elc \
-       $(lisp)/cedet/semantic/mru-bookmark.elc \
-       $(lisp)/cedet/semantic/sb.elc \
-       $(lisp)/cedet/semantic/scope.elc \
-       $(lisp)/cedet/semantic/senator.elc \
-       $(lisp)/cedet/semantic/sort.elc \
-       $(lisp)/cedet/semantic/symref.elc \
-       $(lisp)/cedet/semantic/symref/cscope.elc \
-       $(lisp)/cedet/semantic/symref/filter.elc \
-       $(lisp)/cedet/semantic/symref/global.elc \
-       $(lisp)/cedet/semantic/symref/grep.elc \
-       $(lisp)/cedet/semantic/symref/idutils.elc \
-       $(lisp)/cedet/semantic/symref/list.elc \
-       $(lisp)/cedet/semantic/tag-file.elc \
-       $(lisp)/cedet/semantic/tag-ls.elc \
-       $(lisp)/cedet/semantic/tag-write.elc \
-       $(lisp)/cedet/semantic/tag.elc \
-       $(lisp)/cedet/semantic/texi.elc \
-       $(lisp)/cedet/semantic/util-modes.elc \
-       $(lisp)/cedet/semantic/util.elc \
-       $(lisp)/cedet/semantic/wisent.elc \
-       $(lisp)/cedet/semantic/wisent/comp.elc \
-       $(lisp)/cedet/semantic/wisent/java-tags.elc \
-       $(lisp)/cedet/semantic/wisent/javascript.elc \
-       $(lisp)/cedet/semantic/wisent/javat-wy.elc \
-       $(lisp)/cedet/semantic/wisent/js-wy.elc \
-       $(lisp)/cedet/semantic/wisent/wisent.elc \
-       $(lisp)/cedet/srecode.elc \
-       $(lisp)/cedet/srecode/args.elc \
-       $(lisp)/cedet/srecode/compile.elc \
-       $(lisp)/cedet/srecode/cpp.elc \
-       $(lisp)/cedet/srecode/ctxt.elc \
-       $(lisp)/cedet/srecode/dictionary.elc \
-       $(lisp)/cedet/srecode/document.elc \
-       $(lisp)/cedet/srecode/el.elc \
-       $(lisp)/cedet/srecode/expandproto.elc \
-       $(lisp)/cedet/srecode/extract.elc \
-       $(lisp)/cedet/srecode/fields.elc \
-       $(lisp)/cedet/srecode/filters.elc \
-       $(lisp)/cedet/srecode/find.elc \
-       $(lisp)/cedet/srecode/getset.elc \
-       $(lisp)/cedet/srecode/insert.elc \
-       $(lisp)/cedet/srecode/java.elc \
-       $(lisp)/cedet/srecode/map.elc \
-       $(lisp)/cedet/srecode/mode.elc \
-       $(lisp)/cedet/srecode/semantic.elc \
-       $(lisp)/cedet/srecode/srt-mode.elc \
-       $(lisp)/cedet/srecode/srt-wy.elc \
-       $(lisp)/cedet/srecode/srt.elc \
-       $(lisp)/cedet/srecode/table.elc \
-       $(lisp)/cedet/srecode/template.elc \
-       $(lisp)/cedet/srecode/texi.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/chart.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/eieio-base.elc \
-       $(lisp)/emacs-lisp/eieio-comp.elc \
-       $(lisp)/emacs-lisp/eieio-custom.elc \
-       $(lisp)/emacs-lisp/eieio-datadebug.elc \
-       $(lisp)/emacs-lisp/eieio-opt.elc \
-       $(lisp)/emacs-lisp/eieio-speedbar.elc \
-       $(lisp)/emacs-lisp/eieio.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/lisp-mnt.elc \
-       $(lisp)/emacs-lisp/lisp-mode.elc \
-       $(lisp)/emacs-lisp/lisp.elc \
-       $(lisp)/emacs-lisp/lmenu.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)/ffap.elc \
-       $(lisp)/filecache.elc \
-       $(lisp)/files-x.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)/font-setting.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)/hfy-cmap.elc \
-       $(lisp)/hi-lock.elc \
-       $(lisp)/hilit-chg.elc \
-       $(lisp)/hippie-exp.elc \
-       $(lisp)/hl-line.elc \
-       $(lisp)/htmlfontify.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/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-conf.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/ucs-normalize.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)/mpc.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-hash.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-gvfs.elc \
-       $(lisp)/net/tramp-gw.elc \
-       $(lisp)/net/tramp-imap.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/levents.elc \
-       $(lisp)/obsolete/lucid.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/sym-comp.elc \
-       $(lisp)/obsolete/vc-mcvs.elc \
-       $(lisp)/obsolete/x-menu.elc \
-       $(lisp)/org/org-agenda.elc \
-       $(lisp)/org/org-archive.elc \
-       $(lisp)/org/org-ascii.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-crypt.elc \
-       $(lisp)/org/org-datetree.elc \
-       $(lisp)/org/org-docbook.elc \
-       $(lisp)/org/org-exp-blocks.elc \
-       $(lisp)/org/org-exp.elc \
-       $(lisp)/org/org-faces.elc \
-       $(lisp)/org/org-feed.elc \
-       $(lisp)/org/org-footnote.elc \
-       $(lisp)/org/org-freemind.elc \
-       $(lisp)/org/org-gnus.elc \
-       $(lisp)/org/org-habit.elc \
-       $(lisp)/org/org-html.elc \
-       $(lisp)/org/org-icalendar.elc \
-       $(lisp)/org/org-id.elc \
-       $(lisp)/org/org-indent.elc \
-       $(lisp)/org/org-info.elc \
-       $(lisp)/org/org-inlinetask.elc \
-       $(lisp)/org/org-install.elc \
-       $(lisp)/org/org-irc.elc \
-       $(lisp)/org/org-jsinfo.elc \
-       $(lisp)/org/org-latex.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-mobile.elc \
-       $(lisp)/org/org-mouse.elc \
-       $(lisp)/org/org-plot.elc \
-       $(lisp)/org/org-protocol.elc \
-       $(lisp)/org/org-publish.elc \
-       $(lisp)/org/org-remember.elc \
-       $(lisp)/org/org-rmail.elc \
-       $(lisp)/org/org-src.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-xoxo.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-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/js.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/subword.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
@@ -1480,17 +203,39 @@
 
 # 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 $<
 
-.PHONY: compile-first compile-main compile-last compile compile-always
+.PHONY: compile-first compile-main compile compile-always compile-elcfiles
 
 compile-first: $(COMPILE_FIRST)
 
-compile-main: $(ELCFILES)
+# ELCFILES is set dynamically in the recursive call from `compile-main'.
+compile-elcfiles: $(ELCFILES)
+
+# Compile all the Elisp files that need it.  Beware: it approximates
+# `no-byte-compile', so watch out for false-positives!
+compile-main:
+       @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 && GREP_OPTIONS= grep '^;.*no-byte-compile: t' $$el 
> /dev/null && continue; \
+         files="$$files $${el}c"; \
+       done; \
+       $(MAKE) $(MFLAGS) compile-elcfiles EMACS=$(EMACS) ELCFILES="$$files"
+
+# Erase left-over .elc files that do not have a corresponding .el file.
+compile-clean:
+       @wd=$(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
@@ -1498,9 +243,8 @@
 # Calling make recursively because suffix rule cannot have prerequisites.
 # Explicitly pass EMACS (sometimes ../src/bootstrap-emacs) to those
 # sub-makes that run rules that use it, for the sake of some non-GNU makes.
-compile: $(LOADDEFS) autoloads compile-first
+compile: $(LOADDEFS) autoloads compile-first compile-clean
        $(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
@@ -1512,26 +256,6 @@
        cd $(lisp); rm -f *.elc */*.elc */*/*.elc */*/*/*.elc
        $(MAKE) $(MFLAGS) compile EMACS=$(EMACS)
 
-## In case any files are missing from ELCFILES.
-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_OPTIONS= grep 'no-byte-compile: t' $$el > /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; \
-         $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || 
exit 1; \
-       done
-
 # Backup compiled Lisp files in elc.tar.gz.  If that file already
 # exists, make a backup of it.
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]