[llvm-commits] CVS: llvm/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Fri Jun 2 15:34:52 PDT 2006
Changes in directory llvm:
Makefile updated: 1.60 -> 1.61
---
Log message:
Part of PR728: http://llvm.cs.uiuc.edu/PR728 , don't install examples or projects.
---
Diffs of the changes: (+5 -1)
Makefile | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
Index: llvm/Makefile
diff -u llvm/Makefile:1.60 llvm/Makefile:1.61
--- llvm/Makefile:1.60 Thu Jun 1 02:27:53 2006
+++ llvm/Makefile Fri Jun 2 17:34:39 2006
@@ -21,7 +21,11 @@
else
$(warning Skipping runtime libraries, llvm-gcc 4 detected.)
endif
- OPTIONAL_DIRS := examples projects
+
+ # Don't install examples or projects.
+ ifneq ($(MAKECMDGOALS),install)
+ OPTIONAL_DIRS := examples projects
+ endif
DIRS += docs
endif
endif
More information about the llvm-commits
mailing list