[Orc] Move some code up into the JITCompileCallbackManager base class. NFC.
[oota-llvm.git] / unittests / ExecutionEngine / Makefile
index e837a7d4fd3e6a3ab894da6e628f4f887cb29ecd..c19f8d688d1bc395f9a8dbffc26219bf750434f6 100644 (file)
@@ -8,12 +8,15 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
+TESTNAME = ExecutionEngine
+LINK_COMPONENTS :=interpreter
 
 include $(LEVEL)/Makefile.config
 
-PARALLEL_DIRS = JIT
+PARALLEL_DIRS = Orc
 
-include $(LEVEL)/Makefile.common
+ifeq ($(TARGET_HAS_JIT),1)
+  PARALLEL_DIRS += MCJIT
+endif
 
-clean::
-       $(Verb) $(RM) -f *Tests
+include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest