diff options
| author | Roland McGrath | 1992-12-21 18:26:29 +0000 |
|---|---|---|
| committer | Roland McGrath | 1992-12-21 18:26:29 +0000 |
| commit | ac21ec406ae2ec178dd477ccc08dd9e32bc532da (patch) | |
| tree | c8ce0ef1d756d6b817dc3e51b04f23e2857f5230 /src | |
| parent | be58fa58a90fbc28613dbe2ba1809cba6f46de5a (diff) | |
| download | emacs-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.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 | ||