summaryrefslogtreecommitdiff
path: root/lisp/Makefile.in
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2017-12-07 04:31:47 -0500
committerNoam Postavsky <npostavs@gmail.com>2018-06-12 07:26:06 -0400
commit1aa906f10d3a5dc3905c2f74cddbfd8c6cb8eb7a (patch)
treeafd9c6f5e765556ec42d69043f3cdd311253a43d /lisp/Makefile.in
parent642c11fdd179c9b7de32c4c83bf17b073dcdd527 (diff)
downloademacs-1aa906f10d3a5dc3905c2f74cddbfd8c6cb8eb7a.tar.gz
Make 'tags' targets respect --with-silent-rules (Bug#31744)
* lwlib/Makefile.in (TAGS): * lisp/Makefile.in (TAGS): * src/Makefile.in (TAGS): Use AM_V_GEN and AM_V_at. * src/Makefile.in: Note that TAGS are generated in build dir.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r--lisp/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index d4709bd79d4..05fca9579f9 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -259,9 +259,9 @@ ${ETAGS}: FORCE
## compile-main. But maybe this is not even necessary any more now
## that this uses relative filenames.
TAGS: ${ETAGS} ${tagsfiles}
- rm -f $@
- touch $@
- ls ${tagsfiles} | xargs $(XARGS_LIMIT) "${ETAGS}" -a -o $@
+ $(AM_V_at)rm -f $@
+ $(AM_V_at)touch $@
+ $(AM_V_GEN)ls ${tagsfiles} | xargs $(XARGS_LIMIT) "${ETAGS}" -a -o $@
# The src/Makefile.in has its own set of dependencies and when they decide