summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-16 13:04:16 +0000
committerbircoph <bircoph@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-16 13:04:16 +0000
commit29f16f45f108ec0e69b198d949a4c2dcd796c37f (patch)
tree53c10d44250d52ce97b3092356eb89f5b24bf08b /Makefile
parent30e93ced327bc1b133a11ed8c6944642a3fc0f73 (diff)
downloadmpv-29f16f45f108ec0e69b198d949a4c2dcd796c37f.tar.bz2
mpv-29f16f45f108ec0e69b198d949a4c2dcd796c37f.tar.xz
Add yasm support to the build system.
This allows to use yasm assembler optimizations from FFmpeg code, in particular, from libavcodec/fft.c. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27940 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5848a27f56..eab57c0c02 100644
--- a/Makefile
+++ b/Makefile
@@ -873,10 +873,10 @@ doxygen:
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