~ubuntu-branches/ubuntu/quantal/ibus/quantal

« back to all changes in this revision

Viewing changes to src/tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Barry Warsaw
  • Date: 2011-08-11 17:00:57 UTC
  • mfrom: (6.2.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110811170057-6dmbfs4s3cchzl7x
Tags: 1.3.99.20110419-1ubuntu1
* Merge with Debian unstable.  Remaining Ubuntu changes:
  - Indicator support:
    + Add 05_appindicator.patch: Use an indicator rather than a notification
      icon.
    + debian/control: Recommend python-appindicator.
  - debian/control: Install im-switch instead of im-config by default.
  - debian/README.source: Removed, it was outdated and no longer correct
  - debian/patches/01_ubuntu_desktop: Fix "Desktop entry needs the
    X-Ubuntu-Gettext-Domain key"  (LP: #457632)
  - debian/patches/02_title_update.patch: Rename "IBus Preferences" to
    "Keyboard Input Methods"
  - debian/patches/06_locale_parser.patch: Cherry-picked from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:set noet ts=4:
 
2
#
 
3
# ibus - The Input Bus
 
4
#
 
5
# Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com>
 
6
# Copyright (c) 2007-2010 Red Hat, Inc.
 
7
#
 
8
# This library is free software; you can redistribute it and/or
 
9
# modify it under the terms of the GNU Lesser General Public
 
10
# License as published by the Free Software Foundation; either
 
11
# version 2 of the License, or (at your option) any later version.
 
12
#
 
13
# This library is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU Lesser General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Lesser General Public
 
19
# License along with this program; if not, write to the
 
20
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 
21
# Boston, MA  02111-1307  USA
 
22
 
 
23
NULL =
 
24
 
 
25
INCLUDES =              \
 
26
        -g                  \
 
27
        @GLIB2_CFLAGS@      \
 
28
        @GIO2_CFLAGS@       \
 
29
        -I$(top_srcdir)/src \
 
30
        $(NULL)
 
31
 
 
32
prog_ldadd =                    \
 
33
        @GLIB2_LIBS@        \
 
34
        @GIO2_LIBS@                     \
 
35
        $(top_builddir)/src/libibus-@IBUS_API_VERSION@.la       \
 
36
        $(NULL)
 
37
 
 
38
noinst_PROGRAMS = $(TESTS)
 
39
TESTS =               \
 
40
        ibus-bus          \
 
41
        ibus-inputcontext \
 
42
        ibus-inputcontext-create \
 
43
        ibus-keynames     \
 
44
        ibus-serializable \
 
45
        ibus-share        \
 
46
        ibus-factory      \
 
47
        ibus-configservice\
 
48
        $(NULL)
 
49
 
 
50
ibus_bus_SOURCES = ibus-bus.c
 
51
ibus_bus_LDADD = $(prog_ldadd)
 
52
 
 
53
ibus_inputcontext_SOURCES = ibus-inputcontext.c
 
54
ibus_inputcontext_LDADD = $(prog_ldadd)
 
55
 
 
56
ibus_inputcontext_create_SOURCES = ibus-inputcontext-create.c
 
57
ibus_inputcontext_create_LDADD = $(prog_ldadd)
 
58
 
 
59
ibus_keynames_SOURCES = ibus-keynames.c
 
60
ibus_keynames_LDADD = $(prog_ldadd)
 
61
 
 
62
ibus_serializable_SOURCES = ibus-serializable.c
 
63
ibus_serializable_LDADD = $(prog_ldadd)
 
64
 
 
65
ibus_share_SOURCES = ibus-share.c
 
66
ibus_share_CFLAGS = @DBUS_CFLAGS@
 
67
ibus_share_LDADD = $(prog_ldadd) @DBUS_LIBS@
 
68
 
 
69
ibus_factory_SOURCES = ibus-factory.c
 
70
ibus_factory_LDADD = $(prog_ldadd)
 
71
 
 
72
ibus_configservice_SOURCES = ibus-configservice.c
 
73
ibus_configservice_LDADD = $(prog_ldadd)
 
74
 
 
75
-include $(top_srcdir)/git.mk