summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-06-17 18:18:22 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-06-17 18:18:22 +0200
commit6a8c74eb36ab93702c257f425832272cccb0cde8 (patch)
tree03cc67d81244cea66d1ae0fd268e414271a72b95
parent66e5de9eaefc33ffa6af3617f9ec7a50f10af50d (diff)
downloadmtdev-git-6a8c74eb36ab93702c257f425832272cccb0cde8.tar.gz
Name dynamic library correctly
To simplify dynamic library usage, name the libary correctly and put it in /usr/lib/. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c778193..0d81f7a 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ VERSION = 1
PATCHLEVEL = 0
EXTRAVERSION = beta1
-LIBRARY = mtdev.so
+LIBRARY = libmtdev.so
MODULES = src
o_src = match iobuf caps core
@@ -20,7 +20,7 @@ TOBJ = $(addprefix obj/,$(addsuffix .o,$(TARGETS)))
OBJS = $(addprefix obj/,$(OBJECTS))
LIBS =
-DLIB = usr/lib/xorg/modules
+DLIB = usr/lib
INCLUDE = -Iinclude
OPTS = -O3 -fPIC