summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-08-28 23:29:07 +0000
committerDiego Biurrun <diego@biurrun.de>2007-08-28 23:29:07 +0000
commit06396e11935d4148f7a188c282c7ea87aef9bb74 (patch)
tree6f5ae0438e7c5d50ed8524b68701805dd90e5e45 /Makefile
parentf6df400c0c5b7b7cd065d0ec34d3f97d05ea75c1 (diff)
10l: Actually add the .libs dependency to the seek_test binary,
not the phony seektest target. Originally committed as revision 10258 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1b5af5bd80..83f313582a 100644
--- a/Makefile
+++ b/Makefile
@@ -279,7 +279,7 @@ codectest mpeg4 mpeg ac3 snow snowll: ffmpeg$(EXESUF) tests/vsynth1/00.pgm tests
libavtest: ffmpeg$(EXESUF) tests/vsynth1/00.pgm tests/asynth1.sw
$(SRC_PATH)/tests/regression.sh $@ $(LIBAV_REFFILE) tests/vsynth1
-seektest: tests/seek_test$(EXESUF) .libs
+seektest: tests/seek_test$(EXESUF)
$(SRC_PATH)/tests/seek_test.sh $(SEEK_REFFILE)
ifeq ($(CONFIG_SWSCALER),yes)
@@ -305,7 +305,7 @@ tests/asynth1.sw: tests/audiogen$(EXESUF)
%$(EXESUF): %.c
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
-tests/seek_test$(EXESUF): tests/seek_test.c
+tests/seek_test$(EXESUF): tests/seek_test.c .libs
$(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -o $@ $< $(EXTRALIBS)