mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 10:42:05 +00:00
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:
parent
32f75c6a42
commit
43164b34b1
@ -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 :=
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user