X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2FMakefile.local;h=5f493ee980d16f11a62f71781bf2580627d552ab;hp=0fd843a14296e74700ee8a6351c2431bd2f98368;hb=d3884a5984c26159169d58b9cc8fb2a137fb48a2;hpb=c0961e6a827a8abcf1532a7671f09048e390648c diff --git a/lib/Makefile.local b/lib/Makefile.local index 0fd843a1..5f493ee9 100644 --- a/lib/Makefile.local +++ b/lib/Makefile.local @@ -1,3 +1,5 @@ +# -*- makefile -*- + # The major version of the library interface. This will control the soname. # As such, this number must be incremented for any incompatible change to # the library interface, (such as the deletion of an API or a major @@ -38,7 +40,10 @@ libnotmuch_cxx_srcs = \ libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o) -$(dir)/$(LIBNAME) : $(libnotmuch_modules) +$(dir)/libnotmuch.a: $(libnotmuch_modules) + $(call quiet,AR) rcs $@ $^ + +$(dir)/$(LIBNAME): $(libnotmuch_modules) $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@ $(dir)/$(SONAME): $(dir)/$(LIBNAME) @@ -54,7 +59,8 @@ install-$(dir): $(call quiet_install_data, $(dir)/$(LIBNAME) $(DESTDIR)$(libdir)/) $(call quiet_symlink, $(LIBNAME) $(DESTDIR)$(libdir)/$(SONAME)) $(call quiet_symlink, $(LIBNAME) $(DESTDIR)$(libdir)/$(LINKER_NAME)) + $(call quiet_mkdir, $(DESTDIR)$(prefix)/include/) $(call quiet_install_data, $(dir)/notmuch.h $(DESTDIR)$(prefix)/include/) SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs) -CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/$(LINKER_NAME) $(dir)$(LIBNAME) +CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/$(LINKER_NAME) $(dir)$(LIBNAME) libnotmuch.a