Add profiling support for Intel Parallel Amplifier XE (VTune) for JITted code in...
[oota-llvm.git] / lib / ExecutionEngine / Makefile
1 ##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
9 LEVEL = ../..
10 LIBRARYNAME = LLVMExecutionEngine
11
12 include $(LEVEL)/Makefile.config
13
14 PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
15
16 ifeq ($(USE_INTEL_JITEVENTS), 1)
17 PARALLEL_DIRS += IntelJITEvents
18 endif
19
20 ifeq ($(USE_OPROFILE), 1)
21 PARALLEL_DIRS += OProfileJIT
22 endif
23
24 include $(LLVM_SRC_ROOT)/Makefile.rules