diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-09-27 23:25:03 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-09-27 23:25:03 +0000 |
commit | 15120dec6be0fe4f34133eecf91b3c61b9020c03 (patch) | |
tree | b9dddd977b2786e5be80c49924a22efaf7b1d5f4 /lisp/Makefile.in | |
parent | 5dc25d59aa9bb7267542c44ec47248f4c679e555 (diff) | |
download | emacs-15120dec6be0fe4f34133eecf91b3c61b9020c03.tar.gz |
* menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
menu.
* ediff-hook.el: Move menu-bar-ediff-misc-menu into
menu-bar-ediff-menu.
* emacs-lisp/lisp-mode.el: Add doc-string-elt property to
define-overloadable-function.
* progmodes/autoconf.el: Provide autoconf as well, so that this
file can be `require'd.
* emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
* emacs-lisp/autoload.el (generated-autoload-feature)
(generated-autoload-load-name): New vars.
(autoload-rubric, autoload-generate-file-autoloads): Use them.
(make-autoload): Recognize define-overloadable-function and
defclass forms (for EIEIO).
* Makefile.in (update-subdirs): Exclude cedet directory.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 2011f117135..103bd395bee 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -91,6 +91,15 @@ setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ esac; \ done +# Find all subdirectories in which we might want to create subdirs.el + +setwins_for_subdirs=subdirs=`(cd $$wd; find . -type d -print)`; \ + for file in $$subdirs; do \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */cedet* ) ;; \ + *) wins="$$wins $$wd/$$file" ;; \ + esac; \ + done + # `compile-main' tends to be slower than `recompile' but can be parallelized # with "make -j" and results in more deterministic compilation warnings. # cus-load and finder-inf are not explicitly requested by anything, so @@ -144,7 +153,7 @@ autoloads: $(LOADDEFS) doit $(lisp)/subdirs.el: $(MAKE) $(MFLAGS) update-subdirs update-subdirs: doit - wd=$(lisp); $(setwins); \ + wd=$(lisp); $(setwins_for_subdirs); \ for file in $$wins; do \ $(srcdir)/update-subdirs $$file; \ done; |