diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-25 23:27:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-25 23:27:54 +0000 |
commit | f3a572ca146555e68c8100d27f948c7fcd4a4ce5 (patch) | |
tree | ad4c1cf466d4ada4aaea565318b7d2e5718bd3a4 /common.mak | |
parent | 479e1e617078476f14598cd62769b4c9ca4025e2 (diff) | |
download | ffmpeg-f3a572ca146555e68c8100d27f948c7fcd4a4ce5.tar.gz |
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
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common.mak b/common.mak index c4d5f2be0c..e42dd3920e 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) |