Generalize support for analyzing loops to include SLE/SGE loop exit conditions
[oota-llvm.git] / tools / Makefile
index 0b98201693eff8cdcfd72ebda9c7de2f65e5a6a0..2726c1f3e43e0ddc4c1c3ee4ca6f9f00b8f846ec 100644 (file)
@@ -1,32 +1,29 @@
 ##===- tools/Makefile --------------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL := ..
-# NOTE: The tools are organized into five groups of four consisting of one 
-# large and three small executables. This is done to minimize memory load 
+# NOTE: The tools are organized into five groups of four consisting of one
+# large and three small executables. This is done to minimize memory load
 # in parallel builds.  Please retain this ordering.
 PARALLEL_DIRS := llvm-config  \
-                 opt llvm-as llvm-dis llvm-upgrade \
+                 opt llvm-as llvm-dis \
                  llc llvm-ranlib llvm-ar llvm-nm \
-                 llvm-ld llvmc llvm-prof llvm-link \
-                lli gccas gccld llvm-extract llvm-db llvm2cpp \
-                bugpoint llvm-bcanalyzer llvm-stub
+                 llvm-ld llvm-prof llvm-link \
+                lli gccas gccld llvm-extract llvm-db \
+                bugpoint llvm-bcanalyzer llvm-stub llvmc
 
 
 include $(LEVEL)/Makefile.config
 
-# Disable liblto as it is going away
-#PARALLEL_DIRS += lto
-
 # only build new lto project on Darwin for now
 ifeq ($(OS),Darwin)
-#PARALLEL_DIRS += lto2
+PARALLEL_DIRS += lto
 endif
 
 include $(LEVEL)/Makefile.common