added BUILD_LOG_DIR variable, make clean will delete the ./logs dir
SVN-Revision: 16148
This commit is contained in:
		
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							| @@ -49,8 +49,8 @@ $(BUILD_DIR)/.prepared: Makefile | ||||
| 	@touch $@ | ||||
|  | ||||
| clean: FORCE | ||||
| 	rm -rf $(BUILD_DIR) $(BIN_DIR) | ||||
| 	$(_SINGLE)$(SUBMAKE) target/linux/clean | ||||
| 	rm -rf $(BUILD_DIR) $(BIN_DIR) $(BUILD_LOG_DIR) | ||||
|  | ||||
| dirclean: clean | ||||
| 	rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) $(BUILD_DIR_TOOLCHAIN) | ||||
|   | ||||
| @@ -34,8 +34,8 @@ define subdir | ||||
|         $(if $(call diralias,$(bd)),$(call warn_eval,$(1)/$(bd),l,T,$(1)/$(call diralias,$(bd))/$(btype)/$(target): $(1)/$(bd)/$(btype)/$(target))) | ||||
|       ) | ||||
|       $(call warn_eval,$(1)/$(bd),t,T,$(1)/$(bd)/$(target): $(if $(QUILT),,$($(1)/$(bd)/$(target)) $(call $(1)//$(target),$(1)/$(bd)))) | ||||
| 	  	$(if $(BUILD_LOG),@mkdir -p $(TOPDIR)/logs/$(1)/$(bd)) | ||||
| 		+$(if $(BUILD_LOG),set -o pipefail;) $$(SUBMAKE) -C $(1)/$(bd) $(target) $(if $(BUILD_LOG),SILENT= 2>&1 | tee $(TOPDIR)/logs/$(1)/$(bd)/$(target).txt) $(if $(findstring $(bd),$($(1)/builddirs-ignore-$(target))), || $(call MESSAGE,   ERROR: $(1)/$(bd) failed to build.)) | ||||
| 	  	$(if $(BUILD_LOG),@mkdir -p $(BUILD_LOG_DIR)/$(1)/$(bd)) | ||||
| 		+$(if $(BUILD_LOG),set -o pipefail;) $$(SUBMAKE) -C $(1)/$(bd) $(target) $(if $(BUILD_LOG),SILENT= 2>&1 | tee $(BUILD_LOG_DIR)/$(1)/$(bd)/$(target).txt) $(if $(findstring $(bd),$($(1)/builddirs-ignore-$(target))), || $(call MESSAGE,   ERROR: $(1)/$(bd) failed to build.)) | ||||
|         $$(if $(call debug,$(1)/$(bd),v),,.SILENT: $(1)/$(bd)/$(target)) | ||||
|  | ||||
|       # legacy targets | ||||
|   | ||||
							
								
								
									
										1
									
								
								rules.mk
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								rules.mk
									
									
									
									
									
								
							| @@ -64,6 +64,7 @@ STAMP_DIR_HOST=$(BUILD_DIR_HOST)/stamp | ||||
| TARGET_ROOTFS_DIR?=$(if $(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(BUILD_DIR)) | ||||
| TARGET_DIR:=$(TARGET_ROOTFS_DIR)/root-$(BOARD) | ||||
| DEBUG_DIR:=$(BUILD_DIR)/debug-$(BOARD) | ||||
| BUILD_LOG_DIR:=$(TOPDIR)/logs | ||||
|  | ||||
| TARGET_PATH:=$(TOOLCHAIN_DIR)/usr/bin:$(STAGING_DIR_HOST)/bin:$(PATH) | ||||
| TARGET_PATH_PKG:=$(STAGING_DIR)/host/bin:$(TARGET_PATH) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user