~ubuntu-branches/ubuntu/oneiric/rhythmbox/oneiric

« back to all changes in this revision

Viewing changes to plugins/notification/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rico Tzschichholz
  • Date: 2011-07-29 16:41:38 UTC
  • mto: This revision was merged to the branch mainline in revision 191.
  • Revision ID: james.westby@ubuntu.com-20110729164138-wwicy8nqalm18ck7
Tags: upstream-2.90.1~20110802
ImportĀ upstreamĀ versionĀ 2.90.1~20110802

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
plugindir = $(PLUGINDIR)/notification
 
4
plugin_LTLIBRARIES = libnotification.la
 
5
 
 
6
libnotification_la_SOURCES = \
 
7
        rb-notification-plugin.c
 
8
        $(NULL)
 
9
 
 
10
libnotification_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
 
11
libnotification_la_LIBTOOLFLAGS = --tag=disable-static
 
12
 
 
13
libnotification_la_LIBADD =                             \
 
14
        $(top_builddir)/shell/librhythmbox-core.la      \
 
15
        $(NOTIFY_LIBS)                                  \
 
16
        $(NULL)
 
17
 
 
18
INCLUDES =                                              \
 
19
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
20
        -DG_LOG_DOMAIN=\"Rhythmbox\"                    \
 
21
        -I$(top_srcdir)                                 \
 
22
        -I$(top_srcdir)/lib                             \
 
23
        -I$(top_srcdir)/rhythmdb                        \
 
24
        -I$(top_srcdir)/widgets                         \
 
25
        -I$(top_srcdir)/sources                         \
 
26
        -I$(top_srcdir)/shell                           \
 
27
        -I$(top_srcdir)/plugins                         \
 
28
        -DPIXMAP_DIR=\""$(datadir)/pixmaps"\"           \
 
29
        -DSHARE_DIR=\"$(pkgdatadir)\"                   \
 
30
        -DDATADIR=\""$(datadir)"\"                      \
 
31
        $(RHYTHMBOX_CFLAGS)                             \
 
32
        $(NOTIFY_CFLAGS)                                \
 
33
        -D_XOPEN_SOURCE -D_BSD_SOURCE
 
34
 
 
35
plugin_in_files = notification.plugin.in
 
36
 
 
37
%.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
 
38
 
 
39
BUILT_SOURCES =                                 \
 
40
        $(plugin_in_files:.plugin.in=.plugin)   \
 
41
        $(NULL)
 
42
 
 
43
plugin_DATA =                   \
 
44
        $(BUILT_SOURCES)        \
 
45
        $(NULL)
 
46
 
 
47
EXTRA_DIST =                    \
 
48
        $(plugin_in_files)      \
 
49
        $(NULL)
 
50
 
 
51
CLEANFILES =                    \
 
52
        $(BUILT_SOURCES)        \
 
53
        $(NULL)
 
54
 
 
55
DISTCLEANFILES =                \
 
56
        $(BUILT_SOURCES)        \
 
57
        $(NULL)