[FFmpeg-cvslog] r22064 - trunk/common.mak

mru subversion
Fri Feb 26 00:27:54 CET 2010


Author: mru
Date: Fri Feb 26 00:27:54 2010
New Revision: 22064

Log:
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.

Modified:
   trunk/common.mak

Modified: trunk/common.mak
==============================================================================
--- trunk/common.mak	Thu Feb 25 20:55:01 2010	(r22063)
+++ trunk/common.mak	Fri Feb 26 00:27:54 2010	(r22064)
@@ -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)



More information about the ffmpeg-cvslog mailing list