aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
commit33d5cc415ec31d14f126dbb19f8538b04d2c1b49 (patch)
tree85fee2d4742489076a1821600c9f06cd79034314 /lib/Makefile.local
parente7131a5983c4caff45c97e69b979002f0c1ff381 (diff)
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).
Diffstat (limited to 'lib/Makefile.local')
-rw-r--r--lib/Makefile.local10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Makefile.local b/lib/Makefile.local
index b24a3571..0463c93a 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