Nuke the old JIT.
[oota-llvm.git] / lib / Target / CMakeLists.txt
index 4e62d96e464631388191239a56bd3c248dfa1c51..c61805b63f5ece28c7eaeb5e1f78d84ee121f953 100644 (file)
@@ -1,16 +1,16 @@
 add_llvm_library(LLVMTarget
-  Mangler.cpp
-  SubtargetFeature.cpp
   Target.cpp
-  TargetAsmInfo.cpp
-  TargetAsmLexer.cpp
-  TargetData.cpp
-  TargetELFWriterInfo.cpp
-  TargetFrameInfo.cpp
-  TargetInstrInfo.cpp
   TargetIntrinsicInfo.cpp
+  TargetLibraryInfo.cpp
   TargetLoweringObjectFile.cpp
   TargetMachine.cpp
-  TargetRegisterInfo.cpp
-  TargetSubtarget.cpp
+  TargetMachineC.cpp
+  TargetSubtargetInfo.cpp
   )
+
+list(APPEND LLVM_COMMON_DEPENDS intrinsics_gen)
+
+foreach(t ${LLVM_TARGETS_TO_BUILD})
+  message(STATUS "Targeting ${t}")
+  add_subdirectory(${t})
+endforeach()