summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-05 09:43:17 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-05 09:43:17 +0000
commit11c63a67916065a366fe4acc6081b99777c9303a (patch)
tree3a7f7ad569921beabec56d1894892910ade8c684 /Makefile
parent32d84765c8e9e6bcfd5a012ceb625d64c44a373b (diff)
downloadllvm-11c63a67916065a366fe4acc6081b99777c9303a.tar.gz
llvm-11c63a67916065a366fe4acc6081b99777c9303a.tar.bz2
llvm-11c63a67916065a366fe4acc6081b99777c9303a.tar.xz
Don't prevent install target from descending into the utils directory.
It prevents "make install" on a clean directory from working. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33905 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 0 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index c45ac976dd..602898c82f 100644
--- a/Makefile
+++ b/Makefile
@@ -40,13 +40,6 @@ 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