[Ffmpeg-cvslog] r6563 - in trunk: common.mak libavcodec/Makefile
diego
subversion
Thu Oct 5 19:10:34 CEST 2006
Author: diego
Date: Thu Oct 5 19:10:33 2006
New Revision: 6563
Modified:
trunk/common.mak
trunk/libavcodec/Makefile
Log:
Simplify test program build.
Modified: trunk/common.mak
==============================================================================
--- trunk/common.mak (original)
+++ trunk/common.mak Thu Oct 5 19:10:33 2006
@@ -36,6 +36,9 @@
%.o: %.cpp
g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
+%: %.o $(LIB)
+ $(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS)
+
depend dep: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend
Modified: trunk/libavcodec/Makefile
==============================================================================
--- trunk/libavcodec/Makefile (original)
+++ trunk/libavcodec/Makefile Thu Oct 5 19:10:33 2006
@@ -429,26 +429,18 @@
-$(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
More information about the ffmpeg-cvslog
mailing list