[llvm-commits] [compiler-rt] r93712 - in /compiler-rt/trunk/make: config.mk subdir.mk

Daniel Dunbar daniel at zuster.org
Sun Jan 17 22:48:13 PST 2010


Author: ddunbar
Date: Mon Jan 18 00:48:12 2010
New Revision: 93712

URL: http://llvm.org/viewvc/llvm-project?rev=93712&view=rev
Log:
Rename DebugMake variable to DEBUGMAKE for consistency (variables that are designed to be overridden), and use VERBOSE=1 instead of VERBOSE!="" for controlling verbosity.

Modified:
    compiler-rt/trunk/make/config.mk
    compiler-rt/trunk/make/subdir.mk

Modified: compiler-rt/trunk/make/config.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/config.mk?rev=93712&r1=93711&r2=93712&view=diff

==============================================================================
--- compiler-rt/trunk/make/config.mk (original)
+++ compiler-rt/trunk/make/config.mk Mon Jan 18 00:48:12 2010
@@ -65,11 +65,14 @@
 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 :=

Modified: compiler-rt/trunk/make/subdir.mk
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/subdir.mk?rev=93712&r1=93711&r2=93712&view=diff

==============================================================================
--- compiler-rt/trunk/make/subdir.mk (original)
+++ compiler-rt/trunk/make/subdir.mk Mon Jan 18 00:48:12 2010
@@ -4,7 +4,7 @@
   $(error "No Dir variable defined.")
 endif
 
-ifeq ($(DebugMake),1)
+ifeq ($(DEBUGMAKE),1)
   $(info MAKE: $(Dir): Processing subdirectory)
 endif
 
@@ -39,7 +39,7 @@
 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))





More information about the llvm-commits mailing list