]> git.eshelyaron.com Git - emacs.git/commitdiff
(TAGS, TAGS-LISP): Exclude loaddefs.el.
authorGerd Moellmann <gerd@gnu.org>
Thu, 2 Aug 2001 09:00:17 +0000 (09:00 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 2 Aug 2001 09:00:17 +0000 (09:00 +0000)
lisp/ChangeLog
lisp/Makefile.in

index cb45f4a3bae00aa6a3c0b4afff7f84bb8aa02506..b3b1d0e20b0e4cc81f065459e5a0c898dabf2a9e 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-02  Gerd Moellmann  <gerd@gnu.org>
+
+       * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
+
 2001-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * man.el (man): Mention Man-switches in the doc string.
index 703d5c7a28bbde3e5765766143bb4fa56a3e7c42..d73c800c84572e9e6c8a6b5a9b135d37308beb17 100644 (file)
@@ -173,10 +173,12 @@ update-authors:
        $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
 
 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
-       ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2)
+       els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s/loaddefs.el//"`; \
+       ${ETAGS} $$els
 
 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
-       ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2)
+       els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s/loaddefs.el//"`; \
+       ${ETAGS} -o TAGS-LISP $$els
 
 .SUFFIXES: .elc .el