summaryrefslogtreecommitdiffstats
path: root/libdha/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libdha/Makefile')
-rw-r--r--libdha/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdha/Makefile b/libdha/Makefile
index 7c8a62247f..e829f75ab6 100644
--- a/libdha/Makefile
+++ b/libdha/Makefile
@@ -9,7 +9,7 @@ SHORTNAME = libdha.dll
else
SHORTNAME = libdha.so
endif
-LIBNAME = libdha-$(VERSION).so
+LIBNAME = libdha.so.$(VERSION)
SRCS=libdha.c mtrr.c pci.c pci_names.c
OBJS=$(SRCS:.c=.o)
@@ -30,7 +30,7 @@ endif
$(CC) -c $(CFLAGS) -o $@ $<
$(LIBNAME): $(OBJS)
- $(CC) -shared -o $(LIBNAME) $(OBJS) $(LIBS)
+ $(CC) -shared -Wl,-soname -Wl,$(LIBNAME) -o $(LIBNAME) $(OBJS) $(LIBS)
ln -sf $(LIBNAME) $(SHORTNAME)
all: $(LIBNAME) $(SHORTNAME)