diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 9 |
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 | ||
| 72 | tags TAGS: | 72 | tagsfiles = [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 | 74 | TAGS: $(tagsfiles) |
| 75 | etags $(tagsfiles) | ||
| 76 | tags: TAGS | ||
| 77 | .PHONY: tags | ||