summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-10-15 21:29:56 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-10-15 21:29:56 (GMT)
commit4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6 (patch)
treef6bb12ede31697ffa3735d15a910a12890d680cc /tools
parentb77f4abe34a7d415486f505e2fb11c09114318c6 (diff)
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(-)
Diffstat (limited to 'tools')
-rw-r--r--tools/tools.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/tools.mk b/tools/tools.mk
index 2327c72..dc8de4d 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