For PR723:
authorReid Spencer <rspencer@reidspencer.com>
Fri, 7 Apr 2006 15:58:18 +0000 (15:58 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 7 Apr 2006 15:58:18 +0000 (15:58 +0000)
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

Makefile

index a56fca48b106c3b5e85e4ffb1b6bd5fe73cd4ee8..f40eb2bc4c2770d84d784c4157a1a4c427680c92 100644 (file)
--- 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