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
This commit is contained in:
Reid Spencer 2006-03-23 22:42:50 +00:00
parent 716aefcd91
commit 025213e9f2
2 changed files with 6 additions and 2 deletions

View 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.

View 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.