blob: 1cb30459b3fe0b4c37c02135f22038738877a328 (
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
|
include $(top_srcdir)/misc/Makefile.common
libdir = $(XINE_PLUGINDIR)
if A52
a52_module = xineplug_decode_a52.la
endif
lib_LTLIBRARIES = $(a52_module)
if EXTERNAL_A52DEC
internal_sources =
else
internal_sources = \
bitstream.c \
bit_allocate.c \
downmix.c \
imdct.c \
parse.c
endif
xineplug_decode_a52_la_SOURCES = \
crc.c \
xine_decoder.c \
$(internal_sources)
if EXTERNAL_A52DEC
xineplug_decode_a52_la_LIBADD = $(XINE_LIB) -la52 -lm
else
xineplug_decode_a52_la_LIBADD = $(XINE_LIB)
endif
xineplug_decode_a52_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = \
a52.h \
a52_internal.h \
bitstream.h \
tables.h
|