aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2015-01-30 10:17:11 +0100
committerLorenz Meier <lm@inf.ethz.ch>2015-02-11 07:40:59 +0100
commitf5eac48ebe9809ff137d0228c98b6a8818d9aeb8 (patch)
treed8a860a998c29884303b64a2ca9fbff5e480d4a6
parent9820406ceaf6a3fc280d202ae5b8d0a3b379dd83 (diff)
downloadpx4-firmware-f5eac48ebe9809ff137d0228c98b6a8818d9aeb8.tar.gz
px4-firmware-f5eac48ebe9809ff137d0228c98b6a8818d9aeb8.tar.bz2
px4-firmware-f5eac48ebe9809ff137d0228c98b6a8818d9aeb8.zip
Reduce make output to ensure the console printing is not slowing the build process down
-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