summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-04-07 15:58:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-04-07 15:58:18 +0000
commite22f3c004a04806dbe45936ab0b5e48e6c5bc016 (patch)
treea086737de9dba4d4a3331b5ebcf940e710601ee4 /Makefile
parentadc3b10a763a1a67069280fed47ed8cb225cbe90 (diff)
downloadllvm-e22f3c004a04806dbe45936ab0b5e48e6c5bc016.tar.gz
llvm-e22f3c004a04806dbe45936ab0b5e48e6c5bc016.tar.bz2
llvm-e22f3c004a04806dbe45936ab0b5e48e6c5bc016.tar.xz
For PR723:
Print out something at the end of the build that indicates what kind of build has just completed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a56fca48b1..f40eb2bc4c 100644
--- a/Makefile
+++ b/Makefile
@@ -74,3 +74,13 @@ $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
$(Echo) Regenerating $*
$(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
.PRECIOUS: $(FilesToConfigPATH)
+
+#NOTE: THis needs to remain as the last target definition in this file so
+#that it gets executed last.
+all::
+ $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build
+ifeq ($(BuildMode),Debug)
+ $(Echo) '*****' Note: Debug build can be 10 times slower than an
+ $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
+ $(Echo) '*****' make an optimized build.
+endif