diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-30 08:28:09 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-30 08:28:09 +0000 |
commit | d89b9f666c9a13affba7c24c4d82833947abeda0 (patch) | |
tree | 807e61cee37b30ba212b8bf049931c59b682f4cb /src/libxinevdec/Makefile.am | |
parent | 1b568a8bfd7e9d68f14296fc68d38cde45c3fd49 (diff) | |
download | xine-lib-d89b9f666c9a13affba7c24c4d82833947abeda0.tar.gz xine-lib-d89b9f666c9a13affba7c24c4d82833947abeda0.tar.bz2 |
Add libxinevdec video decoders
- Cinepak decoder moved into this directory
- New Creative YUV (CYUV) decoder by Mike Melanson
- New Microsoft Video-1 (msvc) decoder by Ewald Snel
CVS patchset: 1813
CVS date: 2002/04/30 08:28:09
Diffstat (limited to 'src/libxinevdec/Makefile.am')
-rw-r--r-- | src/libxinevdec/Makefile.am | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libxinevdec/Makefile.am b/src/libxinevdec/Makefile.am new file mode 100644 index 000000000..76a489dbe --- /dev/null +++ b/src/libxinevdec/Makefile.am @@ -0,0 +1,32 @@ +CFLAGS = @CFLAGS@ +DEBUG_CFLAGS = @DEBUG_CFLAGS@ + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_cinepak.la xineplug_decode_cyuv.la \ + xineplug_decode_msvc.la + +xineplug_decode_cinepak_la_SOURCES = cinepak.c +xineplug_decode_cinepak_la_LDFLAGS = -avoid-version -module + +xineplug_decode_cyuv_la_SOURCES = cyuv.c +xineplug_decode_cyuv_la_LDFLAGS = -avoid-version -module + +xineplug_decode_msvc_la_SOURCES = msvc.c +xineplug_decode_msvc_la_LDFLAGS = -avoid-version -module + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" + +install-debug: debug + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in |