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

« back to all changes in this revision

Viewing changes to player/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:
2
2
 
3
3
noinst_LTLIBRARIES = librbplayer.la
4
4
 
5
 
librbplayer_la_SOURCES = rb-player.h
6
 
 
7
 
if USE_XINE
8
 
librbplayer_la_SOURCES += rb-player-xine.c
9
 
else
10
 
librbplayer_la_SOURCES += rb-player-gst.c
11
 
endif
 
5
librbplayer_la_SOURCES =        \
 
6
        rb-player.h             \
 
7
        rb-player-gst.c         \
 
8
        rb-recorder.h           \
 
9
        rb-recorder-gst.c       \
 
10
        rb-recorder-marshal.c   \
 
11
        rb-recorder-marshal.h
12
12
 
13
13
librbplayer_la_LIBADD =                         \
14
 
        $(top_builddir)/lib/librb.la            \
15
14
        $(RHYTHMBOX_LIBS)
16
15
 
17
16
librbplayer_la_LDFLAGS = -export-dynamic
18
17
 
19
18
INCLUDES =                                              \
20
 
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
19
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
21
20
        -DG_LOG_DOMAIN=\"Rhythmbox\"                    \
22
21
        -I$(top_srcdir)                                 \
23
22
        -I$(top_srcdir)/lib                             \
24
23
        -I$(top_srcdir)/metadata                        \
 
24
        -I$(top_srcdir)/sources                         \
 
25
        -I$(top_srcdir)/shell                           \
 
26
        -I$(top_srcdir)/rhythmdb                        \
 
27
        -I$(top_srcdir)/widgets                         \
 
28
        -I$(top_srcdir)/daapsharing                     \
 
29
        $(LIBNAUTILUS_BURN_CFLAGS)                      \
25
30
        $(RHYTHMBOX_CFLAGS)
 
31
 
 
32
 
 
33
if USE_DAAP
 
34
INCLUDES += -I$(top_srcdir)/daapsharing                 
 
35
endif
 
36
 
 
37
 
 
38
BUILT_SOURCES = rb-recorder-marshal.c rb-recorder-marshal.h
 
39
 
 
40
 
 
41
rb-recorder-marshal.c: rb-recorder-marshal.list
 
42
        echo "#include \"rb-recorder-marshal.h\"" > $@ && \
 
43
        @GLIB_GENMARSHAL@ $< --prefix=rb_recorder_marshal --body >> $@
 
44
 
 
45
rb-recorder-marshal.h: rb-recorder-marshal.list
 
46
        @GLIB_GENMARSHAL@ $< --prefix=rb_recorder_marshal --header > $@
 
47
 
 
48
 
 
49
EXTRA_DIST = rb-recorder-marshal.list
 
50
 
 
51
CLEANFILES = $(BUILT_SOURCES)