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