# HG changeset patch # User Gerd Moellmann # Date 986827809 0 # Node ID 9a3f00ed6c43016175114afce315708ea21c2565 # Parent 686cd6704f1a78abb00e0157c611fab805f49770 (nonobsolete_setwins): New macro. (finder-data): Use it instead of `setwins'. From: Dave Love . diff -r 686cd6704f1a -r 9a3f00ed6c43 lisp/Makefile.in --- a/lisp/Makefile.in Mon Apr 09 14:29:56 2001 +0000 +++ b/lisp/Makefile.in Mon Apr 09 14:50:09 2001 +0000 @@ -119,6 +119,12 @@ *) 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 @@ 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