[llvm-commits] CVS: llvm/Makefile
Chris Lattner
sabre at nondot.org
Tue Feb 20 22:23:37 PST 2007
Changes in directory llvm:
Makefile updated: 1.69 -> 1.70
---
Log message:
revert r1.68. This breaks 'make install' without doing 'make' first, but
fixes PR1208: http://llvm.org/PR1208 .
---
Diffs of the changes: (+7 -0)
Makefile | 7 +++++++
1 files changed, 7 insertions(+)
Index: llvm/Makefile
diff -u llvm/Makefile:1.69 llvm/Makefile:1.70
--- llvm/Makefile:1.69 Mon Feb 5 17:18:58 2007
+++ llvm/Makefile Wed Feb 21 00:23:20 2007
@@ -40,6 +40,13 @@
OPTIONAL_DIRS :=
endif
+# Don't install utils, examples, or projects they are only used to
+# build LLVM.
+ifeq ($(MAKECMDGOALS),install)
+ DIRS := $(filter-out utils, $(DIRS))
+ OPTIONAL_DIRS :=
+endif
+
# Include the main makefile machinery.
include $(LLVM_SRC_ROOT)/Makefile.rules
More information about the llvm-commits
mailing list