Don't print out ugly command line when building LibDeps.txt.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 23 Mar 2006 22:42:50 +0000 (22:42 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 23 Mar 2006 22:42:50 +0000 (22:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27001 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-config/Makefile
utils/llvm-config/Makefile

index 8a11a279d186af822a08c0eb680da6aa59f16d70..c4a5407374afaff86327b33b89f876cc2e409816 100644 (file)
@@ -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.
index 8a11a279d186af822a08c0eb680da6aa59f16d70..c4a5407374afaff86327b33b89f876cc2e409816 100644 (file)
@@ -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.