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