build: Make some more rules silent if requested

This commit is contained in:
Sebastian Dröge 2010-02-26 16:37:50 +01:00
parent daab7d1c40
commit 60e9fa42a1
3 changed files with 8 additions and 4 deletions

View file

@ -172,7 +172,7 @@ endif
.defs.c: .defs.c:
($(PYTHON) $(top_srcdir)/codegen/codegen.py \ $(AM_V_GEN)($(PYTHON) $(top_srcdir)/codegen/codegen.py \
--load-types $(srcdir)/arg-types.py \ --load-types $(srcdir)/arg-types.py \
--register $(srcdir)/gst-types.defs \ --register $(srcdir)/gst-types.defs \
--override $(srcdir)/$*.override \ --override $(srcdir)/$*.override \

View file

@ -7,11 +7,15 @@ pcfiles_uninstalled = \
all-local: $(pcfiles) $(pcfiles_uninstalled) all-local: $(pcfiles) $(pcfiles_uninstalled)
cp_verbose = $(cp_verbose_$(V))
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
cp_verbose_0 = @echo " CP $@";
### how to generate pc files ### how to generate pc files
$(pcfiles): %-@GST_MAJORMINOR@.pc: %.pc $(pcfiles): %-@GST_MAJORMINOR@.pc: %.pc
cp $< $@ $(cp_verbose_0)cp $< $@
$(pcfiles_uninstalled): %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc $(pcfiles_uninstalled): %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
cp $< $@ $(cp_verbose_0)cp $< $@
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pcfiles) pkgconfig_DATA = $(pcfiles)

View file

@ -16,7 +16,7 @@ testhelper_la_SOURCES = \
# This is a hack to make sure a shared library is built # This is a hack to make sure a shared library is built
testhelper.la: $(testhelper_la_OBJECTS) $(testhelper_la_DEPENDENCIES) testhelper.la: $(testhelper_la_OBJECTS) $(testhelper_la_DEPENDENCIES)
$(LINK) -rpath $(pkgpyexecdir) $(testhelper_la_LDFLAGS) $(testhelper_la_OBJECTS) $(testhelper_la_LIBADD) $(LIBS) $(AM_V_CCLD)$(LINK) -rpath $(pkgpyexecdir) $(testhelper_la_LDFLAGS) $(testhelper_la_OBJECTS) $(testhelper_la_LIBADD) $(LIBS)
tests = \ tests = \
test_adapter.py \ test_adapter.py \