diff options
-rw-r--r-- | llvm/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/Makefile b/llvm/Makefile index 8f16ce2e7b3..b6ee8b024d2 100644 --- a/llvm/Makefile +++ b/llvm/Makefile @@ -40,6 +40,13 @@ ifeq ($(MAKECMDGOALS),tools-only) 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 |