aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 218e053689e..613d5ae80a2 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -860,8 +860,14 @@ unlock:
860relock: 860relock:
861 chmod -w $(SOURCES) 861 chmod -w $(SOURCES)
862 chmod +w paths.h 862 chmod +w paths.h
863tagsfiles = [a-zA-Z]*.h [a-zA-Z]*.c ../lisp/[a-zA-Z]*.el ../lisp/term/[a-zA-Z]*.el 863
864TAGS: $(tagsfiles) 864# Arrange to make a tags table in ../lisp, and another in this dir
865 etags $(tagsfiles) 865# which includes ../lisp/TAGS by reference.
866tags: TAGS 866ctagsfiles = [a-zA-Z]*.h [a-zA-Z]*.c
867lisptagsfiles = ../lisp/[a-zA-Z]*.el ../lisp/term/[a-zA-Z]*.el
868TAGS: $(ctagsfiles)
869 ../lib-src/etags --include=../lisp/TAGS $(ctagsfiles)
870../lisp/TAGS: $(lisptagsfiles)
871 cd ../lisp; $(MAKE) TAGS
872tags: TAGS ../lisp/TAGS
867.PHONY: tags 873.PHONY: tags