diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-25 03:10:59 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-25 03:10:59 +0000 |
commit | 3975988bf45f3fd738a9b7c88430cba0b4f5013a (patch) | |
tree | e61ef8b31ff337971322effdaeee372a55b25581 /lisp/Makefile | |
parent | e0f694317d590dadafb6b3830f8b577f8a716c45 (diff) | |
download | emacs-3975988bf45f3fd738a9b7c88430cba0b4f5013a.tar.gz |
(ETAGS): New variable.
(TAGS): Use ${ETAGS}.
Diffstat (limited to 'lisp/Makefile')
-rw-r--r-- | lisp/Makefile | 3 |
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) |