~ubuntu-branches/ubuntu/precise/rhythmbox/precise-201203091205

« back to all changes in this revision

Viewing changes to plugins/Makefile.am

Tags: upstream-0.9.5
ImportĀ upstreamĀ versionĀ 0.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## arch-tag: Automake rules for Rhythmbox's plugin system
 
2
 
 
3
SUBDIRS =                                               \
 
4
        generic-player                                  \
 
5
        sample
 
6
 
 
7
if WITH_AUDIOSCROBBLER
 
8
SUBDIRS += audioscrobbler
 
9
endif
 
10
 
 
11
if WITH_LIRC
 
12
SUBDIRS += lirc
 
13
endif
 
14
 
 
15
if ENABLE_PYTHON
 
16
SUBDIRS +=                                              \
 
17
        pythonconsole                                   \
 
18
        sample-python                                   \
 
19
        artdisplay                                      \
 
20
        lyrics
 
21
endif
 
22
 
 
23
if USE_IPOD
 
24
SUBDIRS += ipod
 
25
endif
 
26
 
 
27
noinst_LTLIBRARIES = librbplugins.la
 
28
 
 
29
librbplugins_la_SOURCES =                               \
 
30
        rb-plugin.h                                     \
 
31
        rb-plugin.c                                     \
 
32
        rb-module.c                                     \
 
33
        rb-module.h                                     \
 
34
        rb-plugin-manager.h                             \
 
35
        rb-plugin-manager.c                             \
 
36
        rb-plugins-engine.h                             \
 
37
        rb-plugins-engine.c
 
38
 
 
39
INCLUDES =                                              \
 
40
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
41
        -DG_LOG_DOMAIN=\"Rhythmbox\"                    \
 
42
        -I$(top_srcdir)                                 \
 
43
        -I$(top_srcdir)/lib                             \
 
44
        -I$(top_builddir)/lib                           \
 
45
        -I$(top_srcdir)/player                          \
 
46
        -I$(top_srcdir)/metadata                        \
 
47
        -I$(top_srcdir)/rhythmdb                        \
 
48
        -I$(top_srcdir)/sources                         \
 
49
        -I$(top_srcdir)/library                         \
 
50
        -I$(top_srcdir)/iradio                          \
 
51
        -I$(top_srcdir)/shell                           \
 
52
        -I$(top_srcdir)/widgets                         \
 
53
        $(WARN_CFLAGS)                                  \
 
54
        $(RHYTHMBOX_CFLAGS)                             \
 
55
        -DRB_PLUGIN_DIR=\"$(PLUGINDIR)\"
 
56
 
 
57
if ENABLE_PYTHON
 
58
librbplugins_la_SOURCES += \
 
59
        rb-python-module.c              \
 
60
        rb-python-module.h              \
 
61
        rb-python-plugin.c              \
 
62
        rb-python-plugin.h      
 
63
 
 
64
INCLUDES += \
 
65
        $(NO_STRICT_ALIASING_CFLAGS)    \
 
66
        $(PYGTK_CFLAGS)                 \
 
67
        $(PYTHON_CFLAGS)
 
68
endif
 
69
 
 
70
 
 
71
librbplugins_la_LDFLAGS = -export-dynamic
 
72