blob: 6857bcea34847e8c7aa5deac21bcfdb8f4dd1f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include $(top_srcdir)/misc/Makefile.common
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_a52.la
xineplug_decode_a52_la_SOURCES = \
bitstream.c \
bit_allocate.c \
crc.c \
downmix.c \
imdct.c \
parse.c \
xine_decoder.c
xineplug_decode_a52_la_LIBADD = $(XINE_LIB)
xineplug_decode_a52_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = \
a52.h \
a52_internal.h \
bitstream.h \
tables.h
|