summaryrefslogtreecommitdiff
path: root/src/libac3/Makefile.am
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-04-29 14:32:11 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-04-29 14:32:11 +0000
commit05aa5f5db549e94f55321823a2d3221fb414c9c2 (patch)
treee0e506e157e99a26438df85ac192a34b355b1643 /src/libac3/Makefile.am
parent0b7fa608cc50ab566ff9c87da5bc445ac3a6f278 (diff)
downloadxine-lib-05aa5f5db549e94f55321823a2d3221fb414c9c2.tar.gz
xine-lib-05aa5f5db549e94f55321823a2d3221fb414c9c2.tar.bz2
turned ac3dec into a dynamic plugin (well, sort-of ;)), minor fixes
CVS patchset: 44 CVS date: 2001/04/29 14:32:11
Diffstat (limited to 'src/libac3/Makefile.am')
-rw-r--r--src/libac3/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/libac3/Makefile.am b/src/libac3/Makefile.am
index 6318b3255..3071c7ae9 100644
--- a/src/libac3/Makefile.am
+++ b/src/libac3/Makefile.am
@@ -1,10 +1,16 @@
-CFLAGS = @BUILD_LIB_STATIC@ @GLOBAL_CFLAGS@
+CFLAGS = @GLOBAL_CFLAGS@
-noinst_LTLIBRARIES = libac3.la
+LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
-libac3_la_SOURCES = bitstream.c bit_allocate.c \
+libdir = $(XINE_PLUGINDIR)
+
+lib_LTLIBRARIES = xineplug_decode_ac3.la
+
+xineplug_decode_ac3_la_SOURCES = bitstream.c bit_allocate.c \
decode.c coeff.c exponent.c parse.c crc.c rematrix.c \
- dither.c sanity_check.c srfft.c imdct.c downmix.c
+ dither.c sanity_check.c srfft.c imdct.c downmix.c \
+ xine_decoder.c
+xineplug_decode_ac3_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = ac3.h ac3_internal.h bitstream.h \
imdct.h coeff.h exponent.h bit_allocate.h parse.h \