diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-27 17:06:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-27 17:06:39 +0000 |
commit | 5b00e88bb2b202a8cca7dfaa0132ac425f4bfe45 (patch) | |
tree | 82574e27252f232b1f89d9a5abdfc63705fddb7d | |
parent | 6b78a77a3555ae390531376b3ada6f91a95ba3e7 (diff) | |
download | ffmpeg-5b00e88bb2b202a8cca7dfaa0132ac425f4bfe45.tar.gz |
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
-rw-r--r-- | libavformat/Makefile | 4 |
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) |