summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: c34434218a1498951a2f73daf347832e0da81d00 (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
40
lib_LTLIBRARIES = libutouch-grail.la

libutouch_grail_la_LDFLAGS = \
	-version-info @LIB_VERSION@ \
	-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

# These are flags required to properly set up
# the build. -fvisibility requires GCC > 4 (or clang)
AM_CFLAGS = $(CWARNFLAGS) -DBUILDING_GRAIL -fvisibility=hidden

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