Add stripping to progress makefile

This commit is contained in:
rexy712 2020-03-19 10:15:49 -07:00
parent 3229ef5c58
commit 9f03069ebe

View File

@ -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)