From 33d5cc415ec31d14f126dbb19f8538b04d2c1b49 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 31 Mar 2010 23:54:21 -0700 Subject: Makefiles: Make the install rules quiet like the compilation rules. The output from make is looking better all the time, (though the columns still aren't lined up). --- lib/Makefile.local | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/Makefile.local b/lib/Makefile.local index b24a357..0463c93 100644 --- a/lib/Makefile.local +++ b/lib/Makefile.local @@ -25,15 +25,15 @@ $(dir)/$(SONAME) : $(libnotmuch_modules) $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@ $(dir)/libnotmuch.so: $(dir)/$(SONAME) - ln -fs $(SONAME) $@ + $(call quiet_symlink, $(SONAME) $@) install: install-$(dir) install-$(dir): - install -d $(DESTDIR)$(libdir)/ - install $(dir)/$(SONAME) $(DESTDIR)$(libdir)/ - install $(dir)/notmuch.h $(DESTDIR)$(prefix)/include/ - ln -sf $(SONAME) $(DESTDIR)$(libdir)/libnotmuch.so + $(call quiet_mkdir, $(DESTDIR)$(libdir)/) + $(call quiet_install_data, $(dir)/$(SONAME) $(DESTDIR)$(libdir)/) + $(call quiet_install_data, $(dir)/notmuch.h $(DESTDIR)$(prefix)/include/) + $(call quiet_symlink, $(SONAME) $(DESTDIR)$(libdir)/libnotmuch.so) SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs) CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/libnotmuch.so *.so -- cgit v1.2.3