diff Makefile @ 4795:788145d0bc7e libavformat

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.
author diego
date Fri, 27 Mar 2009 17:06:39 +0000
parents 50591c943aa3
children 62a60b40cf45
line wrap: on
line diff
--- a/Makefile	Fri Mar 27 00:01:06 2009 +0000
+++ b/Makefile	Fri Mar 27 17:06:39 2009 +0000
@@ -246,6 +246,6 @@
 EXAMPLES  = output-example
 TESTPROGS = timefilter
 
-$(SUBDIR)output-example$(EXESUF): $(FF_DEP_LIBS)
+include $(SUBDIR)../subdir.mak
 
-include $(SUBDIR)../subdir.mak
+$(SUBDIR)output-example$(EXESUF): $(FF_DEP_LIBS)