2009-06-25 10:04:04 +08:00
|
|
|
##===- unittests/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 = ../..
|
2009-08-05 07:53:16 +08:00
|
|
|
TESTNAME = ExecutionEngine
|
2012-06-22 06:17:51 +08:00
|
|
|
LINK_COMPONENTS :=interpreter
|
2013-03-28 11:38:29 +08:00
|
|
|
|
2013-04-05 22:26:16 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2015-02-23 08:36:25 +08:00
|
|
|
PARALLEL_DIRS = Orc
|
|
|
|
|
2013-03-28 11:38:29 +08:00
|
|
|
ifeq ($(TARGET_HAS_JIT),1)
|
2015-02-23 08:53:35 +08:00
|
|
|
PARALLEL_DIRS += MCJIT
|
2013-03-28 11:38:29 +08:00
|
|
|
endif
|
2009-06-25 10:04:04 +08:00
|
|
|
|
2009-08-05 07:53:16 +08:00
|
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|