~ubuntu-branches/ubuntu/raring/frame/raring

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Francis Ginther
  • Date: 2012-07-27 10:36:59 UTC
  • Revision ID: package-import@ubuntu.com-20120727103659-lzgo2n21df0g4udi
Tags: upstream-2.2.4
ImportĀ upstreamĀ versionĀ 2.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
version_script = $(srcdir)/libframe.ver
 
2
 
 
3
lib_LTLIBRARIES = libframe.la
 
4
 
 
5
libframe_la_LDFLAGS = \
 
6
        -version-info @LIB_VERSION@ \
 
7
        -Wl,-z,defs -Wl,--as-needed \
 
8
        -Wl,--version-script=$(version_script)
 
9
 
 
10
libframe_la_LIBADD = \
 
11
        -lm \
 
12
        $(EVEMU_LIBS) \
 
13
        $(MTDEV_LIBS) \
 
14
        $(COVERAGE_LIBS) \
 
15
        $(XINPUT_LIBS) \
 
16
        $(CXX_LIBS)
 
17
 
 
18
AM_CPPFLAGS = \
 
19
        -I$(top_srcdir)/include/ \
 
20
        -I$(top_srcdir)/src \
 
21
        $(WARNING_CPPFLAGS) \
 
22
        -DBUILDING_FRAME
 
23
 
 
24
AM_CFLAGS = $(VISIBILITY_CFLAGS) $(COVERAGE_CFLAGS)
 
25
 
 
26
AM_CXXFLAGS = \
 
27
        $(CXX11_CXXFLAGS) \
 
28
        $(VISIBILITY_CXXFLAGS) \
 
29
        $(COVERAGE_CXXFLAGS) \
 
30
        $(XINPUT_CFLAGS)
 
31
 
 
32
libframeincludedir = $(includedir)/oif
 
33
libframeinclude_HEADERS = \
 
34
        $(top_srcdir)/include/oif/frame.h \
 
35
        $(top_srcdir)/include/oif/frame_internal.h \
 
36
        $(top_srcdir)/include/oif/frame_x11.h
 
37
 
 
38
libframe_la_SOURCES = \
 
39
        axis.h \
 
40
        axis.cpp \
 
41
        device.h \
 
42
        device.cpp \
 
43
        event.h \
 
44
        event.cpp \
 
45
        frame.h \
 
46
        frame.cpp \
 
47
        handle.h \
 
48
        handle.cpp \
 
49
        property.h \
 
50
        touch.h \
 
51
        touch.cpp \
 
52
        typedefs.h \
 
53
        value.h \
 
54
        value.cpp \
 
55
        window.h \
 
56
        window.cpp \
 
57
        x11/device_x11.h \
 
58
        x11/device_x11.cpp \
 
59
        x11/frame_x11.cpp \
 
60
        x11/handle_x11.h \
 
61
        x11/handle_x11.cpp \
 
62
        x11/window_x11.h \
 
63
        x11/window_x11.cpp
 
64
 
 
65
EXTRA_DIST = $(version_script)