diff options
| author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-09-16 21:49:34 +0000 |
|---|---|---|
| committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-09-16 21:49:34 +0000 |
| commit | d2db0f3bbdc81aae2c316751daf1d53b42a3e6a0 (patch) | |
| tree | e9f4a94547ada41ea13445185a20305378d6c0bd /src/libffmpeg/libavcodec/ppc/Makefile.am | |
| parent | d35f836384d9fa164350612ead96362d9cd7b457 (diff) | |
| download | xine-lib-d2db0f3bbdc81aae2c316751daf1d53b42a3e6a0.tar.gz xine-lib-d2db0f3bbdc81aae2c316751daf1d53b42a3e6a0.tar.bz2 | |
- sync ffmpeg to cvs (sorry Mike it still doesn't decode your teststream --
something must be broken at ffmpeg, also happens with mplayer)
- added priority sorted lists, now autoprobing should work again.
- fixed infinite loop in plugin loader.
obs: latest ffmpeg contains ppc optimizations, someone will have to enable these
though.
CVS patchset: 2676
CVS date: 2002/09/16 21:49:34
Diffstat (limited to 'src/libffmpeg/libavcodec/ppc/Makefile.am')
| -rw-r--r-- | src/libffmpeg/libavcodec/ppc/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/ppc/Makefile.am b/src/libffmpeg/libavcodec/ppc/Makefile.am new file mode 100644 index 000000000..34d885c6d --- /dev/null +++ b/src/libffmpeg/libavcodec/ppc/Makefile.am @@ -0,0 +1,46 @@ +## +## Process this file with automake to produce Makefile.in +## + +#CFLAGS = @CFLAGS@ @LIBFFMPEG_CFLAGS@ + +# we must not use CFLAGS here, gcc optimizations produce +# bad code if we do so. +CFLAGS = -O2 $(LIBFFMPEG_CFLAGS) + +ASFLAGS = + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +noinst_LTLIBRARIES = libavcodec_ppc.la + +libavcodec_ppc_src = dsputil_altivec.c dsputil_ppc.c +libavcodec_ppc_dummy = libavcodec_ppc_dummy.c + +EXTRA_DIST = $(libavcodec_ppc_src) $(libavcodec_ppc_dummy) + +if ARCH_POWERPC +ppc_modules = $(libavcodec_ppc_src) +endif + + +libavcodec_ppc_la_SOURCES = $(ppc_modules) $(libavcodec_ppc_dummy) + +noinst_HEADERS = dsputil_altivec.h + +.s.lo: + $(ASCOMPILE) -o $@ `test -f $< || echo '$(srcdir)/'`$< + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBFFMPEG_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 |
