[FFmpeg-devel] [PATCH 2/2] Restore some more rules to common.mak to improve building in subdirs.
Reimar Döffinger
Reimar.Doeffinger at gmx.de
Fri Jun 24 19:54:11 CEST 2011
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
---
Makefile | 11 -----------
common.mak | 10 ++++++++++
2 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/Makefile b/Makefile
index 966afc6..8b3a51f 100644
--- a/Makefile
+++ b/Makefile
@@ -7,9 +7,6 @@ vpath %.asm $(SRC_PATH)
vpath %.v $(SRC_PATH)
vpath %.texi $(SRC_PATH)
-# Do not delete intermediate files from chains of implicit rules
-$(OBJS):
-
PROGS-$(CONFIG_FFMPEG) += ffmpeg
PROGS-$(CONFIG_FFPLAY) += ffplay
PROGS-$(CONFIG_FFPROBE) += ffprobe
@@ -153,13 +150,5 @@ check: test
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 b9a0995..66bbed4 100644
--- a/common.mak
+++ b/common.mak
@@ -50,6 +50,16 @@ 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:
+
+# Do not delete intermediate files from chains of implicit rules
+$(OBJS):
endif
OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)
--
1.7.5.4
More information about the ffmpeg-devel
mailing list