Jeffrey Yasskin | 0b08f3d | 2009-06-25 02:04:04 +0000 | [diff] [blame] | 1 | ##===- unittests/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 | |
| 10 | LEVEL = ../.. |
Jeffrey Yasskin | 337b124 | 2009-08-04 23:53:16 +0000 | [diff] [blame] | 11 | TESTNAME = ExecutionEngine |
NAKAMURA Takumi | 6fed668 | 2012-06-21 22:17:51 +0000 | [diff] [blame] | 12 | LINK_COMPONENTS :=interpreter |
Jyotsna Verma | 8542abd | 2013-03-28 03:38:29 +0000 | [diff] [blame] | 13 | |
Jyotsna Verma | b1180dc | 2013-04-05 14:26:16 +0000 | [diff] [blame] | 14 | include $(LEVEL)/Makefile.config |
| 15 | |
Jyotsna Verma | 8542abd | 2013-03-28 03:38:29 +0000 | [diff] [blame] | 16 | ifeq ($(TARGET_HAS_JIT),1) |
Jyotsna Verma | b1180dc | 2013-04-05 14:26:16 +0000 | [diff] [blame] | 17 | PARALLEL_DIRS = JIT MCJIT |
Jyotsna Verma | 8542abd | 2013-03-28 03:38:29 +0000 | [diff] [blame] | 18 | endif |
Jeffrey Yasskin | 0b08f3d | 2009-06-25 02:04:04 +0000 | [diff] [blame] | 19 | |
Jeffrey Yasskin | 337b124 | 2009-08-04 23:53:16 +0000 | [diff] [blame] | 20 | include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest |