summaryrefslogtreecommitdiff
path: root/src/libspudec
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/libspudec
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/libspudec')
-rw-r--r--src/libspudec/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libspudec/Makefile.am b/src/libspudec/Makefile.am
index a4e69a38c..99b397316 100644
--- a/src/libspudec/Makefile.am
+++ b/src/libspudec/Makefile.am
@@ -3,6 +3,7 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = xineplug_decode_spu.la
+XINE_LIB = $(top_builddir)/src/xine-engine/libxine.la
xineplug_decode_spu_la_SOURCES = \
nav_read.c \
@@ -10,12 +11,15 @@ xineplug_decode_spu_la_SOURCES = \
spu.c \
xine_decoder.c
-xineplug_decode_spu_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
+xineplug_decode_spu_la_LIBADD = $(XINE_LIB)
xineplug_decode_spu_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
noinst_HEADERS = spu.h nav_read.h bswap.h nav_print.h
include_HEADERS = spu_decoder_api.h nav_types.h
+$(XINE_LIB):
+ @cd $(top_builddir)/src/xine-engine && $(MAKE)
+
##
## Install header files (default=$includedir/xine)
##