2007-07-30 18:22:01 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
# debug flags:
|
|
|
|
#
|
|
|
|
# d: show subdirectory tree
|
|
|
|
# t: show added targets
|
|
|
|
# l: show legacy targets
|
2007-08-30 21:12:39 +00:00
|
|
|
# r: show autorebuild messages
|
2007-07-30 18:22:01 +00:00
|
|
|
# v: verbose (no .SILENCE for common targets)
|
|
|
|
|
2007-08-30 21:12:39 +00:00
|
|
|
ifeq ($(DUMP),)
|
|
|
|
ifeq ($(DEBUG),all)
|
|
|
|
build_debug:=dltvr
|
|
|
|
else
|
|
|
|
build_debug:=$(DEBUG)
|
|
|
|
endif
|
2007-07-30 18:22:01 +00:00
|
|
|
endif
|
|
|
|
|
2011-04-03 03:40:01 +00:00
|
|
|
ifneq ($(DEBUG),)
|
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
define debug
|
2009-02-20 10:30:21 +00:00
|
|
|
$$(findstring $(2),$$(if $$(DEBUG_SCOPE_DIR),$$(if $$(filter $$(DEBUG_SCOPE_DIR)%,$(1)),$(build_debug)),$(build_debug)))
|
2007-07-30 18:22:01 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define warn
|
|
|
|
$$(if $(call debug,$(1),$(2)),$$(warning $(3)))
|
|
|
|
endef
|
|
|
|
|
2007-08-30 21:12:39 +00:00
|
|
|
define debug_eval
|
|
|
|
$$(if $(call debug,$(1),$(2)),$(3))
|
|
|
|
endef
|
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
define warn_eval
|
|
|
|
$(call warn,$(1),$(2),$(3) $(4))
|
|
|
|
$(4)
|
|
|
|
endef
|
|
|
|
|
2011-04-03 03:40:01 +00:00
|
|
|
else
|
|
|
|
|
|
|
|
debug:=
|
|
|
|
warn:=
|
|
|
|
debug_eval:=
|
|
|
|
warn_eval = $(4)
|
|
|
|
|
|
|
|
endif
|
2007-07-30 18:22:01 +00:00
|
|
|
|