diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-27 23:27:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-27 23:27:13 +0000 |
commit | fe34942e922aa9574ea7cc139b32a7e076fd7607 (patch) | |
tree | 51d91978190f20d38f32b8bd87d8cc9739b3fd6f /libavcodec/Makefile | |
parent | 4942a0e8eea71395ad174fe0744de9f70e06459b (diff) | |
download | ffmpeg-fe34942e922aa9574ea7cc139b32a7e076fd7607.tar.gz |
Move some lines in preparation for an upcoming commit.
Originally committed as revision 11644 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 8d6f20a197..67a5c6ae05 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -454,6 +454,11 @@ NAME=avcodec LIBVERSION=$(LAVCVERSION) LIBMAJOR=$(LAVCMAJOR) +TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 imgresample rangecoder snow) +ifeq ($(ARCH_X86),yes) +TESTS += cpuid-test$(EXESUF) motion-test$(EXESUF) +endif + include ../common.mak clean:: @@ -469,11 +474,6 @@ clean:: sparc/*.o sparc/*~ \ apiexample$(EXESUF) $(TESTS) -TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 imgresample rangecoder snow) -ifeq ($(ARCH_X86),yes) -TESTS += cpuid-test$(EXESUF) motion-test$(EXESUF) -endif - tests: apiexample$(EXESUF) $(TESTS) cpuid-test$(EXESUF): i386/cputest.c |