From eba6ba4a743a6b9786bb80ea08f21aca3be2404f Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sun, 27 Jan 2008 17:50:59 +0000
Subject: [PATCH] Add $(EXESUF) where necessary.

Originally committed as revision 11636 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/Makefile | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index a6485b72e61..8d6f20a197e 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -467,22 +467,22 @@ clean::
 	   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
-- 
GitLab