Add ARM relocations to ELFYAML
[oota-llvm.git] / lib / ExecutionEngine / Makefile
index 9cf483c479fb04072ab0d43bc4e3ae8f3c758bfb..cf714324e3b6e7ef84acffad46f960d847e986d8 100644 (file)
@@ -1,6 +1,24 @@
+##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
-TOOLNAME = lli
-USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target
+LIBRARYNAME = LLVMExecutionEngine
 
-include $(LEVEL)/Makefile.common
+include $(LEVEL)/Makefile.config
 
+PARALLEL_DIRS = Interpreter MCJIT RuntimeDyld
+
+ifeq ($(USE_INTEL_JITEVENTS), 1)
+PARALLEL_DIRS += IntelJITEvents
+endif
+
+ifeq ($(USE_OPROFILE), 1)
+PARALLEL_DIRS += OProfileJIT
+endif
+
+include $(LLVM_SRC_ROOT)/Makefile.rules