summaryrefslogtreecommitdiff
path: root/src/libdts/Makefile.am
blob: cb919c93a78001df385511e73ddc0a1f8762ab37 (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
include $(top_srcdir)/misc/Makefile.common

libdir = $(XINE_PLUGINDIR)

if DTS
dts_module = xineplug_decode_dts.la
endif

lib_LTLIBRARIES = $(dts_module)

if EXTERNAL_LIBDTS
internal_sources =
else
internal_sources = bitstream.c downmix.c parse.c 
endif

xineplug_decode_dts_la_SOURCES = xine_decoder.c $(internal_sources)
xineplug_decode_dts_la_LDFLAGS = -avoid-version -module $(XINE_PLUGIN_MIN_SYMS)

if EXTERNAL_LIBDTS
xineplug_decode_dts_la_LIBADD = $(XINE_LIB) $(LIBDTS_LIBS)
xineplug_decode_dts_la_CFLAGS = $(LIBDTS_CFLAGS)
else
xineplug_decode_dts_la_LIBADD = $(XINE_LIB)
xineplug_decode_dts_la_CFLAGS = -fno-strict-aliasing
endif

noinst_HEADERS = bitstream.h dts.h dts_internal.h tables.h tables_adpcm.h \
	tables_fir.h tables_huffman.h tables_quantization.h tables_vq.h