1EXTRA_DIST = CMakeLists.txt
2
3AM_CPPFLAGS = -I$(top_srcdir)/include
4
5if HAVE_VISIBILITY
6  AM_CFLAGS = -fvisibility=hidden
7endif
8
9common_sources = ../common/crc32.c \
10		../common/huffman-bcl.c
11
12METASOURCES = AUTO
13lib_LTLIBRARIES = libmpcdec.la
14libmpcdec_la_SOURCES = huffman.c mpc_decoder.c mpc_reader.c \
15	requant.c	streaminfo.c synth_filter.c mpc_bits_reader.c mpc_demux.c \
16	mpc_bits_reader.h huffman.h decoder.h internal.h requant.h mpcdec_math.h \
17	$(common_sources)
18
19libmpcdec_la_LDFLAGS = -no-undefined -version-info 7:0:1 -lm
20