mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
build: Make some more rules silent if requested
This commit is contained in:
parent
daab7d1c40
commit
60e9fa42a1
3 changed files with 8 additions and 4 deletions
|
@ -172,7 +172,7 @@ endif
|
|||
|
||||
|
||||
.defs.c:
|
||||
($(PYTHON) $(top_srcdir)/codegen/codegen.py \
|
||||
$(AM_V_GEN)($(PYTHON) $(top_srcdir)/codegen/codegen.py \
|
||||
--load-types $(srcdir)/arg-types.py \
|
||||
--register $(srcdir)/gst-types.defs \
|
||||
--override $(srcdir)/$*.override \
|
||||
|
|
|
@ -7,11 +7,15 @@ 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
|
||||
$(pcfiles): %-@GST_MAJORMINOR@.pc: %.pc
|
||||
cp $< $@
|
||||
$(cp_verbose_0)cp $< $@
|
||||
$(pcfiles_uninstalled): %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
||||
cp $< $@
|
||||
$(cp_verbose_0)cp $< $@
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = $(pcfiles)
|
||||
|
|
|
@ -16,7 +16,7 @@ testhelper_la_SOURCES = \
|
|||
|
||||
# This is a hack to make sure a shared library is built
|
||||
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 = \
|
||||
test_adapter.py \
|
||||
|
|
Loading…
Reference in a new issue