Optimize distclean and configuration.
authorPatrick Georgi <patrick.georgi@coresystems.de>
Wed, 21 Apr 2010 06:36:20 +0000 (06:36 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Wed, 21 Apr 2010 06:36:20 +0000 (06:36 +0000)
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5470 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

Makefile

index cdbba2b4f9fbd6c912f114913741cf6667d80d13..f83804523b267d5e21b7e978e9c47a395f2a82f1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -69,8 +69,21 @@ LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && $(CC) -pr
 DOXYGEN := doxygen
 DOXYGEN_OUTPUT_DIR := doxygen
 
+# Three cases where we don't need fully populated $(obj) lists:
+# 1. when no .config exists
+# 2. when make config (in any flavour) is run
+# 3. when make distclean is run
+# Don't waste time on reading all Makefile.incs in these cases
 ifeq ($(strip $(HAVE_DOTCONFIG)),)
+NOCOMPILE:=1
+endif
+ifneq ($(MAKECMDGOALS),)
+ifneq ($(filter %config distclean,$(MAKECMDGOALS)),)
+NOCOMPILE:=1
+endif
+endif
 
+ifeq ($(NOCOMPILE),1)
 all: config
 
 else
@@ -294,9 +307,7 @@ coreboot: prepare $(obj)/coreboot.rom
 endif
 
 prepare:
-       mkdir -p $(obj)
-       mkdir -p $(objutil)/kconfig/lxdialog $(objutil)/cbfstool $(objutil)/romcc $(objutil)/options
-       test -n "$(alldirs)" && mkdir -p $(alldirs) || true
+       mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(objutil)/cbfstool $(objutil)/romcc $(objutil)/options $(alldirs)
 
 $(obj)/build.h: .xcompile
        @printf "    GEN        build.h\n"
@@ -342,9 +353,9 @@ clean-for-update: doxygen-clean
 clean: clean-for-update
        rm -f $(obj)/coreboot* .ccwrap
 
-distclean: clean
+distclean:
        rm -rf $(obj)
-       rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig*
+       rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
 
 update:
        dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF