diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-02-26 16:35:17 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-03-09 21:03:18 +0000 |
commit | ca6566ea6619477176da490ecb90b777fd200285 (patch) | |
tree | c2c04f1841db823bb01478631d553d12bdb8bc10 /pkgconfig | |
parent | 3e2e82afef8d70dd62a746c5f5107fea6f20e950 (diff) |
build: Make some more rules silent if requested
Diffstat (limited to 'pkgconfig')
-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 1ee78c991..1d267983b 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -7,11 +7,15 @@ pcverfiles_uninstalled = \ ### all-local: $(pcverfiles) $(pcverfiles_uninstalled) all-local: $(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)cp $< $@ %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc - cp $< $@ + $(cp_verbose)cp $< $@ # do not install for now # pkgconfigdir = $(libdir)/pkgconfig |