Browse Source

Only build motion-test if MMX is enabled.

Originally committed as revision 18069 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Diego Biurrun 16 years ago
parent
commit
c7594e0764
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/Makefile

+ 2
- 1
libavcodec/Makefile View File

@@ -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


Loading…
Cancel
Save