summaryrefslogtreecommitdiff
path: root/src/libxineadec
diff options
context:
space:
mode:
authorStephen Torri <storri@users.sourceforge.net>2002-11-22 05:25:14 +0000
committerStephen Torri <storri@users.sourceforge.net>2002-11-22 05:25:14 +0000
commit4b97c5dc4ef7cc049c18f9636859d341eeb531c5 (patch)
tree6ca8dd54f4f0a3aa793cdad525fed8b003429181 /src/libxineadec
parent73db8a7c28401f6e53db42c53346f497c318e561 (diff)
downloadxine-lib-4b97c5dc4ef7cc049c18f9636859d341eeb531c5.tar.gz
xine-lib-4b97c5dc4ef7cc049c18f9636859d341eeb531c5.tar.bz2
Developers can now run "make" in their work area (e.g. src/libffmpeg) and it
will build all dependent parts (e.g. libxine.la). The directory must still be prepared by running autogen.sh. CVS patchset: 3331 CVS date: 2002/11/22 05:25:14
Diffstat (limited to 'src/libxineadec')
-rw-r--r--src/libxineadec/Makefile.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am
index 320f05b3b..1907a5fc5 100644
--- a/src/libxineadec/Makefile.am
+++ b/src/libxineadec/Makefile.am
@@ -7,6 +7,7 @@ EXTRA_DIST = fooaudio.c
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
+XINE_LIB = $(top_builddir)/src/xine-engine/libxine.la
SUBDIRS = gsm610
@@ -20,21 +21,24 @@ xineplug_decode_roqaudio_la_SOURCES = roqaudio.c
xineplug_decode_roqaudio_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_adpcm_la_SOURCES = adpcm.c
-xineplug_decode_adpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
+xineplug_decode_adpcm_la_LIBADD = $(XINE_LIB)
xineplug_decode_adpcm_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_logpcm_la_SOURCES = logpcm.c
-xineplug_decode_logpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
+xineplug_decode_logpcm_la_LIBADD = $(XINE_LIB)
xineplug_decode_logpcm_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_gsm610_la_SOURCES = gsm610.c
xineplug_decode_gsm610_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_gsm610_la_LIBADD = \
- $(top_builddir)/src/xine-engine/libxine.la \
+ $(XINE_LIB) \
$(top_builddir)/src/libxineadec/gsm610/libgsm610.la
# noinst_HEADERS =
+$(XINE_LIB):
+ @cd $(top_builddir)/src/xine-engine && $(MAKE)
+
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"