Add a paragraph on prefix data layout.
[oota-llvm.git] / unittests / ExecutionEngine / Makefile
index e837a7d4fd3e6a3ab894da6e628f4f887cb29ecd..38e667ff98885f2264a23a53e9c35f96f6786353 100644 (file)
@@ -8,12 +8,13 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
+TESTNAME = ExecutionEngine
+LINK_COMPONENTS :=interpreter
 
 include $(LEVEL)/Makefile.config
 
-PARALLEL_DIRS = JIT
+ifeq ($(TARGET_HAS_JIT),1)
+  PARALLEL_DIRS = JIT MCJIT
+endif
 
-include $(LEVEL)/Makefile.common
-
-clean::
-       $(Verb) $(RM) -f *Tests
+include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest