summaryrefslogtreecommitdiff
path: root/steps.mk
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 /steps.mk
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 'steps.mk')
-rw-r--r--steps.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/steps.mk b/steps.mk
index 267ee93..bcd440f 100644
--- a/steps.mk
+++ b/steps.mk
@@ -22,13 +22,13 @@ CT_STEPS := libc_check_config \
export CT_STEPS
$(CT_STEPS):
- @$(CT_NG) RESTART=$@ STOP=$@ build
+ $(SILENT)$(MAKE) -rf $(CT_NG) RESTART=$@ STOP=$@ build
$(patsubst %,+%,$(CT_STEPS)):
- @$(CT_NG) STOP=$(patsubst +%,%,$@) build
+ $(SILENT)$(MAKE) -rf $(CT_NG) STOP=$(patsubst +%,%,$@) build
$(patsubst %,%+,$(CT_STEPS)):
- @$(CT_NG) RESTART=$(patsubst %+,%,$@) build
+ $(SILENT)$(MAKE) -rf $(CT_NG) RESTART=$(patsubst %+,%,$@) build
help-build::
@echo ' list-steps - List all build steps'