~oif-team/geis/utopic

« back to all changes in this revision

Viewing changes to libs/geis-dbus/Makefile.am

  • Committer: Stephen M. Webb
  • Date: 2011-08-18 22:07:20 UTC
  • mto: (158.1.39 client-arch)
  • mto: This revision was merged to the branch mainline in revision 166.
  • Revision ID: stephen.webb@canonical.com-20110818220720-v443m85qsxf41e87
Introduced a skeletal geis-dbus server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# @file libs/geis-dbus/Makefile.am
 
3
# @brief automake recipe for the uTouch GEIS v2.0 DBus helper library
 
4
#
 
5
# Copyright 2011 Canonical, Ltd.
 
6
#
 
7
# This file is part of the utouch-geis library. This library is free software;
 
8
# you can redistribute it and/or modify it under the terms of the GNU Lesser
 
9
# General Public License as published by the Free Software Foundation; either
 
10
# version 3 of the License, or (at your option) any later version.
 
11
#
 
12
# This library is distributed in the hope that it will be useful, but WITHOUT
 
13
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
14
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
 
15
# details.
 
16
#
 
17
# You should have received a copy of the GNU Lesser General Public License
 
18
# along with this program; if not, write to the Free Software Foundation, Inc.,
 
19
# 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
20
#
 
21
 
 
22
noinst_LTLIBRARIES = libgeis-dbus.la
 
23
 
 
24
dist_libgeis_dbus_la_SOURCES = \
 
25
        geis_dbus.h \
 
26
        geis_dbus_dispatcher.h geis_dbus_dispatcher.c
 
27
 
 
28
libgeis_dbus_la_CPPFLAGS = \
 
29
        -I$(top_srcdir)/libutouch-geis \
 
30
        $(DBUS_CFLAGS)
 
31
 
 
32
libgeis_dbus_la_LIBADD = \
 
33
        $(DBUS_LIBS)
 
34
 
 
35