blob: 8ed5a886059abeaa280cff8eb1c8f3e05f4e1c50 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
include $(top_srcdir)/misc/Makefile.common
EXTRA_DIST = fooaudio.c
SUBDIRS = gsm610 nosefart
AM_LDFLAGS = $(xineplug_ldflags)
if HAVE_VORBIS
vorbis_module = xineplug_decode_vorbis.la
endif
if HAVE_SPEEX
speex_module = xineplug_decode_speex.la
endif
if MUSEPACK
musepack_module = xineplug_decode_mpc.la
endif
if !EXTERNAL_MPCDEC
link_libmpcdec = $(top_builddir)/contrib/libmpcdec/libmpcdec.la
cflags_libmpcdec = -I$(top_srcdir)/contrib/libmpcdec
$(top_builddir)/contrib/libmpcdec/libmpcdec.la:
$(MAKE) -C $(top_builddir)/contrib/libmpcdec
else
link_libmpcdec = $(MPCDEC_LIBS)
cflags_libmpcdec = $(MPCDEC_CFLAGS)
endif
xineplug_LTLIBRARIES = \
xineplug_decode_gsm610.la \
xineplug_decode_nsf.la \
xineplug_decode_lpcm.la \
$(vorbis_module) \
$(speex_module) \
$(musepack_module)
xineplug_decode_gsm610_la_SOURCES = gsm610.c
xineplug_decode_gsm610_la_CFLAGS = $(VISIBILITY_FLAG)
xineplug_decode_gsm610_la_LIBADD = $(XINE_LIB) gsm610/libgsm610.la
xineplug_decode_nsf_la_SOURCES = nsf.c
xineplug_decode_nsf_la_CFLAGS = $(VISIBILITY_FLAG) -DNSF_PLAYER -fno-strict-aliasing
xineplug_decode_nsf_la_LIBADD = $(XINE_LIB) -lm nosefart/libnosefart.la
xineplug_decode_lpcm_la_SOURCES = xine_lpcm_decoder.c
xineplug_decode_lpcm_la_CFLAGS = $(VISIBILITY_FLAG)
xineplug_decode_lpcm_la_LIBADD = $(XINE_LIB)
xineplug_decode_vorbis_la_SOURCES = xine_vorbis_decoder.c
xineplug_decode_vorbis_la_LIBADD = $(XINE_LIB) $(VORBIS_LIBS) $(OGG_LIBS)
xineplug_decode_vorbis_la_CFLAGS = $(VISIBILITY_FLAG) $(VORBIS_CFLAGS)
xineplug_decode_speex_la_SOURCES = xine_speex_decoder.c
xineplug_decode_speex_la_LIBADD = $(XINE_LIB) $(SPEEX_LIBS)
xineplug_decode_speex_la_CFLAGS = $(VISIBILITY_FLAGS) $(SPEEX_CFLAGS)
xineplug_decode_mpc_la_SOURCES = xine_musepack_decoder.c
xineplug_decode_mpc_la_CFLAGS = $(VISIBILITY_FLAG) $(cflags_libmpcdec)
xineplug_decode_mpc_la_LIBADD = $(XINE_LIB) $(link_libmpcdec)
xineplug_decode_mpc_la_LDFLAGS = $(xineplug_ldflags)
|