summaryrefslogtreecommitdiff
path: root/Makefile.am.inc
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-02-01 22:57:41 +0000
committerGerald Combs <gerald@wireshark.org>2013-02-01 22:57:41 +0000
commit7187abf1205973761e99536713c834f4bfee6f9d (patch)
tree5d70e1781e838f0fce79cdf1c91f39a3a55c2864 /Makefile.am.inc
parentf26b2505953c4d4814fbaf8d6dddf12e633f5f33 (diff)
downloadwireshark-7187abf1205973761e99536713c834f4bfee6f9d.tar.gz
Add $(AM_V_GEN) in a few more places.
svn path=/trunk/; revision=47434
Diffstat (limited to 'Makefile.am.inc')
-rw-r--r--Makefile.am.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am.inc b/Makefile.am.inc
index 499ceb80c0..df3007318d 100644
--- a/Makefile.am.inc
+++ b/Makefile.am.inc
@@ -24,12 +24,12 @@
AUTOMAKE_OPTIONS = -Wno-portability
.l.c:
- $(RUNLEX) "$(LEX)" -o$@ $<
+ $(AM_V_GEN)$(RUNLEX) "$(LEX)" -o$@ $<
.def.sym:
- $(AWK) '/^EXPORTS$$/ {next;}; ${def_sym_filter_symbols} /^[^;]/ { print $$1;}' < $< > $@
+ $(AM_V_GEN)$(AWK) '/^EXPORTS$$/ {next;}; ${def_sym_filter_symbols} /^[^;]/ { print $$1;}' < $< > $@
# abi-compliance-checker descriptor
INCLUDE_DIRS = $(subst -I,NEWLINE,$(filter -I%, $(CFLAGS) -I$(abs_top_srcdir) -I$(abs_srcdir)))
abi-descriptor.xml: ../abi-descriptor.template
- sed "s|INCLUDE_DIRS|$(INCLUDE_DIRS)|g;s/NEWLINE/\n /g" $< > $@
+ $(AM_V_GEN)sed "s|INCLUDE_DIRS|$(INCLUDE_DIRS)|g;s/NEWLINE/\n /g" $< > $@