diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-20 11:43:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-20 11:43:58 +0000 |
commit | c7594e0764d9d41ec4fb6b14deacd3cc6eafc4b3 (patch) | |
tree | ffda7c774485c90470fab49fd30fad7e16ed47ce | |
parent | 578f90a8d5bdd96531bec9d65164a01458849e78 (diff) | |
download | ffmpeg-c7594e0764d9d41ec4fb6b14deacd3cc6eafc4b3.tar.gz |
Only build motion-test if MMX is enabled.
Originally committed as revision 18069 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 62793bf0e6..34d7dbc09e 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -525,7 +525,8 @@ OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \ TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 rangecoder snow) -TESTS-$(ARCH_X86) += x86/cpuid-test$(EXESUF) motion-test$(EXESUF) +TESTS-$(ARCH_X86) += x86/cpuid-test$(EXESUF) +TESTS-$(HAVE_MMX) += motion-test$(EXESUF) CLEANFILES = apiexample$(EXESUF) DIRS = alpha arm bfin mlib ppc ps2 sh4 sparc x86 |