summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVĂ­ctor Paesa <wzrlpy@arsystel.com>2006-07-19 10:52:22 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-19 10:52:22 +0000
commit462f3c372c657b7df0cac188ce2a6b3922a5deec (patch)
tree89db3b5b7a8e8360c8c50ec32d70e3af03aff9b2 /tests
parent5ced7b80ad1abc047a5be83d9bcc294db217ebf7 (diff)
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
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile10
1 files changed, 5 insertions, 5 deletions
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)