diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-04-09 14:50:44 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-04-09 14:50:44 +0000 |
commit | 865e97c125565a0f96590e8f7f3e4a892013765d (patch) | |
tree | 8acab8b671e20aa8df6b96ee5668a335c8d27ebf /lisp/Makefile.in | |
parent | 92a6563f8d3a823841bce303e322b35a1fd79612 (diff) | |
download | emacs-865e97c125565a0f96590e8f7f3e4a892013765d.tar.gz |
(nonobsolete_setwins): New macro.
(finder-data): Use it instead of `setwins'.
From: Dave Love <fx@gnu.org>.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 3fb63dcc523..933673d94be 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -119,6 +119,12 @@ setwins=subdirs=`find $$wd -type d -print`; \ *) wins="$$wins $$file" ;; \ esac; \ done +nonobsolete_setwins=subdirs=`find $$wd -type d -print`; \ + for file in $$subdirs; do \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete ) ;; \ + *) wins="$$wins $$file" ;; \ + esac; \ + done doit: @@ -132,7 +138,7 @@ custom-deps: cus-load.el doit finder-inf.el: echo "(provide 'finder-inf)" >> $@ finder-data: finder-inf.el doit - wd=$(lisp); $(setwins); \ + wd=$(lisp); $(nonobsolete_setwins); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins |