diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-27 22:39:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-27 22:39:30 +0000 |
commit | 4942a0e8eea71395ad174fe0744de9f70e06459b (patch) | |
tree | 92e89e76fb20ed1debc014676aaafee4f2701e38 | |
parent | cff7ccdd448ec78b74620042f04de55450c543b5 (diff) | |
download | ffmpeg-4942a0e8eea71395ad174fe0744de9f70e06459b.tar.gz |
Add Makefile rules for test programs.
Originally committed as revision 11643 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 54ac475a49..064e7e81bd 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -42,3 +42,18 @@ LIBVERSION=$(LAVUVERSION) LIBMAJOR=$(LAVUMAJOR) include ../common.mak + +TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree) + +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 |