summaryrefslogtreecommitdiff
path: root/plugins/musepack/Makefile.am
blob: 513c694a1bf8db26587051c4b6f11493b21ed103 (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
if HAVE_MUSEPACK

pkglib_LTLIBRARIES = musepack.la

musepack_la_SOURCES = musepack.c\
huffman.c\
mpc_bits_reader.c\
mpc_decoder.c\
mpc_demux.c\
mpc_reader.c\
requant.c\
streaminfo.c\
synth_filter.c\
crc32.c\
decoder.h\
huffman.h\
internal.h\
mpc_bits_reader.h\
mpc/mpcdec.h\
mpcdec_math.h\
mpc/reader.h\
requant.h\
mpc/streaminfo.h\
mpc/mpc_types.h\
mpc/minimax.h

musepack_la_LDFLAGS = -module -avoid-version
musepack_la_LIBADD = $(LDADD) -lm

AM_CFLAGS = $(CFLAGS) -fPIC -std=c99

endif