summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2006-11-06 11:26:11 -0800
committerJosh Triplett <josh@freedesktop.org>2006-11-06 11:26:11 -0800
commitdfcec6b4210253da74406c42a383f48bcc2a8f73 (patch)
tree116850383fd39bf881fa07d7602a8f03c2da266c
parent619a407197089ab6110e4fd3a857df04005f2a34 (diff)
downloadsparse-dfcec6b4210253da74406c42a383f48bcc2a8f73.tar.gz
Stop building and installing libsparse.so0.1
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 <josh@freedesktop.org>
-rw-r--r--Makefile6
1 files 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