summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-12 17:02:40 +0000
committerChris Lattner <sabre@nondot.org>2002-09-12 17:02:40 +0000
commit287d4436c5afff553019f8971f382e36e02bc0af (patch)
treeea3e9742bd81693024ff1394d718ff9d93e82d92 /Makefile.common
parentb5f096fc5195f2f525d5573dce73ae614900e32f (diff)
downloadllvm-287d4436c5afff553019f8971f382e36e02bc0af.tar.gz
llvm-287d4436c5afff553019f8971f382e36e02bc0af.tar.bz2
llvm-287d4436c5afff553019f8971f382e36e02bc0af.tar.xz
Make sure to print a message when linking a tool
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index 8e298946ad..2415e887a3 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -304,9 +304,11 @@ clean::
$(VERB) rm -f $(TOOLEXENAMES)
$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
+ @echo ======= Linking $(TOOLNAME) debug executable =======
$(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
+ @echo ======= Linking $(TOOLNAME) release executable =======
$(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
endif