From 29f16f45f108ec0e69b198d949a4c2dcd796c37f Mon Sep 17 00:00:00 2001 From: bircoph Date: Sun, 16 Nov 2008 13:04:16 +0000 Subject: 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3