OSDN Git Service

Move common test program infrastructure to common.mak.
authorDiego Biurrun <diego@biurrun.de>
Sun, 27 Jan 2008 23:28:56 +0000 (23:28 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sun, 27 Jan 2008 23:28:56 +0000 (23:28 +0000)
Originally committed as revision 11645 to svn://svn.ffmpeg.org/ffmpeg/trunk

common.mak
libavcodec/Makefile
libavutil/Makefile

index 8da643c..b809748 100644 (file)
@@ -52,7 +52,7 @@ depend dep: $(SRCS)
 
 clean::
        rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \
-             *.def *.dll.a *.exp *.ho *.map
+             *.def *.dll.a *.exp *.ho *.map $(TESTS)
 
 distclean: clean
        rm -f .depend
@@ -98,6 +98,11 @@ uninstall-headers::
        rm -f $(addprefix "$(INCDIR)/",$(HEADERS))
        rm -f "$(LIBDIR)/pkgconfig/lib$(NAME).pc"
 
-.PHONY: all depend dep clean distclean install* uninstall*
+tests: $(TESTS)
+
+%-test$(EXESUF): %.c $(LIBNAME)
+       $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS)
+
+.PHONY: all depend dep clean distclean install* uninstall* tests
 
 -include .depend
index 67a5c6a..dd3202d 100644 (file)
@@ -472,17 +472,10 @@ clean::
           ps2/*.o ps2/*~ \
           sh4/*.o sh4/*~ \
           sparc/*.o sparc/*~ \
-          apiexample$(EXESUF) $(TESTS)
-
-tests: apiexample$(EXESUF) $(TESTS)
+          apiexample$(EXESUF)
 
 cpuid-test$(EXESUF): i386/cputest.c
 apiexample$(EXESUF): apiexample.o $(LIBNAME)
 dct-test$(EXESUF): dct-test.o fdctref.o $(LIBNAME)
 fft-test$(EXESUF): fft-test.o $(LIBNAME)
 motion-test$(EXESUF): motion-test.o $(LIBNAME)
-
-%-test$(EXESUF): %.c $(LIBNAME)
-       $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS)
-
-.PHONY: tests
index c530670..04fd16f 100644 (file)
@@ -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)