From f9de17b7ed7688b0c8dcadd23349cf186e545a6d Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Fri, 11 Apr 2025 15:11:05 +0000 Subject: [PATCH] Makefile.rs90: make silent mode toggable --- Makefile.rs90 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.rs90 b/Makefile.rs90 index 3f58131d44..97be97022e 100644 --- a/Makefile.rs90 +++ b/Makefile.rs90 @@ -166,7 +166,9 @@ CXXFLAGS += $(DEF_FLAGS) HEADERS = $(wildcard */*/*.h) $(wildcard */*.h) $(wildcard *.h) -Q := @ +ifneq ($(V),1) + Q := @ +endif RARCH_OBJ := $(addprefix $(OBJDIR)/,$(OBJ))