[llvm-commits] CVS: llvm/utils/Makefile
Reid Spencer
reid at x10sys.com
Thu Mar 23 15:21:46 PST 2006
Changes in directory llvm/utils:
Makefile updated: 1.7 -> 1.8
---
Log message:
Update to llvm-config tool, by Erik Kidd:
1. Check for Perl and only build llvm-config if its available.
2. Add some virtual components
3. Don't depend on "standard" location for Perl, but configured location
4. Document the tool with a POD file.
This version is now ready for testing by users.
---
Diffs of the changes: (+4 -0)
Makefile | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/utils/Makefile
diff -u llvm/utils/Makefile:1.7 llvm/utils/Makefile:1.8
--- llvm/utils/Makefile:1.7 Mon Oct 25 03:27:37 2004
+++ llvm/utils/Makefile Thu Mar 23 17:21:29 2006
@@ -17,3 +17,7 @@
include $(LEVEL)/Makefile.common
+# Only include llvm-config if we have Perl to build it with.
+ifeq ($(HAVE_PERL),1)
+ DIRS += llvm-config
+endif
More information about the llvm-commits
mailing list