From fbf97b23266737dc7acd0b51d1c40cfc410e4e30 Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Fri, 11 Apr 2025 14:59:04 +0000 Subject: [PATCH] Makefile: don't print all objects removed by the clean target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index ab55ce662a..3e61d836a3 100644 --- a/Makefile +++ b/Makefile @@ -312,9 +312,13 @@ uninstall: rm -rf $(DESTDIR)$(ASSETS_DIR) clean: +ifneq ($(V),1) + @echo RM +else rm -rf $(OBJDIR_BASE) rm -f $(TARGET) rm -f *.d +endif .PHONY: all install uninstall clean