aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris2018-06-18 12:14:24 -0700
committerGlenn Morris2018-06-18 12:14:24 -0700
commitef02c9fd1a6bdafebc2bba58a551ec11e29bd394 (patch)
tree6d449f44290ca3506af22e8851118b39028c9c7c /src/Makefile.in
parente347754df7b8ec6a6e5d1f1a7749f5a19746d55f (diff)
parent5bdc344780faabbc91b7e55306b2071dffb44fa2 (diff)
downloademacs-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.in5
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
682ctagsfiles1 = $(wildcard ${srcdir}/*.[hc]) 682ctagsfiles1 = $(wildcard ${srcdir}/*.[hc])
683ctagsfiles2 = $(wildcard ${srcdir}/*.m) 683ctagsfiles2 = $(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.
690TAGS: ${ETAGS} $(ctagsfiles1) $(ctagsfiles2) 691TAGS: ${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) \