[Concept,04/42] Makefile: Silence the example Rust build

Message ID 20250919201507.4024144-5-sjg@u-boot.org
State New
Headers
Series video: Support a cursor more generally |

Commit Message

Simon Glass Sept. 19, 2025, 8:14 p.m. UTC
  From: Simon Glass <sjg@chromium.org>

We don't need messages printed when building. Remove them.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 examples/rust/Makefile | 3 ---
 1 file changed, 3 deletions(-)
  

Patch

diff --git a/examples/rust/Makefile b/examples/rust/Makefile
index d9fcedea60d..d372907d585 100644
--- a/examples/rust/Makefile
+++ b/examples/rust/Makefile
@@ -41,8 +41,6 @@  $(OUTDIR):
 
 # Build dynamic version (links with libu-boot.so)
 $(OUTDIR)/demo: $(RUST_SOURCES) $(UBOOT_BUILD)/libu-boot.so | $(OUTDIR)
-	@echo "Building Rust demo (dynamic) with library from $(UBOOT_BUILD)"
-	@echo "OUTDIR=$(OUTDIR), abspath=$(OUTDIR_ABS)"
 	@if [ ! -f "$(UBOOT_BUILD)/libu-boot.so" ]; then \
 		echo "No shared library at $(UBOOT_BUILD)/libu-boot.so" >&2; \
 		echo "Please build U-Boot: make sandbox_defconfig && make" >&2; \
@@ -54,7 +52,6 @@  $(OUTDIR)/demo: $(RUST_SOURCES) $(UBOOT_BUILD)/libu-boot.so | $(OUTDIR)
 
 # Build static version (links with libu-boot.a)
 $(OUTDIR)/demo_static: $(RUST_SOURCES) $(UBOOT_BUILD)/libu-boot.a | $(OUTDIR)
-	@echo "Building Rust demo (static) with library from $(UBOOT_BUILD)"
 	@if [ ! -f "$(UBOOT_BUILD)/libu-boot.a" ]; then \
 		echo "No static library at $(UBOOT_BUILD)/libu-boot.a" >&2; \
 		echo "Please build U-Boot: make sandbox_defconfig && make" >&2; \