X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=lib%2FExecutionEngine%2FMakefile;h=e9a5b79ddf62d49dfbbf36c6a4f8aedb0cd906a0;hb=de9b4c2b535af5c1dcfcb7c9f8f1b527e4373ec9;hp=c31fb5e2da26cb3fc8babe3412cb35eb0bfa6dbc;hpb=fe11a97fcde7c63109c3ad36570657807d0cd6ef;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index c31fb5e2da2..e9a5b79ddf6 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,14 +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 -PARALLEL_DIRS = Interpreter JIT +LIBRARYNAME = LLVMExecutionEngine -JITLIBS = lli-jit codegen x86 scalaropts.a -USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore analysis.a support.a target.a -#transforms.a +include $(LEVEL)/Makefile.config -# Have gcc tell the linker to export symbols from the program so that -# dynamically loaded modules can be linked against them. -# -TOOLLINKOPTS = -ldl +PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld + +ifeq ($(USE_INTEL_JITEVENTS), 1) +PARALLEL_DIRS += IntelJITEvents +endif + +ifeq ($(USE_OPROFILE), 1) +PARALLEL_DIRS += OProfileJIT +endif -include $(LEVEL)/Makefile.common +include $(LLVM_SRC_ROOT)/Makefile.rules