diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-10-15 21:29:56 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-10-15 21:29:56 +0000 |
commit | 4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6 (patch) | |
tree | f6bb12ede31697ffa3735d15a910a12890d680cc /steps.mk | |
parent | b77f4abe34a7d415486f505e2fb11c09114318c6 (diff) | |
download | crosstool-ng-4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6.tar.gz crosstool-ng-4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6.tar.bz2 crosstool-ng-4e7d6836a5d1b2bf5dd0ed181a4263ce7b305cd6.zip |
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.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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' |