Don't print out ugly command line when building LibDeps.txt.

llvm-svn: 27001
This commit is contained in:
Reid Spencer 2006-03-23 22:42:50 +00:00
parent 2e5162fa6e
commit 14c00d8272

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.