summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-27 17:06:39 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-27 17:06:39 +0000
commit5b00e88bb2b202a8cca7dfaa0132ac425f4bfe45 (patch)
tree82574e27252f232b1f89d9a5abdfc63705fddb7d /libavformat
parent6b78a77a3555ae390531376b3ada6f91a95ba3e7 (diff)
Move output-example dependency declaration after subdir.mak include so that it is
not the first (and thus default) target and output-example is not always built. Originally committed as revision 18203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index 7585618df3..eaec4a9351 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -246,6 +246,6 @@ OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
EXAMPLES = output-example
TESTPROGS = timefilter
-$(SUBDIR)output-example$(EXESUF): $(FF_DEP_LIBS)
-
include $(SUBDIR)../subdir.mak
+
+$(SUBDIR)output-example$(EXESUF): $(FF_DEP_LIBS)