diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-08-02 09:00:17 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-08-02 09:00:17 +0000 |
commit | 773899307274982f5a3ecbb636468376e1645059 (patch) | |
tree | 907c27e40c5d8d171277c00efdd9f43ab9663a49 /lisp/Makefile.in | |
parent | 5ae296846a5df9f0d9eb301368b3bdca6c9d89f4 (diff) | |
download | emacs-773899307274982f5a3ecbb636468376e1645059.tar.gz |
(TAGS, TAGS-LISP): Exclude loaddefs.el.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 703d5c7a28b..d73c800c845 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -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 |