diff options
| author | Gerd Moellmann | 2001-07-02 11:51:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-07-02 11:51:38 +0000 |
| commit | d7a081d80950ddf9de447da5313e78ac3360797d (patch) | |
| tree | 7a8f519d6d51838a78c0a3f38822ffacfee8c0d5 /src | |
| parent | 156a54088a149f249eaf45046223cbd59ab18a7d (diff) | |
| download | emacs-d7a081d80950ddf9de447da5313e78ac3360797d.tar.gz emacs-d7a081d80950ddf9de447da5313e78ac3360797d.zip | |
(tags): Depend on $(lwlibdir)/TAGS.
($(lwlibdir)TAGS): New target.
(TAGS): Fix depedency list.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index f97214c29e3..03faaae332b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1171,16 +1171,22 @@ relock: | |||
| 1171 | 1171 | ||
| 1172 | /* Arrange to make a tags table TAGS-LISP for ../lisp, | 1172 | /* Arrange to make a tags table TAGS-LISP for ../lisp, |
| 1173 | plus TAGS for the C files, which includes ../lisp/TAGS by reference. */ | 1173 | plus TAGS for the C files, which includes ../lisp/TAGS by reference. */ |
| 1174 | |||
| 1174 | ctagsfiles1 = [xyzXYZ]*.[hc] | 1175 | ctagsfiles1 = [xyzXYZ]*.[hc] |
| 1175 | ctagsfiles2 = [a-wA-W]*.[hc] | 1176 | ctagsfiles2 = [a-wA-W]*.[hc] |
| 1176 | TAGS: $(srcdir)/$(ctagsfiles) | 1177 | |
| 1178 | TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) | ||
| 1177 | ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \ | 1179 | ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \ |
| 1178 | --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \ | 1180 | --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \ |
| 1179 | $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) | 1181 | $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) |
| 1180 | frc: | 1182 | frc: |
| 1181 | TAGS-LISP: frc | 1183 | TAGS-LISP: frc |
| 1182 | $(MAKE) -f ${lispsource}Makefile TAGS-LISP ETAGS=../lib-src/etags | 1184 | $(MAKE) -f ${lispsource}Makefile TAGS-LISP ETAGS=../lib-src/etags |
| 1183 | tags: TAGS TAGS-LISP | 1185 | |
| 1186 | $(lwlibdir)TAGS: | ||
| 1187 | (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)Makefile tags ETAGS=../lib-src/etags) | ||
| 1188 | |||
| 1189 | tags: TAGS TAGS-LISP $(lwlibdir)TAGS | ||
| 1184 | .PHONY: tags | 1190 | .PHONY: tags |
| 1185 | 1191 | ||
| 1186 | 1192 | ||