]> git.eshelyaron.com Git - emacs.git/commitdiff
(update-subdirs): New target.
authorRichard M. Stallman <rms@gnu.org>
Mon, 12 May 1997 00:59:57 +0000 (00:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 12 May 1997 00:59:57 +0000 (00:59 +0000)
(updates): Do update-subdirs's job too.

lisp/Makefile

index 8187b99098e288b3de3c20b5545b63a69b49291b..80cb5c41356f4ad927e417996dba413f451a8e6c 100644 (file)
@@ -34,6 +34,17 @@ autoloads: doit
         done; \
        $(EMACS) -batch -f batch-update-autoloads $$wins
 
+update-subdirs: doit
+       subdirs=`find . -type d -print`; \
+       for file in $$subdirs; do \
+          case $$file in */Old | */RCS) ;; \
+               *) wins="$$wins $$file" ;; \
+          esac; \
+        done; \
+       for file in $$wins; do \
+          ../update-subdirs $$file; \
+       done;
+
 updates: doit
        subdirs=`find . -type d -print`; \
        for file in $$subdirs; do \
@@ -41,6 +52,9 @@ updates: doit
                *) wins="$$wins $$file" ;; \
           esac; \
         done; \
+       for file in $$wins; do \
+          ../update-subdirs $$file; \
+       done; \
        $(EMACS) -batch -l cus-dep.el -f custom-make-dependencies $$wins \
        $(EMACS) -batch -l finder -f finder-compile-keywords-make-dist $$wins \
        $(EMACS) -batch -f batch-update-autoloads $$wins