Don't prevent install target from descending into the utils directory.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 5 Feb 2007 09:43:17 +0000 (09:43 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 5 Feb 2007 09:43:17 +0000 (09:43 +0000)
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

Makefile

index c45ac976ddf0e75e1c4e3657d64b0a8c8e910de7..602898c82f772a3bcf0c95076effb7c544311de1 100644 (file)
--- 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