Recognize Neon VDUP shuffles during legalization instead of selection.
[oota-llvm.git] / lib / Transforms / Makefile
index 454c4760e4b4777d62735aebffd501a849dcca2e..5fe1eeb5c75238085fd4e2c610750baff8039804 100644 (file)
@@ -1,14 +1,20 @@
 ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
-# This file was developed by the LLVM research group and is distributed under
-# the University of Illinois Open Source License. See LICENSE.TXT for details.
-# 
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
-PARALLEL_DIRS = Utils Instrumentation Scalar IPO
+PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
 
-include $(LEVEL)/Makefile.common
+include $(LEVEL)/Makefile.config
 
+# No support for plugins on windows targets
+ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+  PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
+endif
+
+include $(LEVEL)/Makefile.common