Use StringRef::startswith to do some string comparisons.
[oota-llvm.git] / lib / Transforms / Makefile
index bf9599ad53b5b7af7149e879716b4a2c5fa89424..e527be25decb1f32cfa7b089eca8d1ceb06ef536 100644 (file)
@@ -1,14 +1,20 @@
 ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
-PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
+PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
 
-include $(LEVEL)/Makefile.common
+include $(LEVEL)/Makefile.config
 
+# No support for plugins on windows targets
+ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
+  PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
+endif
+
+include $(LEVEL)/Makefile.common