summaryrefslogtreecommitdiff
blob: a89316b54f119b84ae91eb913fe28d7b7fb71020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--- sparse-0.3/Makefile
+++ sparse-0.3/Makefile
@@ -16,9 +16,9 @@
 CFLAGS += -DDEBUG
 
 DESTDIR=
-PREFIX=$(HOME)
-BINDIR=$(PREFIX)/bin
-LIBDIR=$(PREFIX)/lib
-INCLUDEDIR=$(PREFIX)/include
+PREFIX=
+BINDIR=$(PREFIX)/usr/bin
+LIBDIR=$(PREFIX)/usr/lib
+INCLUDEDIR=$(PREFIX)/usr/include
 PKGCONFIGDIR=$(LIBDIR)/pkgconfig
 
@@ -38,7 +38,7 @@
 LIB_FILE= libsparse.a
 SLIB_FILE= libsparse.so
 
-LIBS=$(LIB_FILE)
+LIBS=$(SLIB_FILE)
 
 all: $(PROGRAMS) sparse.pc
 
@@ -101,7 +101,7 @@
 	$(AR) rcs $@ $(LIB_OBJS)
 
 $(SLIB_FILE): $(LIB_OBJS)
-	$(CC) -shared -o $@ $(LIB_OBJS)
+	$(CC) $(LDFLAGS) -Wl,-soname,$@ -shared -o $@ $(LIB_OBJS)
 
 evaluate.o: $(LIB_H)
 expression.o: $(LIB_H)