From fadf677f06aac528d2a0264ebaff36e6f6d634cf Mon Sep 17 00:00:00 2001 From: Yifan Wu Date: Wed, 1 Feb 2023 21:10:31 +0800 Subject: [PATCH] Remove unnecessary output. --- user/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/Makefile b/user/Makefile index 5ca334ea..e95ed2f2 100644 --- a/user/Makefile +++ b/user/Makefile @@ -13,7 +13,7 @@ elf: $(APPS) @python3 build.py binary: elf - $(foreach elf, $(ELFS), $(OBJCOPY) $(elf) --strip-all -O binary $(patsubst $(TARGET_DIR)/%, $(TARGET_DIR)/%.bin, $(elf));) + @$(foreach elf, $(ELFS), $(OBJCOPY) $(elf) --strip-all -O binary $(patsubst $(TARGET_DIR)/%, $(TARGET_DIR)/%.bin, $(elf));) build: binary