diff options
| author | Glenn Morris | 2018-06-18 12:14:24 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-06-18 12:14:24 -0700 |
| commit | ef02c9fd1a6bdafebc2bba58a551ec11e29bd394 (patch) | |
| tree | 6d449f44290ca3506af22e8851118b39028c9c7c /src/Makefile.in | |
| parent | e347754df7b8ec6a6e5d1f1a7749f5a19746d55f (diff) | |
| parent | 5bdc344780faabbc91b7e55306b2071dffb44fa2 (diff) | |
| download | emacs-ef02c9fd1a6bdafebc2bba58a551ec11e29bd394.tar.gz emacs-ef02c9fd1a6bdafebc2bba58a551ec11e29bd394.zip | |
Merge from origin/emacs-26
5bdc344 ; Reduce quoting for SELECTOR in 'make -C test' (Bug#31744)
b6b793b ; test/Makefile.in: Add TEST_INTERACTIVE option (Bug#31744).
1aa906f Make 'tags' targets respect --with-silent-rules (Bug#31744)
Conflicts:
test/Makefile.in
test/README
Diffstat (limited to 'src/Makefile.in')
| -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) \ |