summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-11-01 18:51:37 +0000
committerDiego Biurrun <diego@biurrun.de>2006-11-01 18:51:37 +0000
commite164fbfeac116f219d76ef994bc4b3c57ccfc272 (patch)
tree19f3bc9585fca662542ba98595120acb6f9c0070 /libavcodec/Makefile
parent3d6a30d948f9a98da033527046299ae234c3e5a2 (diff)
Make tests compile on non-x86.
Originally committed as revision 6860 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile6
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