diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-12 10:43:45 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-12 10:43:45 +0000 |
commit | 7f4f3e169fd85432a62d62fbf23e448022eedb50 (patch) | |
tree | 540c69b455cf53dd86d4cfa022e2a0e3e75e9c7d | |
parent | ff506a906e82d5609abc80c4c7c395d5463757f7 (diff) | |
download | ffmpeg-7f4f3e169fd85432a62d62fbf23e448022eedb50.tar.gz |
cosmetics: Group all test targets together.
Originally committed as revision 9004 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0ddf881a4f..ef7a6cda4c 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -401,15 +401,8 @@ NAME=avcodec LIBVERSION=$(LAVCVERSION) LIBMAJOR=$(LAVCMAJOR) -TESTS= imgresample-test fft-test dct-test -ifeq ($(TARGET_ARCH_X86),yes) -TESTS+= cpuid_test motion-test -endif - include ../common.mak -tests: apiexample $(TESTS) - clean:: rm -f \ i386/*.o i386/*~ \ @@ -422,6 +415,13 @@ clean:: sparc/*.o sparc/*~ \ apiexample $(TESTS) +TESTS= imgresample-test fft-test dct-test +ifeq ($(TARGET_ARCH_X86),yes) +TESTS+= cpuid_test motion-test +endif + +tests: apiexample $(TESTS) + apiexample: apiexample.o $(LIB) cpuid_test: i386/cputest.c |