From 4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Wed, 15 Oct 2008 21:29:56 +0000 Subject: Cheesy kconfig stuff: - silent/quiet/verbose build: - ct-ng by default only prints quit messages, such as "CC xxx", - if using V=0, nothing is printed, - if using V=1, the full command lines are printed, - other values are indeterminate, - should help in debugging the kconfig stuff; - complete kconfig/{,m}conf generation: - fully dynamic dependencies on source files, - compilation of .c into .o, then linking (instead of direct linking), - VPATH usage when not --local; Typo + a coment moved. /trunk/kconfig/kconfig.mk | 140 87 53 0 +++++++++++++++++++++++++++++++++-------------------- /trunk/tools/tools.mk | 12 6 6 0 ++-- /trunk/steps.mk | 6 3 3 0 +- /trunk/samples/samples.mk | 30 15 15 0 +++++----- /trunk/ct-ng.in | 40 28 12 0 +++++++++++---- 5 files changed, 139 insertions(+), 89 deletions(-) --- tools/tools.mk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tools') diff --git a/tools/tools.mk b/tools/tools.mk index 2327c722..dc8de4d9 100644 --- a/tools/tools.mk +++ b/tools/tools.mk @@ -11,21 +11,21 @@ CONFIG_GUESS_SRC="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain; CONFIG_GUESS_DEST="$(CT_TOP_DIR)/tools/config.guess" $(CT_TOP_DIR)/tools: - @mkdir -p $(CT_TOP_DIR)/tools + $(SILENT)mkdir -p $(CT_TOP_DIR)/tools PHONY += updatetools updatetools: $(CT_TOP_DIR)/tools $(CONFIG_SUB_DEST) $(CONFIG_GUESS_DEST) $(CONFIG_SUB_DEST): - @wget $(CONFIG_SUB_SRC) -O $@ - @chmod u+rwx,go+rx-w $@ + $(SILENT)wget $(CONFIG_SUB_SRC) -O $@ + $(SILENT)chmod u+rwx,go+rx-w $@ $(CONFIG_GUESS_DEST): - @wget $(CONFIG_GUESS_SRC) -O $@ - @chmod u+rwx,go+rx-w $@ + $(SILENT)wget $(CONFIG_GUESS_SRC) -O $@ + $(SILENT)chmod u+rwx,go+rx-w $@ help-distrib:: @echo ' updatetools - Update the config tools' distclean:: - @[ $(CT_TOP_DIR) = $(CT_LIB_DIR) ] || rm -rf $(CT_TOP_DIR)/tools + $(SILENT)[ $(CT_TOP_DIR) = $(CT_LIB_DIR) ] || rm -rf $(CT_TOP_DIR)/tools -- cgit v1.2.3