When determining a canonical insert position, don't climb deeper
[oota-llvm.git] / lib / Transforms / Makefile
index 454c4760e4b4777d62735aebffd501a849dcca2e..648d10f7b0bf32aa12bd28f6c7a9a9212f3d8247 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 InstCombine IPO Hello
 
-include $(LEVEL)/Makefile.common
+include $(LEVEL)/Makefile.config
 
+# Some targets don't support plugins
+ifdef $(TARGET_HAS_DYNAMIC_LIBS)
+  PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
+endif
+
+include $(LEVEL)/Makefile.common