diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-27 23:28:56 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-27 23:28:56 +0000 |
commit | bca9e0bcf17693f77d9e661e2e63baf2722797bc (patch) | |
tree | 3a4810f2c0e84881fcea9341ef7122b9ea786683 /libavutil | |
parent | fe34942e922aa9574ea7cc139b32a7e076fd7607 (diff) | |
download | ffmpeg-bca9e0bcf17693f77d9e661e2e63baf2722797bc.tar.gz |
Move common test program infrastructure to common.mak.
Originally committed as revision 11645 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index c5306709a0..04fd16fac0 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -45,15 +45,8 @@ TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat t include ../common.mak -tests: $(TESTS) - -%-test$(EXESUF): %.c $(LIBNAME) - $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) - lzo-test$(EXESUF): lzo.c $(LIBNAME) $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) -llzo2 clean:: - rm -f $(TESTS) lzo-test$(EXESUF) - -.PHONY: tests + rm -f lzo-test$(EXESUF) |