Mercurial > emacs
changeset 18482:9c5e6b1dafc5
(lisptagsfiles): Look at subdirs only if name
starts with a letter.
(dontcompilefiles): Don't compile latin-5.el.
(updates): Reject subdirs whose names start with =.
(custom-deps, finder-data, autoloads, update-subdirs): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 28 Jun 1997 03:09:27 +0000 |
parents | c41c3f9ff745 |
children | 4d66cfbc5735 |
files | lisp/Makefile |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/Makefile Sat Jun 28 00:45:31 1997 +0000 +++ b/lisp/Makefile Sat Jun 28 03:09:27 1997 +0000 @@ -3,11 +3,11 @@ # EMACS = emacs SOURCES = *.el COPYING Makefile -lisptagsfiles = [a-zA-Z]*.el */[a-zA-Z]*.el +lisptagsfiles = [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el dontcompilefiles: forms-d2.el forms-pass.el -dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el +dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el latin-5.el dontcompilefiles: loaddefs.el loadup.el mule-conf.el patcomp.el dontcompilefiles: paths.el sc.el subdirs.el term-nasty.el version.el @@ -25,7 +25,7 @@ finder-data: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS) ;; \ + case $$file in */Old | */RCS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -34,7 +34,7 @@ autoloads: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS) ;; \ + case $$file in */Old | */RCS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -43,7 +43,7 @@ update-subdirs: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS) ;; \ + case $$file in */Old | */RCS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \ @@ -54,7 +54,7 @@ updates: doit subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS) ;; \ + case $$file in */Old | */RCS | */=* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done; \