diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-07-15 00:56:12 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-07-15 00:56:12 +0000 |
commit | 4b09fc3038ce33b9db1874b22f1d2666a7c6cd6c (patch) | |
tree | 576406973eeb37d5da35773f78398ae255aa4a74 /src/libxinevdec/Makefile.am | |
parent | 9390fc8d754001d0ac9f804c12039b281635e8ee (diff) | |
download | xine-lib-4b09fc3038ce33b9db1874b22f1d2666a7c6cd6c.tar.gz xine-lib-4b09fc3038ce33b9db1874b22f1d2666a7c6cd6c.tar.bz2 |
initial commit for 3 new decoders: Raw RGB, Raw YUV, and MS RLE
CVS patchset: 2270
CVS date: 2002/07/15 00:56:12
Diffstat (limited to 'src/libxinevdec/Makefile.am')
-rw-r--r-- | src/libxinevdec/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/libxinevdec/Makefile.am b/src/libxinevdec/Makefile.am index ea84b66cd..0af976c4c 100644 --- a/src/libxinevdec/Makefile.am +++ b/src/libxinevdec/Makefile.am @@ -9,7 +9,9 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_cinepak.la xineplug_decode_cyuv.la \ xineplug_decode_msvc.la xineplug_decode_roqvideo.la \ - xineplug_decode_svq1.la xineplug_decode_fli.la + xineplug_decode_svq1.la xineplug_decode_fli.la \ + xineplug_decode_rgb.la xineplug_decode_yuv.la \ + xineplug_decode_msrle.la xineplug_decode_cinepak_la_SOURCES = cinepak.c xineplug_decode_cinepak_la_LDFLAGS = -avoid-version -module @@ -29,6 +31,15 @@ xineplug_decode_svq1_la_LDFLAGS = -avoid-version -module xineplug_decode_fli_la_SOURCES = fli.c xineplug_decode_fli_la_LDFLAGS = -avoid-version -module +xineplug_decode_rgb_la_SOURCES = rgb.c +xineplug_decode_rgb_la_LDFLAGS = -avoid-version -module + +xineplug_decode_yuv_la_SOURCES = yuv.c +xineplug_decode_yuv_la_LDFLAGS = -avoid-version -module + +xineplug_decode_msrle_la_SOURCES = msrle.c +xineplug_decode_msrle_la_LDFLAGS = -avoid-version -module + noinst_HEADERS = svq1_codebooks.h debug: |