mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
Fix target dependencies for multiple jobs
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
This commit is contained in:
parent
266ab595a2
commit
07378d0d14
1 changed files with 6 additions and 3 deletions
|
@ -18,9 +18,12 @@ libnotmuch_cxx_srcs = \
|
||||||
$(dir)/thread.cc
|
$(dir)/thread.cc
|
||||||
|
|
||||||
libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o)
|
libnotmuch_modules = $(libnotmuch_c_srcs:.c=.o) $(libnotmuch_cxx_srcs:.cc=.o)
|
||||||
$(dir)/libnotmuch.so : $(libnotmuch_modules)
|
|
||||||
|
$(dir)/$(SONAME) : $(libnotmuch_modules)
|
||||||
$(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@
|
$(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -shared -Wl,-soname=$(SONAME) -o $@
|
||||||
ln -sf $(SONAME) $@
|
|
||||||
|
$(dir)/libnotmuch.so: $(dir)/$(SONAME)
|
||||||
|
ln -fs $(SONAME) $@
|
||||||
|
|
||||||
SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)
|
SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)
|
||||||
CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/libnotmuch.so *.so
|
CLEAN := $(CLEAN) $(libnotmuch_modules) $(dir)/$(SONAME) $(dir)/libnotmuch.so *.so
|
||||||
|
|
Loading…
Reference in a new issue