blob: d786ab25075ab6c88249c484f4d8abfb3057fe57 (
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
|
include $(top_srcdir)/misc/Makefile.common
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_a52.la
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
|