summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-25 03:10:59 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-25 03:10:59 +0000
commit5ce2eac9b84ec4bba8a39384fd2a341f6d4e49ee (patch)
tree17d4ca38f48e7f96c247394f185a8f0e61b34cfa
parentdf842b7e21e98fad10e6c70c6503aba9e2024058 (diff)
downloademacs-5ce2eac9b84ec4bba8a39384fd2a341f6d4e49ee.tar.gz
(ETAGS): New variable.
(TAGS): Use ${ETAGS}.
-rw-r--r--lisp/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/Makefile b/lisp/Makefile
index 2a6360dd33a..46dabd38066 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -4,6 +4,7 @@
EMACS = emacs
SOURCES = *.el COPYING Makefile
lisptagsfiles = [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el
+ETAGS = ../lib-src/etags
dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el
dontcompilefiles: cyril-util.el forms-d2.el forms-pass.el
@@ -66,4 +67,4 @@ updates: doit
$(EMACS) -batch -f batch-update-autoloads $$wins
TAGS: $(lisptagsfiles)
- ../lib-src/etags $(lisptagsfiles)
+ ${ETAGS} $(lisptagsfiles)