From 266ab595a2fcbc8467eae843557597835269a554 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Fri, 12 Mar 2010 14:47:34 +0100 Subject: Build and link against notmuch shared library, install notmuch.h Signed-off-by: Ingmar Vanhassel --- lib/Makefile.local | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lib/Makefile.local') diff --git a/lib/Makefile.local b/lib/Makefile.local index 495b27e0..f8489468 100644 --- a/lib/Makefile.local +++ b/lib/Makefile.local @@ -1,5 +1,5 @@ dir := lib -extra_cflags += -I$(dir) +extra_cflags += -I$(dir) -fPIC libnotmuch_c_srcs = \ $(dir)/libsha1.c \ @@ -18,8 +18,9 @@ libnotmuch_cxx_srcs = \ $(dir)/thread.cc libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o) -$(dir)/notmuch.a: $(libnotmuch_modules) - $(call quiet,AR) rcs $@ $^ +$(dir)/libnotmuch.so : $(libnotmuch_modules) + $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@ + ln -sf $(SONAME) $@ SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs) -CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/notmuch.a +CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/libnotmuch.so *.so -- cgit v1.2.3