aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefiles/module.mk13
1 files changed, 8 insertions, 5 deletions
diff --git a/makefiles/module.mk b/makefiles/module.mk
index 9c1a828cc..6311a68f1 100644
--- a/makefiles/module.mk
+++ b/makefiles/module.mk
@@ -113,7 +113,9 @@
ifeq ($(MODULE_MK),)
$(error No module makefile specified)
endif
-$(info %% MODULE_MK = $(MODULE_MK))
+# newline
+$(info )
+$(info %% MODULE $(MODULE_NAME) ($(MODULE_MK)))
#
# Get the board/toolchain config
@@ -125,10 +127,11 @@ include $(BOARD_FILE)
#
include $(MODULE_MK)
MODULE_SRC := $(dir $(MODULE_MK))
-$(info % MODULE_NAME = $(MODULE_NAME))
-$(info % MODULE_SRC = $(MODULE_SRC))
-$(info % MODULE_OBJ = $(MODULE_OBJ))
-$(info % MODULE_WORK_DIR = $(MODULE_WORK_DIR))
+# this information is helpful during build system debugging, but not quite otherwise
+# $(info % MODULE_NAME = $(MODULE_NAME))
+# $(info % MODULE_SRC = $(MODULE_SRC))
+# $(info % MODULE_OBJ = $(MODULE_OBJ))
+# $(info % MODULE_WORK_DIR = $(MODULE_WORK_DIR))
#
# Things that, if they change, might affect everything