samples/samples.mk
branch1.3
changeset 1080 c70053450b4e
parent 1025 fc64f85e41cc
child 1155 21e86e18f344
     1.1 --- a/samples/samples.mk	Fri Oct 31 18:31:01 2008 +0000
     1.2 +++ b/samples/samples.mk	Tue Nov 25 19:15:34 2008 +0000
     1.3 @@ -95,18 +95,17 @@
     1.4  # $1: sample tuple
     1.5  # $2: prefix
     1.6  define build_sample
     1.7 -	@$(ECHO) '  CP    .config'
     1.8 +	@$(ECHO) '  CONF  $(1)'
     1.9  	$(SILENT)cp $(call sample_dir,$(1))/crosstool.config .config
    1.10 -	@$(ECHO) '  SED   .config'
    1.11  	$(SILENT)sed -i -r -e 's:^(CT_PREFIX_DIR=).*$$:\1"$(2)":;' .config
    1.12  	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_(WARN|INFO|EXTRA|DEBUG|ALL)).*$$:# \1 is not set:;' .config
    1.13  	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_ERROR).*$$:\1=y:;' .config
    1.14  	$(SILENT)sed -i -r -e 's:^(CT_LOG_LEVEL_MAX)=.*$$:\1="ERROR":;' .config
    1.15  	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_TO_FILE).*$$:\1=y:;' .config
    1.16  	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_PROGRESS_BAR).*$$:\1=y:;' .config
    1.17 -	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) oldconfig
    1.18 +	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 oldconfig
    1.19  	@$(ECHO) '  BUILD $(1)'
    1.20 -	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) build
    1.21 +	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 build
    1.22  endef
    1.23  
    1.24  # ----------------------------------------------------------