Commit a4010a01 authored by mru's avatar mru

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.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22064 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cfcef3ae
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment