]> git.eshelyaron.com Git - emacs.git/commitdiff
Exclude CVS dirs like RCS.
authorDave Love <fx@gnu.org>
Sat, 21 Aug 1999 17:46:37 +0000 (17:46 +0000)
committerDave Love <fx@gnu.org>
Sat, 21 Aug 1999 17:46:37 +0000 (17:46 +0000)
lisp/Makefile

index 1efe46e80c363c1c07cde6bf6f29e94013764085..684fe148ec89693b1e815f8c8e1f518a4dfa67f4 100644 (file)
@@ -19,7 +19,7 @@ doit:
 custom-deps: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */=* ) ;; \
+          case $$file in */Old | */RCS | */CVS | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \
@@ -29,7 +29,7 @@ custom-deps: doit
 finder-data: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */=* ) ;; \
+          case $$file in */Old | */RCS | */CVS | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \
@@ -39,7 +39,7 @@ finder-data: doit
 autoloads: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */=* ) ;; \
+          case $$file in */Old | */RCS | */CVS | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \
@@ -49,7 +49,7 @@ autoloads: doit
 update-subdirs: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */=* ) ;; \
+          case $$file in */Old | */RCS | */CVS | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \
@@ -60,7 +60,7 @@ update-subdirs: doit
 updates: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */=* ) ;; \
+          case $$file in */Old | */RCS | */CVS | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \