summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/scripts/Makefile.include
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/memblock/scripts/Makefile.include')
-rw-r--r--tools/testing/memblock/scripts/Makefile.include10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/testing/memblock/scripts/Makefile.include b/tools/testing/memblock/scripts/Makefile.include
index 641569ccb7b0..4401f79bed4c 100644
--- a/tools/testing/memblock/scripts/Makefile.include
+++ b/tools/testing/memblock/scripts/Makefile.include
@@ -17,3 +17,13 @@ ifeq ($(32BIT_PHYS_ADDR_T), 1)
CFLAGS += -m32 -U CONFIG_PHYS_ADDR_T_64BIT
LDFLAGS += -m32
endif
+
+# Enable verbose testing output
+ifeq ($(VERBOSE), 1)
+ CFLAGS += -D VERBOSE
+endif
+
+# Enable memblock_dbg() messages
+ifeq ($(MEMBLOCK_DEBUG), 1)
+ CFLAGS += -D MEMBLOCK_DEBUG
+endif