Mercurial > mplayer.hg
diff Makefile @ 27906:257f974b7cd9
Add yasm support to the build system.
This allows to use yasm assembler optimizations from FFmpeg code,
in particular, from libavcodec/fft.c.
author | bircoph |
---|---|
date | Sun, 16 Nov 2008 13:04:16 +0000 |
parents | 6fdb5269fe86 |
children | 4ac70bd6acac |
line wrap: on
line diff
--- a/Makefile Sun Nov 16 12:20:14 2008 +0000 +++ b/Makefile Sun Nov 16 13:04:16 2008 +0000 @@ -873,10 +873,10 @@ doxygen DOCS/tech/Doxyfile TAGS: - rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a + rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs etags -a tags: - rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a + rm -f $@; ( find -name '*.[chS]' -o -name '*.asm' -print ) | xargs ctags -a