diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-05-31 19:40:49 +0200 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-05-31 19:40:49 +0200 |
| commit | 8af2e39ae55ae46ac57c676439383123cae11e13 (patch) | |
| tree | a0b3409b9e202dd241958b631b0d785f46146445 /src/libxineadec/Makefile.am | |
| parent | 6c2a2fea3c11e440336e8b39fdbc82c008c1d54e (diff) | |
| download | xine-lib-8af2e39ae55ae46ac57c676439383123cae11e13.tar.gz xine-lib-8af2e39ae55ae46ac57c676439383123cae11e13.tar.bz2 | |
Move libmad in libxineadec directory.
--HG--
rename : src/libmad/xine_mad_decoder.c => src/libxineadec/xine_mad_decoder.c
Diffstat (limited to 'src/libxineadec/Makefile.am')
| -rw-r--r-- | src/libxineadec/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am index 25d1e358a..5545a44d0 100644 --- a/src/libxineadec/Makefile.am +++ b/src/libxineadec/Makefile.am @@ -21,6 +21,13 @@ if ENABLE_DTS dts_module = xineplug_decode_dts.la endif +if ENABLE_MAD +mad_module = xineplug_decode_mad.la +endif + +$(top_builddir)/contrib/libmad/libmad.la: + $(MAKE) -C $(top_builddir)/contrib/libmad + $(top_builddir)/contrib/libmpcdec/libmpcdec.la: $(MAKE) -C $(top_builddir)/contrib/libmpcdec @@ -36,7 +43,8 @@ xineplug_LTLIBRARIES = \ $(vorbis_module) \ $(speex_module) \ $(musepack_module) \ - $(dts_module) + $(dts_module) \ + $(mad_module) xineplug_decode_gsm610_la_SOURCES = gsm610.c xineplug_decode_gsm610_la_LIBADD = $(XINE_LIB) $(top_builddir)/contrib/gsm610/libgsm610.la @@ -62,3 +70,8 @@ xineplug_decode_dts_la_SOURCES = xine_dts_decoder.c xineplug_decode_dts_la_DEPENDENCIES = $(LIBDTS_DEPS) xineplug_decode_dts_la_LIBADD = $(XINE_LIB) $(LIBDTS_LIBS) xineplug_decode_dts_la_CFLAGS = $(AM_CFLAGS) $(LIBDTS_CFLAGS) + +xineplug_decode_mad_la_SOURCES = xine_mad_decoder.c +xineplug_decode_mad_la_DEPENDENCIES = $(LIBMAD_DEPS) +xineplug_decode_mad_la_LIBADD = $(XINE_LIB) $(LIBMAD_LIBS) +xineplug_decode_mad_la_CFLAGS = $(AM_CFLAGS) $(LIBMAD_CFLAGS) |
