Nuke the old JIT.
[oota-llvm.git] / lib / Target / CMakeLists.txt
index 4d02d1e4a5b9e24beeb13e92aaa7176319c277e1..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
-  TargetFrameLowering.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()