File: Makefile.am

package info (click to toggle)
rhythmbox 2.97-2.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 40,820 kB
  • sloc: ansic: 117,691; xml: 28,786; sh: 11,150; python: 3,862; makefile: 2,561
file content (39 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
noinst_LTLIBRARIES = librbbackends.la

SUBDIRS = gstreamer 

backendincludedir = $(includedir)/rhythmbox/backends

backendinclude_HEADERS =					\
	rb-encoder.h					\
	rb-player.h					\
	rb-player-gst-filter.h				\
	rb-player-gst-tee.h				\
	rb-player-gst-data-tee.h

librbbackends_la_SOURCES =				\
	$(backend_HEADERS)				\
	rb-encoder.c					\
	rb-player.c					\
	rb-player-gst-filter.c				\
	rb-player-gst-tee.c				\
	rb-player-gst-data-tee.c			\
	$(NULL)

librbbackends_la_LIBADD =				\
	gstreamer/librbbackendsgstreamer.la		\
	$(RHYTHMBOX_LIBS)

librbbackends_la_LDFLAGS = -export-dynamic

INCLUDES = 						\
	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
	-DG_LOG_DOMAIN=\"Rhythmbox\"			\
	-I$(top_srcdir) 				\
	-I$(top_srcdir)/lib 				\
	-I$(top_srcdir)/metadata			\
	-I$(top_srcdir)/rhythmdb			\
	-I$(top_srcdir)/backends/gstreamer		\
	-I$(top_builddir)/lib 				\
	$(RHYTHMBOX_CFLAGS)