diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-07 17:21:34 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-07 17:21:34 +0000 |
commit | 2458c5c1c46ccc960291c7829c31876bea21e1cf (patch) | |
tree | b15546f28e8a74f84046826ee453e052f5d24be6 | |
parent | 34933442ac94036408279df7704d833d2a725a89 (diff) | |
download | ffmpeg-2458c5c1c46ccc960291c7829c31876bea21e1cf.tar.gz |
Use consistent names for all test programs.
Originally committed as revision 9252 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 3bc2d78dde..33f50b8a71 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -429,14 +429,14 @@ clean:: TESTS= imgresample-test fft-test dct-test ifeq ($(TARGET_ARCH_X86),yes) -TESTS+= cpuid_test motion-test +TESTS+= cpuid-test motion-test endif tests: apiexample $(TESTS) apiexample: apiexample.o $(LIB) -cpuid_test: i386/cputest.c +cpuid-test: i386/cputest.c $(CC) $(CFLAGS) -DTEST -o $@ $< imgresample-test: imgresample.c $(LIB) |