Fix missing assignment of SILENCER variable in makefile.exe_progress

This commit is contained in:
rexy712 2021-09-15 13:49:56 -07:00
parent 041837b64c
commit 92e03cba5b

View File

@ -41,7 +41,7 @@ RELEASE?=0
MEMCHK?=0 MEMCHK?=0
UNDEFCHK?=0 UNDEFCHK?=0
SAVECFLAGS?=1 SAVECFLAGS?=1
VERBOSE=0 VERBOSE?=0
ifneq ($(WINDOWS),1) ifneq ($(WINDOWS),1)
#*nix settings #*nix settings
@ -136,6 +136,11 @@ ifeq ($(SAVECFLAGS),1)
OLD_COMPILEFLAGS::=$(file <$(CFLAGS_TMPFILE)) OLD_COMPILEFLAGS::=$(file <$(CFLAGS_TMPFILE))
endif endif
#prefix '@' to build commands to squelch their output and only output progress report
ifeq ($(VERBOSE),0)
SILENCER::=@
endif
#add dependency tracking and include directories #add dependency tracking and include directories
INTERNAL_COMPILERFLAGS=-c $(foreach dir,$(INCLUDE_DIRS),-I"$(dir)") -MMD -MP -MF"$(DEPDIR)/$(notdir $(patsubst %.o,%.d,$@))" INTERNAL_COMPILERFLAGS=-c $(foreach dir,$(INCLUDE_DIRS),-I"$(dir)") -MMD -MP -MF"$(DEPDIR)/$(notdir $(patsubst %.o,%.d,$@))"
INTERNAL_LINKFLAGS=$(foreach dir,$(LIBDIRS),-L"$(dir)") INTERNAL_LINKFLAGS=$(foreach dir,$(LIBDIRS),-L"$(dir)")