summaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-12-30 17:58:01 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-12-30 17:58:01 +0100
commitf0aba58c91933a4702a7cc74f7daf4192868f570 (patch)
tree648c41fe09adb72344769dd6242638cbad835482 /src/Makefile.am
Initial load of utouch-framev1.0.0
Compiles and runs on mtdev. ABI proof. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..aa11733
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,21 @@
1lib_LTLIBRARIES = libutouch-frame.la
2
3libutouch_frame_la_LDFLAGS = \
4 -version-info @LIB_VERSION@ \
5 -lm \
6 $(EVEMU_LIBS)
7 $(MTDEV_LIBS)
8
9libutouch_frame_la_SOURCES = \
10 frame-impl.h \
11 frame.c \
12 frame-mtdev.c
13
14AM_CFLAGS = $(CWARNFLAGS)
15
16INCLUDES = -I$(top_srcdir)/include/
17
18libutouch_frameincludedir = $(includedir)/utouch
19libutouch_frameinclude_HEADERS = \
20 $(top_srcdir)/include/utouch/frame.h \
21 $(top_srcdir)/include/utouch/frame-mtdev.h