X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FMakefile;h=c26e0ada5bc15ef71a5d3dd9785bbcc83aae34c6;hb=318b7cc7f10d41370929ff93274de29c11f87b81;hp=a0e73d715001191f7fc267b10d454f324e977ca0;hpb=c9d8beff59246e01aa3eb14e5b3a1c19897144f8;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index a0e73d71500..c26e0ada5bc 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,10 +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 = bcreader vmcore analysis.a support.a target.a transforms.a +LIBRARYNAME = LLVMExecutionEngine -# Have gcc tell the linker to export symbols from the program so that -# dynamically loaded modules can be linked against them. -# -TOOLLINKOPTS = -ldl +include $(LEVEL)/Makefile.config + +PARALLEL_DIRS = Interpreter JIT MCJIT 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