From 9f03069ebe68522e18497d864eadd413543b01b1 Mon Sep 17 00:00:00 2001 From: rexy712 Date: Thu, 19 Mar 2020 10:15:49 -0700 Subject: [PATCH] Add stripping to progress makefile --- makefile.exe_progress | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile.exe_progress b/makefile.exe_progress index 1b79bf8..ad695de 100644 --- a/makefile.exe_progress +++ b/makefile.exe_progress @@ -177,7 +177,8 @@ endif #Called in POST_TARGETS when RELEASE=1 .PHONY: do_strip do_strip: - $(STRIP) --strip-all "$(MAIN_EXECUTABLE)" + @$(call PRINT_PERCENT,Stripping $(MAIN_EXECUTABLE)) + $(SILENCER)$(STRIP) --strip-all "$(MAIN_EXECUTABLE)" #Link executable $(MAIN_EXECUTABLE): $(OBJECTS)