From f3a572ca146555e68c8100d27f948c7fcd4a4ce5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
Date: Thu, 25 Feb 2010 23:27:54 +0000
Subject: [PATCH] Disable suffix rules

Most of the make builtin rules, which we do not need, are suffix rules,
and we use only new-style pattern rules.  Disabling suffix rules saves
some time when building on slow systems.

Originally committed as revision 22064 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 common.mak | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/common.mak b/common.mak
index c4d5f2be0c3..e42dd3920ec 100644
--- a/common.mak
+++ b/common.mak
@@ -51,6 +51,10 @@ install: install-libs install-headers
 uninstall: uninstall-libs uninstall-headers
 
 .PHONY: all depend dep *clean install* uninstall* examples testprogs
+
+# Disable suffix rules.  Most of the builtin rules are suffix rules,
+# so this saves some time on slow systems.
+.SUFFIXES:
 endif
 
 OBJS-$(HAVE_MMX) +=  $(MMX-OBJS-yes)
-- 
GitLab