mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Use $< instead of explicit names.
Originally committed as revision 7350 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49f1ac5a3d
commit
5d078bdb47
@ -40,11 +40,11 @@ endif
|
||||
|
||||
vsynth1/00.pgm: videogen$(EXESUF)
|
||||
@mkdir -p vsynth1
|
||||
./videogen 'vsynth1/'
|
||||
$< 'vsynth1/'
|
||||
|
||||
vsynth2/00.pgm: rotozoom$(EXESUF)
|
||||
@mkdir -p vsynth2
|
||||
./rotozoom 'vsynth2/' $(SRC_DIR)/lena.pnm
|
||||
$< 'vsynth2/' $(SRC_DIR)/lena.pnm
|
||||
|
||||
videogen$(EXESUF): videogen.c
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||
@ -55,7 +55,7 @@ rotozoom$(EXESUF): rotozoom.c
|
||||
# audio generation
|
||||
|
||||
asynth1.sw: audiogen$(EXESUF)
|
||||
./audiogen $@
|
||||
$< $@
|
||||
|
||||
audiogen$(EXESUF): audiogen.c
|
||||
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
|
||||
|
Loading…
x
Reference in New Issue
Block a user