blob: da1a46e8ed16ddd5b9006496103db302084ac68f (
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
35
36
37
38
39
|
lib_LTLIBRARIES = libutouch-grail.la
libutouch_grail_la_LDFLAGS = \
-version-info @LIB_VERSION@ \
-export-symbols ../utouch-grail.sym \
-lm \
$(MTDEV_LIBS) \
$(EVEMU_LIBS) \
$(FRAME_LIBS)
libutouch_grail_la_SOURCES = \
evbuf.h \
gebuf.h \
grailbuf.h \
grail-bits.c \
grail-inserter.c \
grail-inserter.h \
grail-gestures.c \
grail-gestures.h \
gestures-touch.c \
gestures-drag.c \
gestures-pinch.c \
gestures-rotate.c \
gestures-tapping.c \
grail-recognizer.c \
grail-recognizer.h \
grail-event.c \
grail-impl.h \
grail-api.c
AM_CFLAGS = $(CWARNFLAGS)
INCLUDES = -I$(top_srcdir)/include/
libutouch_grailincludedir = $(includedir)
libutouch_grailinclude_HEADERS = \
$(top_srcdir)/include/grail-bits.h \
$(top_srcdir)/include/grail-types.h \
$(top_srcdir)/include/grail.h
|