mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Simplify test program build.
Originally committed as revision 6563 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
885e691aaf
commit
c6c4651138
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user