# HG changeset patch # User Richard M. Stallman # Date 867467367 0 # Node ID 9c5e6b1dafc544aca790f19a60f7b0aa1aeca2c8 # Parent c41c3f9ff7456156f8f03ac8973a0177f54e13bd (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. diff -r c41c3f9ff745 -r 9c5e6b1dafc5 lisp/Makefile --- 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; \