build system: fix parallel make
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 24 Nov 2009 21:23:21 +0000 (22:23 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 24 Nov 2009 21:23:21 +0000 (22:23 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Makefile
applets/Kbuild

index f81bcead0f9d6937cf75f4631a8cd58ea20f1e51..7084c5c1d0f54aa7270e45d1d40a2751302b5921 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -358,6 +358,13 @@ scripts_basic:
 # To avoid any implicit rule to kick in, define an empty command.
 scripts/basic/%: scripts_basic ;
 
+# bbox: we have helpers in applets/
+PHONY += applets_dir
+applets_dir:
+       $(Q)$(MAKE) $(build)=applets
+
+applets/%: applets_dir ;
+
 PHONY += outputmakefile
 # outputmakefile generates a Makefile in the output directory, if using a
 # separate output directory. This allows convenient use of make in the
@@ -797,7 +804,7 @@ ifneq ($(KBUILD_MODULES),)
        $(Q)rm -f $(MODVERDIR)/*
 endif
 
-archprepare: prepare1 scripts_basic
+archprepare: prepare1 scripts_basic applets_dir
 
 prepare0: archprepare FORCE
        $(Q)$(MAKE) $(build)=.
index a6b0cf6fb9f07f2fea9c00271468211c25e0333a..88e98167a228087f5a642790efa425594e84180b 100644 (file)
@@ -12,6 +12,9 @@ hostprogs-y += usage usage_pod applet_tables
 
 always:= $(hostprogs-y)
 
+# fixdep is needed to compile other host programs
+$(addprefix $(obj)/,$(always)): $(objtree)/scripts/basic/fixdep
+
 # Generated files need additional love
 
 # This trick decreases amount of rebuilds