summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-12-30 14:26:55 +0100
committerHenrik Rydberg <rydberg@euromail.se>2011-01-02 09:17:00 +0100
commit4b0f0873f91f7f37106fa39c6b8b5fa74f6a3dcc (patch)
treeba572d2162b9dc0133ab1877d6bb95b6e012437c /Makefile
parent4623dc6c963b79d2cc6cfa4530b90f039ef3b6cb (diff)
Use utouch-frame instead of grail
With the introduction of utouch-frame, the dependence of this package may be simplified. This patch removes the dependency on grail, and instead uses evemu and frame, which are targeting touch usage only. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d000ae..b70fe48 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ TARG = $(addprefix bin/,$(TARGETS))
5TOBJ = $(addprefix obj/,$(addsuffix .o,$(SOURCES))) 5TOBJ = $(addprefix obj/,$(addsuffix .o,$(SOURCES)))
6 6
7INCLUDE = 7INCLUDE =
8LIBS = -lX11 -lutouch-grail -lmtdev 8LIBS = -lX11 -lutouch-frame -lutouch-evemu -lmtdev -lm
9 9
10COMP = gcc -O3 $(INCLUDE) -c $< -o $@ 10COMP = gcc -O3 $(INCLUDE) -c $< -o $@
11LINK = gcc $< $(LIBS) -o $@ 11LINK = gcc $< $(LIBS) -o $@