[Ffmpeg-cvslog] r7350 - trunk/tests/Makefile
diego
subversion
Thu Dec 21 22:35:49 CET 2006
Author: diego
Date: Thu Dec 21 22:35:49 2006
New Revision: 7350
Modified:
trunk/tests/Makefile
Log:
Use $< instead of explicit names.
Modified: trunk/tests/Makefile
==============================================================================
--- trunk/tests/Makefile (original)
+++ trunk/tests/Makefile Thu Dec 21 22:35:49 2006
@@ -40,11 +40,11 @@
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 @@
# audio generation
asynth1.sw: audiogen$(EXESUF)
- ./audiogen $@
+ $< $@
audiogen$(EXESUF): audiogen.c
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
More information about the ffmpeg-cvslog
mailing list