[FFmpeg-cvslog] build: move special targets to end of main Makefile

Mans Rullgard git at videolan.org
Fri Jun 24 03:13:06 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Mon Jun  6 15:21:12 2011 +0100| [8d853efe53f13ef85ef8937df33017b33869bd52] | committer: Mans Rullgard

build: move special targets to end of main Makefile

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d853efe53f13ef85ef8937df33017b33869bd52
---

 Makefile   |    8 ++++++++
 common.mak |    8 --------
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Makefile b/Makefile
index f4d03d4..75fe364 100644
--- a/Makefile
+++ b/Makefile
@@ -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*
diff --git a/common.mak b/common.mak
index e9e69f2..8d21d15 100644
--- a/common.mak
+++ b/common.mak
@@ -43,14 +43,6 @@ HOSTCFLAGS += $(IFLAGS)
 
 %.c %.h: TAG = GEN
 
-# 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:
-
 endif
 
 OBJS-$(HAVE_MMX) +=  $(MMX-OBJS-yes)



More information about the ffmpeg-cvslog mailing list