mirror of https://git.ffmpeg.org/ffmpeg.git
fix building of test programs (make tests)
Originally committed as revision 12867 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
54381d7557
commit
b153c68b8a
11
common.mak
11
common.mak
|
@ -70,11 +70,14 @@ LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map
|
|||
DISTCLEANSUFFIXES = *.d
|
||||
|
||||
define RULES
|
||||
$(SUBDIR)%: $(SUBDIR)%.o $(LIBNAME)
|
||||
$(CC) $(FFLDFLAGS) -o $$@ $$^ $(FFEXTRALIBS)
|
||||
$(SUBDIR)%$(EXESUF): $(SUBDIR)%.o
|
||||
$(CC) $(FFLDFLAGS) -o $$@ $$^ $(SUBDIR)$(LIBNAME) $(FFEXTRALIBS)
|
||||
|
||||
$(SUBDIR)%-test$(EXESUF): $(SUBDIR)%.c $(LIBNAME)
|
||||
$(CC) $(CFLAGS) $(FFLDFLAGS) -DTEST -o $$@ $$^ $(FFEXTRALIBS)
|
||||
$(SUBDIR)%-test.o: $(SUBDIR)%.c
|
||||
$(CC) $(CFLAGS) -DTEST -c -o $$@ $$^
|
||||
|
||||
$(SUBDIR)%-test.o: $(SUBDIR)%-test.c
|
||||
$(CC) $(CFLAGS) -DTEST -c -o $$@ $$^
|
||||
|
||||
clean::
|
||||
rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES)) \
|
||||
|
|
|
@ -473,8 +473,6 @@ DIRS = alpha armv4l bfin i386 mlib ppc ps2 sh4 sparc
|
|||
|
||||
include $(SUBDIR)../subdir.mak
|
||||
|
||||
$(SUBDIR)cpuid-test$(EXESUF): $(SUBDIR)i386/cputest.c
|
||||
$(SUBDIR)cpuid-test$(EXESUF): $(SUBDIR)i386/cputest.o
|
||||
$(SUBDIR)apiexample$(EXESUF): $(SUBDIR)apiexample.o $(SUBDIR)$(LIBNAME)
|
||||
$(SUBDIR)dct-test$(EXESUF): $(SUBDIR)dct-test.o fdctref.o $(SUBDIR)$(LIBNAME)
|
||||
$(SUBDIR)fft-test$(EXESUF): $(SUBDIR)fft-test.o $(SUBDIR)$(LIBNAME)
|
||||
$(SUBDIR)motion-test$(EXESUF): $(SUBDIR)motion-test.o $(SUBDIR)$(LIBNAME)
|
||||
$(SUBDIR)dct-test$(EXESUF): $(SUBDIR)fdctref.o
|
||||
|
|
Loading…
Reference in New Issue