From 891d1892e5032c8292e49db69c4cd9da42d8a14a Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 1 Nov 2013 11:16:51 -0600 Subject: [PATCH] Extend stack debug logic to include IDLE and interrupt stacks. Also color the heap as well. Based on suggestions from David Sidrane --- platform/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/Makefile b/platform/Makefile index 4b47bc688..73c1580b5 100644 --- a/platform/Makefile +++ b/platform/Makefile @@ -57,7 +57,7 @@ DUMMYDIR = $(APPDIR)$(DELIM)platform$(DELIM)dummy BOARDDIR = $(APPDIR)$(DELIM)platform$(DELIM)$(CONFIG_ARCH_BOARD) LINKDIR = $(if $(wildcard $(BOARDDIR)$(DELIM)Make.defs),$(BOARDDIR),$(DUMMYDIR)) -VPATH = $(PLATFORMDIR) +VPATH = board # Binaries @@ -124,7 +124,7 @@ depend: .depend clean: $(PLATFORMDIR) $(call DELFILE, .built) - $(MAKE) -C $(BINDIR) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" clean + $(Q) $(MAKE) -C $(BINDIR) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" clean distclean: clean $(call DELFILE, Make.dep)