Rename DebugMake variable to DEBUGMAKE for consistency (variables that are designed to be overridden), and use VERBOSE=1 instead of VERBOSE!="" for controlling verbosity.

llvm-svn: 93712
This commit is contained in:
Daniel Dunbar 2010-01-18 06:48:12 +00:00
parent 32f75c6a42
commit 43164b34b1
2 changed files with 6 additions and 3 deletions

View File

@ -65,11 +65,14 @@ RANLIB.Flags := 2> /dev/null
LIPO := lipo
CP := cp
VERBOSE := 0
DEBUGMAKE := 0
###
# Automatic and derived variables.
# Adjust settings for verbose mode
ifndef VERBOSE
ifneq ($(VERBOSE),1)
Verb := @
else
Verb :=

View File

@ -4,7 +4,7 @@ ifeq ($(Dir),)
$(error "No Dir variable defined.")
endif
ifeq ($(DebugMake),1)
ifeq ($(DEBUGMAKE),1)
$(info MAKE: $(Dir): Processing subdirectory)
endif
@ -39,7 +39,7 @@ $(foreach config,$(ConfigsToTraverse), \
SubDirsList := $(SubDirs:%=$(Dir)/%)
ifeq ($(SubDirsList),)
else
ifeq ($(DebugMake),1)
ifeq ($(DEBUGMAKE),1)
$(info MAKE: Descending into subdirs: $(SubDirsList))
endif
$(foreach subdir,$(SubDirsList),$(eval include $(subdir)/Makefile.mk))