blob: 4d4d4a3d750ee27d6333f60b887571aa60aa1f3f (
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
40
41
42
43
|
include $(top_srcdir)/misc/Makefile.common
AM_CFLAGS = -DOPT_SPEED
EXTRA_DIST = imdct_l_arm.S
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_mad.la
xineplug_decode_mad_la_SOURCES = \
bit.c \
fixed.c \
frame.c \
huffman.c \
layer12.c \
layer3.c \
stream.c \
synth.c \
timer.c \
version.c \
xine_decoder.c
xineplug_decode_mad_la_LIBADD = $(XINE_LIB)
xineplug_decode_mad_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = \
D.dat \
imdct_s.dat \
qc_table.dat \
rq_table.dat \
sf_table.dat \
bit.h \
fixed.h \
frame.h \
global.h \
huffman.h \
layer12.h \
layer3.h \
stream.h \
synth.h \
timer.h \
version.h
|