Fix missing assignment of SILENCER variable in makefile.exe_progress
This commit is contained in:
parent
041837b64c
commit
92e03cba5b
@ -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)")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user