[llvm-commits] CVS: llvm/utils/llvm-config/Makefile

Reid Spencer reid at x10sys.com
Thu Mar 23 14:43:03 PST 2006



Changes in directory llvm/utils/llvm-config:

Makefile updated: 1.2 -> 1.3
---
Log message:

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


---
Diffs of the changes:  (+3 -1)

 Makefile |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)


Index: llvm/utils/llvm-config/Makefile
diff -u llvm/utils/llvm-config/Makefile:1.2 llvm/utils/llvm-config/Makefile:1.3
--- llvm/utils/llvm-config/Makefile:1.2	Wed Mar 22 09:59:55 2006
+++ llvm/utils/llvm-config/Makefile	Thu Mar 23 16:42:50 2006
@@ -24,7 +24,9 @@
 # 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.






More information about the llvm-commits mailing list