Mercurial > libavcodec.hg
changeset 6185:b9d115ed13fa libavcodec
Add $(EXESUF) where necessary.
author | diego |
---|---|
date | Sun, 27 Jan 2008 17:50:59 +0000 |
parents | 4ba171d6d84a |
children | 0281d8efb050 |
files | Makefile |
diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Sun Jan 27 15:43:17 2008 +0000 +++ b/Makefile Sun Jan 27 17:50:59 2008 +0000 @@ -467,22 +467,22 @@ ps2/*.o ps2/*~ \ sh4/*.o sh4/*~ \ sparc/*.o sparc/*~ \ - apiexample $(TESTS) + apiexample$(EXESUF) $(TESTS) -TESTS = $(addsuffix -test, cabac dct eval fft h264 imgresample rangecoder snow) +TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 imgresample rangecoder snow) ifeq ($(ARCH_X86),yes) -TESTS += cpuid-test motion-test +TESTS += cpuid-test$(EXESUF) motion-test$(EXESUF) endif -tests: apiexample $(TESTS) +tests: apiexample$(EXESUF) $(TESTS) -cpuid-test: i386/cputest.c -apiexample: apiexample.o $(LIBNAME) -dct-test: dct-test.o fdctref.o $(LIBNAME) -fft-test: fft-test.o $(LIBNAME) -motion-test: motion-test.o $(LIBNAME) +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: %.c $(LIBNAME) +%-test$(EXESUF): %.c $(LIBNAME) $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) .PHONY: tests