diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-18 09:34:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-18 09:34:49 +0000 |
commit | 24743a767f732fcced0af9cbe18897777c8125c2 (patch) | |
tree | 9b0a09b7ed03c036673acf41ddd2f6299b63c5ad /libavcodec | |
parent | 522e9cf4e00aa49d67c9d0f0213e8b21f6d345c9 (diff) | |
download | ffmpeg-24743a767f732fcced0af9cbe18897777c8125c2.tar.gz |
Rename LIB to LIBNAME for consistency.
Originally committed as revision 10774 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0e936ab36c..5516bd1650 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -465,18 +465,18 @@ endif tests: apiexample $(TESTS) -apiexample: apiexample.o $(LIB) +apiexample: apiexample.o $(LIBNAME) cpuid-test: i386/cputest.c $(CC) $(CFLAGS) -DTEST -o $@ $< -dct-test: dct-test.o fdctref.o $(LIB) +dct-test: dct-test.o fdctref.o $(LIBNAME) -fft-test: fft-test.o $(LIB) +fft-test: fft-test.o $(LIBNAME) -imgresample-test: imgresample.c $(LIB) +imgresample-test: imgresample.c $(LIBNAME) $(CC) $(CFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) -motion-test: motion-test.o $(LIB) +motion-test: motion-test.o $(LIBNAME) .PHONY: tests |