summaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parent66e5de9eaefc33ffa6af3617f9ec7a50f10af50d (diff)
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>
Diffstat (limited to 'Makefile')
-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
2PATCHLEVEL = 0 2PATCHLEVEL = 0
3EXTRAVERSION = beta1 3EXTRAVERSION = beta1
4 4
5LIBRARY = mtdev.so 5LIBRARY = libmtdev.so
6MODULES = src 6MODULES = src
7 7
8o_src = match iobuf caps core 8o_src = match iobuf caps core
@@ -20,7 +20,7 @@ TOBJ = $(addprefix obj/,$(addsuffix .o,$(TARGETS)))
20OBJS = $(addprefix obj/,$(OBJECTS)) 20OBJS = $(addprefix obj/,$(OBJECTS))
21LIBS = 21LIBS =
22 22
23DLIB = usr/lib/xorg/modules 23DLIB = usr/lib
24 24
25INCLUDE = -Iinclude 25INCLUDE = -Iinclude
26OPTS = -O3 -fPIC 26OPTS = -O3 -fPIC