Mercurial > emacs
comparison lisp/Makefile @ 21753:1d6cc4a65d70
(custom-deps): Ignore =... subdirs.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 24 Apr 1998 20:30:56 +0000 |
parents | 8b79ec97982b |
children | ed07a8592f60 |
comparison
equal
deleted
inserted
replaced
21752:122b15805e79 | 21753:1d6cc4a65d70 |
---|---|
15 doit: | 15 doit: |
16 | 16 |
17 custom-deps: doit | 17 custom-deps: doit |
18 subdirs=`find . -type d -print`; \ | 18 subdirs=`find . -type d -print`; \ |
19 for file in $$subdirs; do \ | 19 for file in $$subdirs; do \ |
20 case $$file in */Old | */RCS) ;; \ | 20 case $$file in */Old | */RCS | */=* ) ;; \ |
21 *) wins="$$wins $$file" ;; \ | 21 *) wins="$$wins $$file" ;; \ |
22 esac; \ | 22 esac; \ |
23 done; \ | 23 done; \ |
24 $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins | 24 $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins |
25 | 25 |