summaryrefslogtreecommitdiff
path: root/src/libxineadec/Makefile.am
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 22:00:36 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 22:00:36 +0200
commit54999f68a60f0f814566babb2df0f9a18089d149 (patch)
tree788025437ea7ac2d2d775317a453a2ae7a4790a2 /src/libxineadec/Makefile.am
parent0045b338e45e2c23b0ec6c086e7cb289517831e4 (diff)
downloadxine-lib-54999f68a60f0f814566babb2df0f9a18089d149.tar.gz
xine-lib-54999f68a60f0f814566babb2df0f9a18089d149.tar.bz2
Move the linear pcm decoder from liblpcm to libxineadec, as it's a single file.
--HG-- rename : src/liblpcm/xine_decoder.c => src/libxineadec/xine_lpcm_decoder.c
Diffstat (limited to 'src/libxineadec/Makefile.am')
-rw-r--r--src/libxineadec/Makefile.am19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am
index 82011dfd0..373347aaa 100644
--- a/src/libxineadec/Makefile.am
+++ b/src/libxineadec/Makefile.am
@@ -4,22 +4,21 @@ EXTRA_DIST = fooaudio.c
SUBDIRS = gsm610 nosefart
+AM_LDFLAGS = $(xineplug_ldflags)
+
xineplug_LTLIBRARIES = \
xineplug_decode_gsm610.la \
- xineplug_decode_nsf.la
+ xineplug_decode_nsf.la \
+ xineplug_decode_lpcm.la
xineplug_decode_gsm610_la_SOURCES = gsm610.c
xineplug_decode_gsm610_la_CFLAGS = $(VISIBILITY_FLAG)
-xineplug_decode_gsm610_la_LDFLAGS = $(xineplug_ldflags)
-xineplug_decode_gsm610_la_LIBADD = \
- $(XINE_LIB) \
- $(top_builddir)/src/libxineadec/gsm610/libgsm610.la
+xineplug_decode_gsm610_la_LIBADD = $(XINE_LIB) gsm610/libgsm610.la
xineplug_decode_nsf_la_SOURCES = nsf.c
xineplug_decode_nsf_la_CFLAGS = $(VISIBILITY_FLAG) -DNSF_PLAYER -fno-strict-aliasing
-xineplug_decode_nsf_la_LDFLAGS = $(xineplug_ldflags)
-xineplug_decode_nsf_la_LIBADD = -lm \
- $(XINE_LIB) \
- $(top_builddir)/src/libxineadec/nosefart/libnosefart.la
+xineplug_decode_nsf_la_LIBADD = $(XINE_LIB) -lm nosefart/libnosefart.la
-# noinst_HEADERS =
+xineplug_decode_lpcm_la_SOURCES = xine_lpcm_decoder.c
+xineplug_decode_lpcm_la_CFLAGS = $(VISIBILITY_FLAG)
+xineplug_decode_lpcm_la_LIBADD = $(XINE_LIB)