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 15ca1667d65..6ed8f3cc916 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -674,13 +674,14 @@ ${ETAGS}: FORCE | |||
| 674 | ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) | 674 | ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) |
| 675 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) | 675 | ctagsfiles2 = $(wildcard ${srcdir}/*.m) |
| 676 | 676 | ||
| 677 | ## FIXME? In out-of-tree builds, should TAGS be generated in srcdir? | 677 | ## In out-of-tree builds, TAGS are generated in the build dir, like |
| 678 | ## other non-bootstrap build products (see Bug#31744). | ||
| 678 | 679 | ||
| 679 | ## This does not need to depend on ../lisp and ../lwlib TAGS files, | 680 | ## This does not need to depend on ../lisp and ../lwlib TAGS files, |
| 680 | ## because etags "--include" only includes a pointer to the file, | 681 | ## because etags "--include" only includes a pointer to the file, |
| 681 | ## rather than the file contents. | 682 | ## rather than the file contents. |
| 682 | TAGS: ${ETAGS} $(ctagsfiles1) $(ctagsfiles2) | 683 | TAGS: ${ETAGS} $(ctagsfiles1) $(ctagsfiles2) |
| 683 | ${ETAGS} --include=../lisp/TAGS --include=$(lwlibdir)/TAGS \ | 684 | $(AM_V_GEN)${ETAGS} --include=../lisp/TAGS --include=$(lwlibdir)/TAGS \ |
| 684 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ | 685 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ |
| 685 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"[^"]+",[ ]\([A-Za-z0-9_]+\)/\1/' \ | 686 | --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"[^"]+",[ ]\([A-Za-z0-9_]+\)/\1/' \ |
| 686 | $(ctagsfiles1) \ | 687 | $(ctagsfiles1) \ |