[SCM] libav/experimental: Simplify test program build.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:51:50 UTC 2013


The following commit has been merged in the experimental branch:
commit c6c4651138107827b8ad700de2148037df640f38
Author: Diego Biurrun <diego at biurrun.de>
Date:   Thu Oct 5 17:10:33 2006 +0000

    Simplify test program build.
    
    Originally committed as revision 6563 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/common.mak b/common.mak
index 01d4484..7ef4693 100644
--- a/common.mak
+++ b/common.mak
@@ -36,6 +36,9 @@ $(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
 %.o: %.cpp
 	g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
 
+%: %.o $(LIB)
+	$(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS)
+
 depend dep: $(SRCS)
 	$(CC) -MM $(CFLAGS) $^ 1>.depend
 
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index fbf8e0b..daef1b2 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -429,26 +429,18 @@ clean::
 	-$(MAKE) -C amr clean
 	-$(MAKE) -C amrwb_float -f makefile.gcc clean
 
-# api example program
-apiexample: apiexample.c $(LIB)
-	$(CC) $(CFLAGS) -o $@ $^ $(EXTRALIBS)
+apiexample: apiexample.o $(LIB)
 
-# cpuid test
 cpuid_test: i386/cputest.c
 	$(CC) $(CFLAGS) -D__TEST__ -o $@ $<
 
-# testing progs
-
 imgresample-test: imgresample.c $(LIB)
 	$(CC) $(CFLAGS) -DTEST -o $@ $^ $(EXTRALIBS)
 
 dct-test: dct-test.o fdctref.o $(LIB)
-	$(CC) -o $@ $^ $(EXTRALIBS)
 
 motion-test: motion_test.o $(LIB)
-	$(CC) -o $@ $^ -lm
 
 fft-test: fft-test.o $(LIB)
-	$(CC) -o $@ $^ $(EXTRALIBS)
 
 .PHONY: amrlibs tests

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list