diff options
author | Mans Rullgard <mans@mansr.com> | 2011-06-06 15:21:12 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-23 12:16:53 +0100 |
commit | 8d853efe53f13ef85ef8937df33017b33869bd52 (patch) | |
tree | 49f0508e3f3b3dabb108215516b6228aa9e0742c /Makefile | |
parent | 41b68dce4d148b6a227d001b32deb275c01aa550 (diff) | |
download | ffmpeg-8d853efe53f13ef85ef8937df33017b33869bd52.tar.gz |
build: move special targets to end of main Makefile
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -145,5 +145,13 @@ check: test checkheaders include doc/Makefile include tests/Makefile +# Dummy rule to stop make trying to rebuild removed or renamed headers +%.h: + @: + +# Disable suffix rules. Most of the builtin rules are suffix rules, +# so this saves some time on slow systems. +.SUFFIXES: + .PHONY: all alltools *clean check config examples install* .PHONY: testprogs uninstall* |