Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2010-04-19 17:05:26 +0400
committerVitor Sessak <vitor1001@gmail.com>2010-04-19 17:05:26 +0400
commit1840b280592b31ae59b5fac79eb1478ef81ec75c (patch)
tree6f24bf9f462b0a1b011e10340fdfb1d09807348a /Makefile
parent8469ae22a89061ed681fd436a0ca6509bf92995c (diff)
Makefile: make fate target depend on compiling ffmpeg
Originally committed as revision 22912 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 48df7670c3..18ab3a6d00 100644
--- a/Makefile
+++ b/Makefile
@@ -342,7 +342,7 @@ tests/seek_test$(EXESUF): tests/seek_test.o $(FF_DEP_LIBS)
ifdef SAMPLES
include $(SRC_PATH_BARE)/tests/fate.mak
fate: $(FATE_TESTS)
-$(FATE_TESTS):
+$(FATE_TESTS): ffmpeg$(EXESUF)
@echo "TEST FATE $(@:fate-%=%)"
@$(SRC_PATH)/tests/fate-run.sh $@ "$(SAMPLES)" "$(TARGET_EXEC)" "$(TARGET_PATH)" '$(CMD)'
else