summaryrefslogtreecommitdiff
path: root/src/=Makefile.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1992-12-21 18:26:29 +0000
committerRoland McGrath <roland@gnu.org>1992-12-21 18:26:29 +0000
commit3c373fde2285e211dd97d39f90342001ee2ee50a (patch)
tree173ea7f69b0d7a0c9954430bda9f3fa38b8c0ac0 /src/=Makefile.in
parentc957a721a4b421ff8fda62e88d0d0984f7f9a2ec (diff)
downloademacs-3c373fde2285e211dd97d39f90342001ee2ee50a.tar.gz
(tagsfiles): New variable.
(TAGS): Depend on $(tagsfiles); use that in cmds. (tags): Separate phony rule; depends on TAGS.
Diffstat (limited to 'src/=Makefile.in')
-rw-r--r--src/=Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/=Makefile.in b/src/=Makefile.in
index 606e0630b9b..fbf4754e852 100644
--- a/src/=Makefile.in
+++ b/src/=Makefile.in
@@ -69,6 +69,9 @@ xmakefile: ymakefile config.h
chmod 444 xmakefile
rm -f junk.c junk.cpp
-tags TAGS:
- etags [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el ../lisp/term/[a-z]*.el \
- ../external-lisp/*.el
+tagsfiles = [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el ../lisp/term/[a-z]*.el \
+ ../external-lisp/*.el
+TAGS: $(tagsfiles)
+ etags $(tagsfiles)
+tags: TAGS
+.PHONY: tags