lib: Fix "make install"

This has been broken since the addition of the test sub-directory to our
non-recursive make system.
This commit is contained in:
Carl Worth 2010-09-21 09:09:01 -07:00
parent 9c7fd320c9
commit 8071c5cd64

View file

@ -76,13 +76,17 @@ $(dir)/$(LINKER_NAME): $(dir)/$(SONAME)
install: install-$(dir)
# The (often-reused) $dir works fine within targets/pre-requisites,
# but cannot be used reliably within commands, so copy its value to a
# variable that is not reused.
lib := $(dir)
install-$(dir):
mkdir -p $(DESTDIR)$(libdir)/
install -m0644 $(dir)/$(LIBNAME) $(DESTDIR)$(libdir)/
install -m0644 $(lib)/$(LIBNAME) $(DESTDIR)$(libdir)/
ln -sf $(LIBNAME) $(DESTDIR)$(libdir)/$(SONAME)
ln -sf $(LIBNAME) $(DESTDIR)$(libdir)/$(LINKER_NAME)
mkdir -p $(DESTDIR)$(includedir)
install -m0644 $(dir)/notmuch.h $(DESTDIR)$(includedir)/
install -m0644 $(lib)/notmuch.h $(DESTDIR)$(includedir)/
$(LIBRARY_INSTALL_POST_COMMAND)
SRCS := $(SRCS) $(libnotmuch_c_srcs) $(libnotmuch_cxx_srcs)