~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to sources/Makefile.am

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## arch-tag: Automake rules for source object library
2
 
 
3
2
noinst_LTLIBRARIES = libsources.la libsourcesimpl.la
4
3
 
5
4
libsources_la_SOURCES = rb-source.c rb-source.h
13
12
        rb-library-source.h             \
14
13
        rb-iradio-source.c              \
15
14
        rb-iradio-source.h              \
 
15
        rb-podcast-source.c             \
 
16
        rb-podcast-source.h             \
 
17
        rb-removable-media-source.c     \
 
18
        rb-removable-media-source.h     \
 
19
        rb-audiocd-source.c             \
 
20
        rb-audiocd-source.h             \
 
21
        rb-playlist-source-recorder.c   \
 
22
        rb-playlist-source-recorder.h   \
16
23
        rb-playlist-source.c            \
17
 
        rb-playlist-source.h            
 
24
        rb-playlist-source.h
18
25
 
19
26
INCLUDES =                                              \
20
27
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
24
31
        -I$(top_builddir)/lib                           \
25
32
        -I$(top_srcdir)/corba                           \
26
33
        -I$(top_builddir)/corba                         \
27
 
        -I$(top_srcdir)/rhythmdb                        \
 
34
        -I$(top_srcdir)/rhythmdb                                \
 
35
        -I$(top_srcdir)/metadata                        \
28
36
        -I$(top_srcdir)/widgets                         \
29
37
        -I$(top_srcdir)/library                         \
 
38
        -I$(top_srcdir)/player                          \
30
39
        -I$(top_srcdir)/iradio                          \
 
40
        -I$(top_srcdir)/podcast                         \
31
41
        -I$(top_srcdir)/shell                           \
 
42
        -I$(top_srcdir)/daapsharing                     \
 
43
        -I$(top_srcdir)/metadata                        \
32
44
        -DPIXMAP_DIR=\""$(datadir)/pixmaps"\"           \
33
45
        -DSHARE_DIR=\"$(pkgdatadir)\"                   \
34
46
        -DDATADIR=\""$(datadir)"\"                      \
35
47
        $(WARN_CFLAGS)                                  \
 
48
        $(TOTEM_PLPARSER_CFLAGS)                        \
 
49
        $(HAL_CFLAGS)                                   \
 
50
        $(LIBNAUTILUS_BURN_CFLAGS)                      \
36
51
        $(RHYTHMBOX_CFLAGS)
37
52
 
38
53
libsources_la_LDFLAGS = -export-dynamic
39
54
libsourcesimpl_la_LDFLAGS = -export-dynamic
40
 
libsourcesimpl_la_LIBADD = $(top_builddir)/rhythmdb/librhythmdb.la $(top_builddir)/widgets/librbwidgets.la
41
55
 
42
56
if USE_IPOD
43
57
libsourcesimpl_la_SOURCES +=         \
44
58
        rb-ipod-source.c             \
45
 
        rb-ipod-source.h             \
46
 
        itunesdb.c                   \
47
 
        itunesdb.h
48
 
endif
 
59
        rb-ipod-source.h
 
60
INCLUDES += -I$(top_srcdir)/sources/ipod $(IPOD_CFLAGS)
 
61
endif
 
62
 
 
63
 
 
64
if USE_DAAP
 
65
libsourcesimpl_la_SOURCES +=            \
 
66
        rb-daap-source.c                \
 
67
        rb-daap-source.h
 
68
endif
 
69
 
 
70
if USE_LIBSOUP
 
71
INCLUDES += $(SOUP_CFLAGS)
 
72
endif
 
73