diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-09-29 09:45:46 +0100 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-09-29 09:45:46 +0100 |
commit | a14e0e30fbd019d8acdaea3c618f7025a9daf6dc (patch) | |
tree | 5b9f9ee4e280e085fdee415676cc7bd5be078359 /data | |
parent | 67f4176af34388de675ab5e4fb4e3b67d0152c23 (diff) |
Move from shave to automake 1.11's silent rules.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index ce3907d4..00093459 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,5 +1,3 @@ -include $(top_srcdir)/tools/shave.mk - EXTRA_DIST = gabble.service.in managerdir = $(datadir)/telepathy/managers @@ -13,10 +11,10 @@ service_DATA = org.freedesktop.Telepathy.ConnectionManager.gabble.service # non-archaic tarballs) org.freedesktop.Telepathy.ConnectionManager.gabble.service: gabble.service.in \ Makefile - $(QUIET_GEN)sed -e "s|[@]libexecdir[@]|$(libexecdir)|" $< > $@ + $(AM_V_GEN)sed -e "s|[@]libexecdir[@]|$(libexecdir)|" $< > $@ CLEANFILES = $(service_DATA) $(manager_DATA) $(manager_DATA): ../src/connection-manager.c ../src/write-mgr-file.c ../src/connection.h - $(MAKE) -C ../src write-mgr-file - $(QUIET_GEN)../src/write-mgr-file > $@ + @$(MAKE) -C ../src write-mgr-file + $(AM_V_GEN)../src/write-mgr-file > $@ |