fix a bug in range information for $42, eliminate an
[oota-llvm.git] / tools / Makefile
index 7305f6bafebc9c07905bec50273ca3501c820126..0340c7f78bb983f4c1734ab7f2fd027f66b5f95b 100644 (file)
@@ -19,16 +19,28 @@ DIRS := llvm-config
 PARALLEL_DIRS := opt llvm-as llvm-dis \
                  llc llvm-ranlib llvm-ar llvm-nm \
                  llvm-ld llvm-prof llvm-link \
-                lli gccas gccld llvm-extract llvm-db \
-                bugpoint llvm-bcanalyzer llvm-stub llvmc
+                 lli llvm-extract \
+                 bugpoint llvm-bcanalyzer llvm-stub \
+                 llvm-mc llvmc
+
+# Let users override the set of tools to build from the command line.
+ifdef ONLY_TOOLS
+  OPTIONAL_PARALLEL_DIRS :=
+  PARALLEL_DIRS := $(ONLY_TOOLS)
+endif
 
 include $(LEVEL)/Makefile.config
 
-ifdef ENABLE_PIC
+ifeq ($(ENABLE_PIC),1)
   DIRS += lto
   ifdef BINUTILS_INCDIR
     DIRS += gold
   endif
 endif
 
+# No support for lto / gold on windows targets
+ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
+  DIRS := $(filter-out lto gold, $(DIRS))
+endif
+
 include $(LEVEL)/Makefile.common