From dfcec6b4210253da74406c42a383f48bcc2a8f73 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Mon, 6 Nov 2006 11:26:11 -0800 Subject: [PATCH] Stop building and installing libsparse.so Since none of the header files get installed, making it difficult or impossible for anything external to use libsparse.so, and libsparse.so doesn't provide a stable API/ABI or a SONAME, and the backends all build with the static libsparse.a, stop building and installing libsparse.so. Signed-off-by: Josh Triplett --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 61c7953d..2dcd5143 100644 --- a/Makefile +++ b/Makefile @@ -38,10 +38,10 @@ SLIB_FILE= libsparse.so LIBS=$(LIB_FILE) -all: $(PROGRAMS) $(SLIB_FILE) +all: $(PROGRAMS) -install: $(INST_PROGRAMS) $(SLIB_FILE) bin-dir - for f in $(INST_PROGRAMS) $(SLIB_FILE); do \ +install: $(INST_PROGRAMS) bin-dir + for f in $(INST_PROGRAMS); do \ install -v $$f $(BINDIR)/$$f || exit 1; \ done -- 2.11.4.GIT