blob: ec6dfd64262a753a76ef8cf253af6c373d080718 (
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
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = $(LIBA52_CFLAGS)
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_a52.la
xineplug_decode_a52_la_SOURCES = \
bitstream.c \
bit_allocate.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
|