From 1d5362031166613f3230bfa4f3ba15f73879579e Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sat, 27 Feb 2010 15:25:28 +0000 Subject: [PATCH] Stop make deleting intermediate files (ffmpeg.o and friends) Originally committed as revision 22094 to svn://svn.ffmpeg.org/ffmpeg/trunk --- common.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mak b/common.mak index e42dd39..5420c7d 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) -- 2.7.4