When determining a canonical insert position, don't climb deeper
[oota-llvm.git] / lib / Transforms / Makefile
index 25cee595fd2dcb8254213e240d0378d1cb5e8a97..648d10f7b0bf32aa12bd28f6c7a9a9212f3d8247 100644 (file)
@@ -1,15 +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
-LIBRARYNAME = LLVMTransforms
-BUILD_ARCHIVE = 1
+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