Quiet the make output when rebuilding TAGS.

This commit is contained in:
John Wiegley 2009-02-05 03:48:56 -04:00
parent d029990209
commit 7f5f53de82

View file

@ -198,9 +198,8 @@ all_sources = $(libledger_util_la_SOURCES) \
all_files = $(all_sources) $(pkginclude_HEADERS)
TAGS: $(all_files)
BUILD_DIR=`cd $(top_builddir); pwd`; \
(cd $(srcdir); \
etags -l c++ -o $$BUILD_DIR/TAGS $(all_files))
@BUILD_DIR=`cd $(top_builddir); pwd`; \
(cd $(srcdir); etags -l c++ -o $$BUILD_DIR/TAGS $(all_files) 2> /dev/null)
@echo TAGS rebuilt.
######################################################################