From 462f3c372c657b7df0cac188ce2a6b3922a5deec Mon Sep 17 00:00:00 2001 From: VĂ­ctor Paesa Date: Wed, 19 Jul 2006 10:52:22 +0000 Subject: Add missing EXESUF to executable rules. patch by Victor Paesa, wzrlpy at arsystel com M tests/Makefile Originally committed as revision 5789 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/Makefile b/tests/Makefile index 865474487d..587126ccba 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -39,10 +39,10 @@ vsynth2/0.pgm: rotozoom @mkdir -p vsynth2 ./rotozoom 'vsynth2/' $(VPATH)/lena.pnm -videogen: videogen.c +videogen$(EXESUF): videogen.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< -rotozoom: rotozoom.c +rotozoom$(EXESUF): rotozoom.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< # audio generation @@ -50,10 +50,10 @@ rotozoom: rotozoom.c asynth1.sw: audiogen ./audiogen $@ -audiogen: audiogen.c +audiogen$(EXESUF): audiogen.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< -tiny_psnr: tiny_psnr.c +tiny_psnr$(EXESUF): tiny_psnr.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \ @@ -78,4 +78,4 @@ dsptest: dsptest.c $(DSPDEPS) distclean clean: rm -rf vsynth1 vsynth2 data - rm -f asynth1.sw *~ audiogen videogen rotozoom tiny_psnr + rm -f asynth1.sw *~ audiogen$(EXESUF) videogen$(EXESUF) rotozoom$(EXESUF) tiny_psnr$(EXESUF) -- cgit v1.2.3