summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-10 02:57:01 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-10 02:57:01 +0000
commit0680c40a256322071f76abfc8a0dca423e08d741 (patch)
tree250d41c9da6c670f52f1a4f2c51a03b68abdccd4
parentf82bf85055b55df01aaeabcc53b2b9f9e039ccbb (diff)
Remove .SECONDARY directive
The presence of the .SECONDARY directive caused thing to not always be correctly rebuilt. Mentioning the object files explicitly as targets gives the desired result of make not deleting them without unpleasant side-effects. Originally committed as revision 22422 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--common.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak
index e868a2849c..dbd76dbe56 100644
--- a/common.mak
+++ b/common.mak
@@ -66,7 +66,7 @@ uninstall: uninstall-libs uninstall-headers
.SUFFIXES:
# Do not delete intermediate files from chains of implicit rules
-.SECONDARY:
+$(OBJS):
endif
OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)