diff options
| author | Josh Triplett <josh@freedesktop.org> | 2006-11-06 11:26:11 -0800 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2006-11-06 11:26:11 -0800 |
| commit | dfcec6b4210253da74406c42a383f48bcc2a8f73 (patch) | |
| tree | 116850383fd39bf881fa07d7602a8f03c2da266c | |
| parent | 619a407197089ab6110e4fd3a857df04005f2a34 (diff) | |
| download | sparse-dev-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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
