Disable plugins / shared stuff generation on windows targets.
[oota-llvm.git] / tools / Makefile
index 471cdd0c2de90af28fc3e821df26ca912b1a9a9d..756d7d58c3c783d27135305f61f89d3b7ab3750f 100644 (file)
@@ -15,24 +15,25 @@ OPTIONAL_PARALLEL_DIRS := clang
 # 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 \
+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 gccas gccld llvm-extract llvm-db \
+                 bugpoint llvm-bcanalyzer llvm-stub llvmc
 
 include $(LEVEL)/Makefile.config
 
-# build lto project on Darwin or if PIC is enabled
-ifeq ($(OS),Darwin)
-PARALLEL_DIRS += lto
-else ($(ENABLE_PIC),1)
-PARALLEL_DIRS += lto
-ifdef BINUTILS_INCDIR
-PARALLEL_DIRS += gold
+ifeq ($(ENABLE_PIC),1)
+  DIRS += lto
+  ifdef BINUTILS_INCDIR
+    DIRS += gold
+  endif
 endif
+
+# No support for lto / gold on windows targets
+ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+  DIRS := $(filter-out lto gold, $(DIRS))
 endif
 
 include $(LEVEL)/Makefile.common