ExecutionEngine: move createJIT() definition
[oota-llvm.git] / lib / ExecutionEngine / Makefile
index da98f66116f44e59340df1c72c91b85c87bd10c9..9a649a52cf9ee9cdd481476131083c23334a8520 100644 (file)
@@ -1,34 +1,13 @@
-LEVEL = ../..
-TOOLNAME = lli
-PARALLEL_DIRS = Interpreter JIT
-
-# Get the config name...
-include $(LEVEL)/Makefile.$(shell uname)
-
-# Generic JIT libraries
-JITLIBS   = lli-jit codegen
-ARCHLIBS  =
-
-# What the X86 JIT requires
-JITLIBS  += x86
-# X86 doesn't require any ARCHLIBS
-
-
-
-# What the Sparc JIT requires
-ifeq ($(ARCH),Sparc)
-JITLIBS  += sparc 
-ARCHLIBS  = sched livevar instrument.a profpaths \
-           bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
-           mapping select postopts.a preopts
-endif
-
-USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
-           transformutils.a bcreader vmcore support.a target.a
-
-# Have gcc tell the linker to export symbols from the program so that
-# dynamically loaded modules can be linked against them.
+##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
 #
-TOOLLINKOPTS = -ldl
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+LEVEL = ../..
+LIBRARYNAME = LLVMExecutionEngine
+PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
 
 include $(LEVEL)/Makefile.common