Skip to content
Snippets Groups Projects
Commit fe34942e authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Move some lines in preparation for an upcoming commit.

Originally committed as revision 11644 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4942a0e8
No related branches found
No related tags found
No related merge requests found
...@@ -454,6 +454,11 @@ NAME=avcodec ...@@ -454,6 +454,11 @@ NAME=avcodec
LIBVERSION=$(LAVCVERSION) LIBVERSION=$(LAVCVERSION)
LIBMAJOR=$(LAVCMAJOR) 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 include ../common.mak
clean:: clean::
...@@ -469,11 +474,6 @@ clean:: ...@@ -469,11 +474,6 @@ clean::
sparc/*.o sparc/*~ \ sparc/*.o sparc/*~ \
apiexample$(EXESUF) $(TESTS) 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) tests: apiexample$(EXESUF) $(TESTS)
cpuid-test$(EXESUF): i386/cputest.c cpuid-test$(EXESUF): i386/cputest.c
......
...@@ -41,10 +41,10 @@ NAME=avutil ...@@ -41,10 +41,10 @@ NAME=avutil
LIBVERSION=$(LAVUVERSION) LIBVERSION=$(LAVUVERSION)
LIBMAJOR=$(LAVUMAJOR) LIBMAJOR=$(LAVUMAJOR)
include ../common.mak
TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree) TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree)
include ../common.mak
tests: $(TESTS) tests: $(TESTS)
%-test$(EXESUF): %.c $(LIBNAME) %-test$(EXESUF): %.c $(LIBNAME)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment