diff options
| author | Damien George <damien@micropython.org> | 2025-03-28 11:46:39 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-03-28 11:46:39 +1100 |
| commit | a828b99cffa97cc04c393a6fdec96bf9e39c07f5 (patch) | |
| tree | 7fc9e0560ae7df7f535c04d57fb50272a70a2df3 | |
| parent | 50da085d93de55719198fb4fb1272f467e7a16a7 (diff) | |
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>
| -rw-r--r-- | ports/esp32/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/esp32/Makefile b/ports/esp32/Makefile index a4e553185..7f31ea691 100644 --- a/ports/esp32/Makefile +++ b/ports/esp32/Makefile @@ -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 |
