diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-11-22 05:25:14 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-11-22 05:25:14 +0000 |
commit | 4b97c5dc4ef7cc049c18f9636859d341eeb531c5 (patch) | |
tree | 6ca8dd54f4f0a3aa793cdad525fed8b003429181 /src/dxr3 | |
parent | 73db8a7c28401f6e53db42c53346f497c318e561 (diff) | |
download | xine-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/dxr3')
-rw-r--r-- | src/dxr3/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/dxr3/Makefile.am b/src/dxr3/Makefile.am index d00a53ef2..e3a735f32 100644 --- a/src/dxr3/Makefile.am +++ b/src/dxr3/Makefile.am @@ -1,6 +1,7 @@ AM_CFLAGS = $(X_CFLAGS) LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic +XINE_LIB = $(top_builddir)/src/xine-engine/libxine.la libdir = $(XINE_PLUGINDIR) @@ -22,11 +23,11 @@ endif lib_LTLIBRARIES = $(dxr3_modules) xineplug_decode_dxr3_video_la_SOURCES = dxr3_decode_video.c dxr3_scr.c -xineplug_decode_dxr3_video_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la +xineplug_decode_dxr3_video_la_LIBADD = $(XINE_LIB) xineplug_decode_dxr3_video_la_LDFLAGS = -avoid-version -module xineplug_decode_dxr3_spu_la_SOURCES = dxr3_decode_spu.c nav_read.c -xineplug_decode_dxr3_spu_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la +xineplug_decode_dxr3_spu_la_LIBADD = $(XINE_LIB) xineplug_decode_dxr3_spu_la_LDFLAGS = -avoid-version -module xineplug_vo_out_dxr3_la_SOURCES = \ @@ -39,6 +40,9 @@ xineplug_vo_out_dxr3_la_LIBADD = $(link_fame) $(link_rte) $(link_x_libs) \ $(top_builddir)/src/xine-utils/libxineutils.la xineplug_vo_out_dxr3_la_LDFLAGS = -avoid-version -module +$(XINE_LIB): + @cd $(top_builddir)/src/xine-engine && $(MAKE) + noinst_HEADERS = \ alphablend.h \ bswap.h \ |