mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
esp32/Makefile: Use $(Q) prefix on all commands.
This prevents printing the lengthy command and makes the build output a little cleaner. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -70,12 +70,12 @@ endif
|
||||
HELP_BUILD_ERROR ?= "See \033[1;31mhttps://github.com/micropython/micropython/wiki/Build-Troubleshooting\033[0m"
|
||||
|
||||
define RUN_IDF_PY
|
||||
idf.py $(IDFPY_FLAGS) -B $(BUILD) $(1)
|
||||
$(Q)idf.py $(IDFPY_FLAGS) -B $(BUILD) $(1)
|
||||
endef
|
||||
|
||||
all:
|
||||
idf.py $(IDFPY_FLAGS) -B $(BUILD) build || (echo -e $(HELP_BUILD_ERROR); false)
|
||||
@$(PYTHON) makeimg.py \
|
||||
$(Q)idf.py $(IDFPY_FLAGS) -B $(BUILD) build || (echo -e $(HELP_BUILD_ERROR); false)
|
||||
$(Q)$(PYTHON) makeimg.py \
|
||||
$(BUILD)/sdkconfig \
|
||||
$(BUILD)/bootloader/bootloader.bin \
|
||||
$(BUILD)/partition_table/partition-table.bin \
|
||||
@@ -112,4 +112,4 @@ size-files:
|
||||
# This is done in a dedicated build directory as some CMake cache values are not
|
||||
# set correctly if not all submodules are loaded yet.
|
||||
submodules:
|
||||
IDF_COMPONENT_MANAGER=0 idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure
|
||||
$(Q)IDF_COMPONENT_MANAGER=0 idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure
|
||||
|
Reference in New Issue
Block a user