summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-02-27 15:25:28 +0000
committerMåns Rullgård <mans@mansr.com>2010-02-27 15:25:28 +0000
commit1d5362031166613f3230bfa4f3ba15f73879579e (patch)
tree3984ce788021d9354f759426ef708b725fbb79da /common.mak
parent8590e6d52987923ad6a16212a9b1765361260e42 (diff)
Stop make deleting intermediate files (ffmpeg.o and friends)
Originally committed as revision 22094 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak3
1 files changed, 3 insertions, 0 deletions
diff --git a/common.mak b/common.mak
index e42dd3920e..5420c7d9fb 100644
--- a/common.mak
+++ b/common.mak
@@ -55,6 +55,9 @@ uninstall: uninstall-libs uninstall-headers
# Disable suffix rules. Most of the builtin rules are suffix rules,
# so this saves some time on slow systems.
.SUFFIXES:
+
+# Do not delete intermediate files from chains of implicit rules
+.SECONDARY:
endif
OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)