aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland McGrath1992-12-21 18:26:29 +0000
committerRoland McGrath1992-12-21 18:26:29 +0000
commitac21ec406ae2ec178dd477ccc08dd9e32bc532da (patch)
treec8ce0ef1d756d6b817dc3e51b04f23e2857f5230 /src
parentbe58fa58a90fbc28613dbe2ba1809cba6f46de5a (diff)
downloademacs-ac21ec406ae2ec178dd477ccc08dd9e32bc532da.tar.gz
emacs-ac21ec406ae2ec178dd477ccc08dd9e32bc532da.zip
(tagsfiles): New variable.
(TAGS): Depend on $(tagsfiles); use that in cmds. (tags): Separate phony rule; depends on TAGS.
Diffstat (limited to 'src')
-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
69 chmod 444 xmakefile 69 chmod 444 xmakefile
70 rm -f junk.c junk.cpp 70 rm -f junk.c junk.cpp
71 71
72tags TAGS: 72tagsfiles = [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el ../lisp/term/[a-z]*.el \
73 etags [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el ../lisp/term/[a-z]*.el \ 73 ../external-lisp/*.el
74 ../external-lisp/*.el 74TAGS: $(tagsfiles)
75 etags $(tagsfiles)
76tags: TAGS
77.PHONY: tags