mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-23 15:53:36 +00:00
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
This commit is contained in:
parent
5ced7b80ad
commit
462f3c372c
@ -39,10 +39,10 @@ vsynth2/0.pgm: rotozoom
|
|||||||
@mkdir -p vsynth2
|
@mkdir -p vsynth2
|
||||||
./rotozoom 'vsynth2/' $(VPATH)/lena.pnm
|
./rotozoom 'vsynth2/' $(VPATH)/lena.pnm
|
||||||
|
|
||||||
videogen: videogen.c
|
videogen$(EXESUF): videogen.c
|
||||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
rotozoom: rotozoom.c
|
rotozoom$(EXESUF): rotozoom.c
|
||||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
# audio generation
|
# audio generation
|
||||||
@ -50,10 +50,10 @@ rotozoom: rotozoom.c
|
|||||||
asynth1.sw: audiogen
|
asynth1.sw: audiogen
|
||||||
./audiogen $@
|
./audiogen $@
|
||||||
|
|
||||||
audiogen: audiogen.c
|
audiogen$(EXESUF): audiogen.c
|
||||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
tiny_psnr: tiny_psnr.c
|
tiny_psnr$(EXESUF): tiny_psnr.c
|
||||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \
|
DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \
|
||||||
@ -78,4 +78,4 @@ dsptest: dsptest.c $(DSPDEPS)
|
|||||||
|
|
||||||
distclean clean:
|
distclean clean:
|
||||||
rm -rf vsynth1 vsynth2 data
|
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user