X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FExecutionEngine%2FMakefile;h=cf714324e3b6e7ef84acffad46f960d847e986d8;hb=fc3aa4b4cdb2a451a2cb526736b822613a9aa120;hp=bc5578c0a2368d2362dc411386e7a6f6c027066a;hpb=365a76e46e7b22ee2cd7881d0a7055fc20930fd5;p=oota-llvm.git diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index bc5578c0a23..cf714324e3b 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,7 +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 -TOOLLINKOPTS = -ldl +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