~fginther/geis/geis-2.2.9.1

« back to all changes in this revision

Viewing changes to libgeis/Makefile.am

  • Committer: Francis Ginther
  • Date: 2012-08-15 17:54:47 UTC
  • Revision ID: francis.ginther@canonical.com-20120815175447-5tc8slc57n8jqb8w
Rename project to simply geis

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# @file libutouch-geis/Makefile.am 
3
 
# @brief automake recipe for the uTouch GEIS v2.0 implementation
 
2
# @file libgeis/Makefile.am 
 
3
# @brief automake recipe for the GEIS v2.0 implementation
4
4
#
5
5
# Copyright 2010-2012 Canonical, Ltd.
6
6
#
7
 
# This file is part of the utouch-geis library. This library is free software;
 
7
# This file is part of the geis library. This library is free software;
8
8
# you can redistribute it and/or modify it under the terms of version 3 of
9
9
# the GNU Lesser General Public License as published by the Free Software
10
10
# Foundation.
18
18
# along with this program; if not, write to the Free Software Foundation, Inc.,
19
19
# 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20
20
#
21
 
version_script = $(srcdir)/libutouch-geis.ver
 
21
version_script = $(srcdir)/libgeis.ver
22
22
 
23
23
SUBDIRS = backend server
24
24
 
25
 
lib_LTLIBRARIES = libutouch-geis.la
 
25
lib_LTLIBRARIES = libgeis.la
26
26
 
27
27
nobase_include_HEADERS = geis/geisimpl.h
28
28
 
29
 
libutouch_geis_la_SOURCES = \
 
29
libgeis_la_SOURCES = \
30
30
        geis_atomic.h \
31
31
        geis_attr.h                 geis_attr.c \
32
32
        geis_backend.h              geis_backend.c \
51
51
        geis_touch.h                geis_touch.c \
52
52
        geis_v1.c                   geis.c
53
53
 
54
 
libutouch_geis_la_CPPFLAGS = \
 
54
libgeis_la_CPPFLAGS = \
55
55
        -fvisibility=hidden \
56
56
        -DGEIS_BUILDING_DSO=1 \
57
57
        -I$(top_srcdir) \
62
62
        $(DBUS_CFLAGS) \
63
63
        $(GRAIL_CFLAGS) 
64
64
 
65
 
libutouch_geis_la_LDFLAGS = \
 
65
libgeis_la_LDFLAGS = \
66
66
        -Wl,-z,defs -Wl,--as-needed \
67
67
        -version-info 4:0:3 \
68
68
        -Wl,--version-script=$(version_script) \
69
69
        -lm
70
70
 
71
 
libutouch_geis_la_LIBADD = \
72
 
        ${builddir}/backend/test_fixture/libutouch-geis-test-fixture.la \
73
 
        ${builddir}/backend/dbus/libutouch-geis-dbus-backend.la \
74
 
        ${builddir}/backend/grail/libutouch-geis-grail-backend.la \
75
 
        ${builddir}/server/libutouch-geis-dbus-server.la \
 
71
libgeis_la_LIBADD = \
 
72
        ${builddir}/backend/test_fixture/libgeis-test-fixture.la \
 
73
        ${builddir}/backend/dbus/libgeis-dbus-backend.la \
 
74
        ${builddir}/backend/grail/libgeis-grail-backend.la \
 
75
        ${builddir}/server/libgeis-dbus-server.la \
76
76
        $(top_builddir)/libs/geis-util/libgeis-util.la \
77
77
        $(top_builddir)/libs/geis-dbus/libgeis-dbus.la 
78
78