blob: c3fd3b23ea6fd24bd3a87e2b3b610be59407405b (
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
|
lib_LTLIBRARIES = libutouch-frame.la
libutouch_frame_la_LDFLAGS = \
-version-info @LIB_VERSION@ \
-lm \
$(EVEMU_LIBS) \
$(MTDEV_LIBS)
libutouch_frame_la_SOURCES = \
frame-impl.h \
frame.c \
frame-mtdev.c
AM_CFLAGS = $(CWARNFLAGS)
INCLUDES = -I$(top_srcdir)/include/
libutouch_frameincludedir = $(includedir)/utouch
libutouch_frameinclude_HEADERS = \
$(top_srcdir)/include/utouch/frame.h \
$(top_srcdir)/include/utouch/frame-mtdev.h
if HAVE_XI
libutouch_frame_la_LDFLAGS += $(XINPUT_LIBS) $(X11_LIBS)
libutouch_frame_la_SOURCES += frame-xi2.c
libutouch_frameinclude_HEADERS += $(top_srcdir)/include/utouch/frame-xi2.h
endif
|