build: Make some more rules silent if requested

This commit is contained in:
Sebastian Dröge 2010-02-26 16:40:25 +01:00
parent 1055c1a073
commit 678f7ddb16
3 changed files with 9 additions and 5 deletions

View file

@ -47,8 +47,8 @@ CLEANFILES = cogorc.c cogorc.h
EXTRA_DIST=cog.orc
cogorc.c: $(srcdir)/cog.orc
$(ORCC) --implementation -o cogorc.c $(srcdir)/cog.orc
$(AM_V_GEN)$(ORCC) --implementation -o cogorc.c $(srcdir)/cog.orc
cogorc.h: $(srcdir)/cog.orc
$(ORCC) --header -o cogorc.h $(srcdir)/cog.orc
$(AM_V_GEN)$(ORCC) --header -o cogorc.h $(srcdir)/cog.orc

View file

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

View file

@ -45,7 +45,7 @@ if USE_COG
CLEANFILES = cog-test.c
cog-test.c: $(srcdir)/../../ext/cog/cog.orc
$(ORCC) --test -o cog-test.c $(srcdir)/../../ext/cog/cog.orc
$(AM_V_GEN)$(ORCC) --test -o cog-test.c $(srcdir)/../../ext/cog/cog.orc
nodist_cog_test_SOURCES = cog-test.c
cog_test_CFLAGS = $(COG_CFLAGS)