diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-11-01 18:51:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-11-01 18:51:37 +0000 |
commit | e164fbfeac116f219d76ef994bc4b3c57ccfc272 (patch) | |
tree | 19f3bc9585fca662542ba98595120acb6f9c0070 | |
parent | 3d6a30d948f9a98da033527046299ae234c3e5a2 (diff) | |
download | ffmpeg-e164fbfeac116f219d76ef994bc4b3c57ccfc272.tar.gz |
Make tests compile on non-x86.
Originally committed as revision 6860 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 9571c69ac5..7939c42e9d 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -405,7 +405,11 @@ ifeq ($(BUILD_SHARED),yes) LIBVERSION=$(LAVCVERSION) LIBMAJOR=$(LAVCMAJOR) endif -TESTS= cpuid_test imgresample-test dct-test motion-test fft-test + +TESTS= imgresample-test fft-test +ifeq ($(TARGET_ARCH_X86),yes) +TESTS+= cpuid_test dct-test motion-test +endif include $(SRC_PATH)/common.mak |