diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-12-21 21:35:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-12-21 21:35:49 +0000 |
commit | 5d078bdb47e87fb206052cc224c3480cd3bac4f9 (patch) | |
tree | 1d9de29f15977bf10da04b4758a3a627942f7d08 /tests | |
parent | 49f1ac5a3d4d0c038d54f5190f1c017dd7174a75 (diff) | |
download | ffmpeg-5d078bdb47e87fb206052cc224c3480cd3bac4f9.tar.gz |
Use $< instead of explicit names.
Originally committed as revision 7350 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index c4c6925f85..a22dbb1e6e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -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 $@ $< |