diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 7bbe4e199ef..c3bcc503492 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -682,13 +682,14 @@ ${ETAGS}: FORCE | |||
| 682 | ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) | 682 | ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) |
| 683 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) | 683 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) |
| 684 | 684 | ||
| 685 | ## FIXME? In out-of-tree builds, should TAGS be generated in srcdir? | 685 | ## In out-of-tree builds, TAGS are generated in the build dir, like |
| 686 | ## other non-bootstrap build products (see Bug#31744). | ||
| 686 | 687 | ||
| 687 | ## This does not need to depend on ../lisp and ../lwlib TAGS files, | 688 | ## This does not need to depend on ../lisp and ../lwlib TAGS files, |
| 688 | ## because etags "--include" only includes a pointer to the file, | 689 | ## because etags "--include" only includes a pointer to the file, |
| 689 | ## rather than the file contents. | 690 | ## rather than the file contents. |
| 690 | TAGS: ${ETAGS} $(ctagsfiles1) $(ctagsfiles2) | 691 | TAGS: ${ETAGS} $(ctagsfiles1) $(ctagsfiles2) |
| 691 | ${ETAGS} --include=../lisp/TAGS --include=$(lwlibdir)/TAGS \ | 692 | $(AM_V_GEN)${ETAGS} --include=../lisp/TAGS --include=$(lwlibdir)/TAGS \ |
| 692 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ | 693 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ |
| 693 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"[^"]+",[ ]\([A-Za-z0-9_]+\)/\1/' \ | 694 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"[^"]+",[ ]\([A-Za-z0-9_]+\)/\1/' \ |
| 694 | $(ctagsfiles1) \ | 695 | $(ctagsfiles1) \ |