1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:24:12 +03:00

switch on new verbose system

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4064 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2006-06-23 21:47:24 +00:00
parent 3eb60d771b
commit 242527ccb9
5 changed files with 16 additions and 10 deletions

View File

@ -26,6 +26,7 @@ RELEASE:=Kamikaze
#--------------------------------------------------------------
TOPDIR=${shell pwd}
export TOPDIR
include $(TOPDIR)/include/verbose.mk
OPENWRTVERSION:=$(RELEASE)
ifneq ($(VERSION),)

View File

@ -1,5 +1,3 @@
include $(TOPDIR)/rules.mk
KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
ifneq ($(CONFIG_BIG_ENDIAN),y)

View File

@ -1,14 +1,19 @@
# OpenWrt.org 2006
# $Id:$
ifeq ($(DUMP),)
ifndef KBUILD_VERBOSE
KBUILD_VERBOSE=0
ifeq ("$(origin V)", "command line")
KBUILD_VERBOSE=$(V)
endif
ifndef KBUILD_VERBOSE
ifeq ($(DUMP),)
KBUILD_VERBOSE=1
else
KBUILD_VERBOSE=99
endif
ifeq ("$(origin V)", "command line")
KBUILD_VERBOSE=$(V)
endif
endif
ifneq ($(KBUILD_VERBOSE),99)
ifeq ($(QUIET),1)
$(MAKECMDGOALS): trace
trace: FORCE
@ -18,6 +23,9 @@ ifeq ($(DUMP),)
}
else
export QUIET:=1
ifeq ($(KBUILD_VERBOSE),0)
MAKE:=&>/dev/null $(MAKE)
endif
MAKE:=3>&1 4>&2 $(MAKE)
endif

View File

@ -17,11 +17,9 @@ $(STAMP_DIR) $(TARGET_DIR):
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare MAKEFLAGS="$(BUILD_MAKEFLAGS)"
%-compile: $(STAMP_DIR) $(TARGET_DIR)
@echo "-> make $@"
$(MAKE) -C $(patsubst %-compile,%,$@) compile MAKEFLAGS="$(BUILD_MAKEFLAGS)"
%-install: $(STAMP_DIR) $(TARGET_DIR)
@echo "-> make $@"
$(MAKE) -C $(patsubst %-install,%,$@) install MAKEFLAGS="$(BUILD_MAKEFLAGS)"
%-clean: $(STAMP_DIR) $(TARGET_DIR)

View File

@ -1,4 +1,5 @@
-include $(TOPDIR)/.config
include $(TOPDIR)/include/verbose.mk
export SHELL=/bin/bash