From 5f7efb4c6da9f90cb306923ced2a6494d065a595 Mon Sep 17 00:00:00 2001 From: Arnaud Lacombe Date: Wed, 24 Aug 2011 21:03:30 -0400 Subject: Kbuild: append missing-syscalls to the default target list This avoid an extra make invocation on `prepare0'. Signed-off-by: Arnaud Lacombe Signed-off-by: Michal Marek --- Kbuild | 6 ++++-- Makefile | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Kbuild b/Kbuild index 2114113..4caab4f 100644 --- a/Kbuild +++ b/Kbuild @@ -88,11 +88,13 @@ $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild # 3) Check for missing system calls # +always += missing-syscalls +targets += missing-syscalls + quiet_cmd_syscalls = CALL $< cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) -PHONY += missing-syscalls -missing-syscalls: scripts/checksyscalls.sh FORCE +missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE $(call cmd,syscalls) # Keep these two files during make clean diff --git a/Makefile b/Makefile index ab38311..2e78b08 100644 --- a/Makefile +++ b/Makefile @@ -983,7 +983,6 @@ archprepare: prepare1 scripts_basic prepare0: archprepare FORCE $(Q)$(MAKE) $(build)=. - $(Q)$(MAKE) $(build)=. missing-syscalls # All the preparing.. prepare: prepare0 -- cgit v1.1