diff options
| author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-29 00:51:57 +0000 |
|---|---|---|
| committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-29 00:51:57 +0000 |
| commit | 6d13f53fb05950ca9475dbf6f786f6aeffd35b91 (patch) | |
| tree | 466e105627f81a49d5dd40380554c5572086e75c /src/liba52/Makefile.am | |
| parent | c593749af24848995d168d7714c3361daa1ada03 (diff) | |
| download | xine-lib-6d13f53fb05950ca9475dbf6f786f6aeffd35b91.tar.gz xine-lib-6d13f53fb05950ca9475dbf6f786f6aeffd35b91.tar.bz2 | |
update to liba52 v 0.7.0 including the dynamic range compensation feature (disabled by default, enable it in your .xinerc if you want it)
CVS patchset: 515
CVS date: 2001/08/29 00:51:57
Diffstat (limited to 'src/liba52/Makefile.am')
| -rw-r--r-- | src/liba52/Makefile.am | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/liba52/Makefile.am b/src/liba52/Makefile.am new file mode 100644 index 000000000..78ea2055f --- /dev/null +++ b/src/liba52/Makefile.am @@ -0,0 +1,52 @@ +CFLAGS = @GLOBAL_CFLAGS@ + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_a52.la + +xineplug_decode_a52_la_SOURCES = bitstream.c bit_allocate.c \ + parse.c downmix.c imdct.c imdct_mlib.c \ + xine_decoder.c +xineplug_decode_a52_la_LDFLAGS = -avoid-version -module + +noinst_HEADERS = a52.h a52_internal.h \ + bitstream.h tables.h + +## +## Install header files (default=$includedir/xine) +## +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(includedir)/xine + @list='$(include_HEADERS)'; for p in $$list; do \ + if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \ + echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/$$p"; \ + $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/xine/$$p; \ + done + + +## +## Remove them +## +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + list='$(include_HEADERS)'; for p in $$list; do \ + rm -f $(DESTDIR)$(includedir)/xine/$$p; \ + done + + +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 |
