diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-02-26 16:40:25 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-03-09 21:05:50 +0000 |
commit | 678f7ddb16e99deb1fb08913302dfa82c118ab9f (patch) | |
tree | cace9db7db59a004cf81cfd328b7b3fd86e29e17 /pkgconfig/Makefile.am | |
parent | 1055c1a073676615f332d988f813305875f2d1bd (diff) | |
download | gstreamer-plugins-bad-678f7ddb16e99deb1fb08913302dfa82c118ab9f.tar.gz |
build: Make some more rules silent if requested
Diffstat (limited to 'pkgconfig/Makefile.am')
-rw-r--r-- | pkgconfig/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 3acb3f8e9..38cd20bb7 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -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) |