blob: c26e0ada5bc15ef71a5d3dd9785bbcc83aae34c6 [file] [log] [blame]
John Criswelle488e932003-10-20 22:26:57 +00001##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
Misha Brukman9b8f5422009-01-09 16:44:42 +00002#
John Criswelle488e932003-10-20 22:26:57 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattnerfc643c52007-12-29 20:09:26 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukman9b8f5422009-01-09 16:44:42 +00007#
John Criswelle488e932003-10-20 22:26:57 +00008##===----------------------------------------------------------------------===##
Chris Lattner92101ac2001-08-23 17:05:04 +00009LEVEL = ../..
Reid Spencer6cb21d42004-10-27 23:18:45 +000010LIBRARYNAME = LLVMExecutionEngine
Eli Bendersky61b18512012-03-13 08:33:15 +000011
12include $(LEVEL)/Makefile.config
13
Jim Grosbach6e563312011-03-21 22:15:52 +000014PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
Chris Lattnerfe11a972002-12-23 23:59:41 +000015
Eli Bendersky61b18512012-03-13 08:33:15 +000016ifeq ($(USE_INTEL_JITEVENTS), 1)
17PARALLEL_DIRS += IntelJITEvents
18endif
19
20ifeq ($(USE_OPROFILE), 1)
21PARALLEL_DIRS += OProfileJIT
22endif
23
24include $(LLVM_SRC_ROOT)/Makefile.rules