~ubuntu-branches/ubuntu/precise/gnome-bluetooth/precise-updates

« back to all changes in this revision

Viewing changes to lib/plugins/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-05 13:34:38 UTC
  • mto: (2.2.1 experimental) (1.4.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20090805133438-791u4ywsppj71d9y
Tags: upstream-2.27.8
ImportĀ upstreamĀ versionĀ 2.27.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugindir = $(libdir)/gnome-bluetooth/plugins/
 
2
 
 
3
INCLUDES =                                      \
 
4
        -DDATADIR=\"$(datadir)\"                \
 
5
        -DICONDIR=\"$(icondir)\"                \
 
6
        -DLOCALEDIR="\"$(datadir)/locale\""     \
 
7
        -I$(top_srcdir)/lib                     \
 
8
        -I$(top_builddir)                       \
 
9
        $(PLUGINS_CFLAGS)                       \
 
10
        $(LIBGNOMEBT_CFLAGS)                    \
 
11
        $(GEOCLUE_CFLAGS)                       \
 
12
        $(WARN_CFLAGS)
 
13
 
 
14
plugin_LTLIBRARIES = libgbtgeoclue.la
 
15
 
 
16
libgbtgeoclue_la_SOURCES = geoclue.c
 
17
libgbtgeoclue_la_LDFLAGS = -module -avoid-version
 
18
libgbtgeoclue_la_LIBADD = $(PLUGINS_LIBS) $(GEOCLUE_LIBS)
 
19
 
 
20
testplugin_LTLIBRARIES = libgbttest.la
 
21
 
 
22
testplugindir = $(libdir)/gnome-bluetooth/plugins/
 
23
 
 
24
libgbttest_la_SOURCES = test.c
 
25
libgbttest_la_LDFLAGS = -module -avoid-version
 
26
libgbttest_la_LIBADD = $(PLUGINS_LIBS)
 
27
 
 
28
# override to _not_ install the test plugins
 
29
install-testpluginLTLIBRARIES:
 
30