summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--utils/TableGen/Makefile1
-rw-r--r--utils/unittest/googletest/Makefile2
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 058eabcf42..123595dc55 100644
--- a/Makefile
+++ b/Makefile
@@ -71,10 +71,9 @@ ifeq ($(MAKECMDGOALS),unittests)
OPTIONAL_DIRS :=
endif
-# Don't install utils, examples, or projects they are only used to
-# build LLVM.
+# Use NO_INSTALL define of the Makefile of each directory for deciding
+# if the directory is installed or not
ifeq ($(MAKECMDGOALS),install)
- DIRS := $(filter-out utils, $(DIRS))
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
endif
diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile
index ba0e157ec3..7ea88de055 100644
--- a/utils/TableGen/Makefile
+++ b/utils/TableGen/Makefile
@@ -9,7 +9,6 @@
LEVEL = ../..
TOOLNAME = tblgen
-NO_INSTALL = 1;
USEDLIBS = LLVMSupport.a LLVMSystem.a
REQUIRES_EH := 1
REQUIRES_RTTI := 1
diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile
index 6e262413cc..d709878449 100644
--- a/utils/unittest/googletest/Makefile
+++ b/utils/unittest/googletest/Makefile
@@ -22,4 +22,6 @@ ifeq ($(OS),MingW)
CPP.Flags += -DGTEST_OS_WINDOWS=1
endif
+NO_INSTALL = 1
+
include $(LEVEL)/Makefile.common