From 025213e9f2c52e22c8cf5cfcb84ea59fe2cb76fe Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 23 Mar 2006 22:42:50 +0000 Subject: [PATCH] Don't print out ugly command line when building LibDeps.txt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27001 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-config/Makefile | 4 +++- utils/llvm-config/Makefile | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile index 8a11a279d18..c4a5407374a 100644 --- a/tools/llvm-config/Makefile +++ b/tools/llvm-config/Makefile @@ -24,7 +24,9 @@ SUB_LDFLAGS = # should only be re-built manually. No other rule in this file should # depend on LibDeps.txt. LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir) - $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt + $(Echo) "Regenerating LibDeps.txt" + $(Verb) $(LLVM_SRC_ROOT)/utils/GenLibDeps.pl -flat $(LibDir) | \ + sort > LibDeps.txt # Find all the cyclic dependencies between various LLVM libraries, so we # don't have to process them at runtime. diff --git a/utils/llvm-config/Makefile b/utils/llvm-config/Makefile index 8a11a279d18..c4a5407374a 100644 --- a/utils/llvm-config/Makefile +++ b/utils/llvm-config/Makefile @@ -24,7 +24,9 @@ SUB_LDFLAGS = # should only be re-built manually. No other rule in this file should # depend on LibDeps.txt. LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir) - $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt + $(Echo) "Regenerating LibDeps.txt" + $(Verb) $(LLVM_SRC_ROOT)/utils/GenLibDeps.pl -flat $(LibDir) | \ + sort > LibDeps.txt # Find all the cyclic dependencies between various LLVM libraries, so we # don't have to process them at runtime.