diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-06-09 23:14:17 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-06-09 23:14:17 +0000 |
commit | 7cd6147e6b653280f2e7ef82cc987283d1a2545b (patch) | |
tree | 8c306d84e7ed8e906ac0a578b607e18f0a375db7 | |
parent | bd86e803e1ad1a3e11bf78c71c1a925726df7f9c (diff) | |
download | xine-lib-7cd6147e6b653280f2e7ef82cc987283d1a2545b.tar.gz xine-lib-7cd6147e6b653280f2e7ef82cc987283d1a2545b.tar.bz2 |
More libmpeg2new updates
CVS patchset: 5020
CVS date: 2003/06/09 23:14:17
-rw-r--r-- | src/libmpeg2new/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libmpeg2new/Makefile.am b/src/libmpeg2new/Makefile.am new file mode 100644 index 000000000..a7d422bd5 --- /dev/null +++ b/src/libmpeg2new/Makefile.am @@ -0,0 +1,16 @@ +include $(top_srcdir)/misc/Makefile.common + +AM_CFLAGS = $(LIBMPEG2_CFLAGS) + +EXTRA_DIST = idct_mlib.c idct_mlib.h motion_comp_mlib.c + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_mpeg2.la + +xineplug_decode_mpeg2_la_SOURCES = \ + xine_decoder.c + +xineplug_decode_mpeg2_la_LIBADD = $(XINE_LIB) /usr/local/lib/libmpeg2.la +xineplug_decode_mpeg2_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + |