build/CMake: Finish removal of add_llvm_library_dependencies.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 29 Nov 2011 19:25:30 +0000 (19:25 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 29 Nov 2011 19:25:30 +0000 (19:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145420 91177308-0d34-0410-b5e6-96231b3b80d8

78 files changed:
cmake/modules/AddLLVM.cmake
lib/Analysis/CMakeLists.txt
lib/Analysis/IPA/CMakeLists.txt
lib/Archive/CMakeLists.txt
lib/AsmParser/CMakeLists.txt
lib/Bitcode/Reader/CMakeLists.txt
lib/Bitcode/Writer/CMakeLists.txt
lib/CodeGen/AsmPrinter/CMakeLists.txt
lib/CodeGen/CMakeLists.txt
lib/CodeGen/SelectionDAG/CMakeLists.txt
lib/DebugInfo/CMakeLists.txt
lib/ExecutionEngine/CMakeLists.txt
lib/ExecutionEngine/Interpreter/CMakeLists.txt
lib/ExecutionEngine/JIT/CMakeLists.txt
lib/ExecutionEngine/MCJIT/CMakeLists.txt
lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
lib/Linker/CMakeLists.txt
lib/MC/CMakeLists.txt
lib/MC/MCDisassembler/CMakeLists.txt
lib/MC/MCParser/CMakeLists.txt
lib/Object/CMakeLists.txt
lib/TableGen/CMakeLists.txt
lib/Target/ARM/AsmParser/CMakeLists.txt
lib/Target/ARM/CMakeLists.txt
lib/Target/ARM/Disassembler/CMakeLists.txt
lib/Target/ARM/InstPrinter/CMakeLists.txt
lib/Target/ARM/MCTargetDesc/CMakeLists.txt
lib/Target/ARM/TargetInfo/CMakeLists.txt
lib/Target/CBackend/CMakeLists.txt
lib/Target/CBackend/TargetInfo/CMakeLists.txt
lib/Target/CMakeLists.txt
lib/Target/CellSPU/CMakeLists.txt
lib/Target/CellSPU/MCTargetDesc/CMakeLists.txt
lib/Target/CellSPU/TargetInfo/CMakeLists.txt
lib/Target/CppBackend/CMakeLists.txt
lib/Target/CppBackend/TargetInfo/CMakeLists.txt
lib/Target/MBlaze/AsmParser/CMakeLists.txt
lib/Target/MBlaze/CMakeLists.txt
lib/Target/MBlaze/Disassembler/CMakeLists.txt
lib/Target/MBlaze/InstPrinter/CMakeLists.txt
lib/Target/MBlaze/MCTargetDesc/CMakeLists.txt
lib/Target/MBlaze/TargetInfo/CMakeLists.txt
lib/Target/MSP430/CMakeLists.txt
lib/Target/MSP430/InstPrinter/CMakeLists.txt
lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
lib/Target/MSP430/TargetInfo/CMakeLists.txt
lib/Target/Mips/CMakeLists.txt
lib/Target/Mips/InstPrinter/CMakeLists.txt
lib/Target/Mips/MCTargetDesc/CMakeLists.txt
lib/Target/Mips/TargetInfo/CMakeLists.txt
lib/Target/PTX/CMakeLists.txt
lib/Target/PTX/InstPrinter/CMakeLists.txt
lib/Target/PTX/MCTargetDesc/CMakeLists.txt
lib/Target/PTX/TargetInfo/CMakeLists.txt
lib/Target/PowerPC/CMakeLists.txt
lib/Target/PowerPC/InstPrinter/CMakeLists.txt
lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
lib/Target/PowerPC/TargetInfo/CMakeLists.txt
lib/Target/Sparc/CMakeLists.txt
lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
lib/Target/Sparc/TargetInfo/CMakeLists.txt
lib/Target/X86/AsmParser/CMakeLists.txt
lib/Target/X86/CMakeLists.txt
lib/Target/X86/Disassembler/CMakeLists.txt
lib/Target/X86/InstPrinter/CMakeLists.txt
lib/Target/X86/MCTargetDesc/CMakeLists.txt
lib/Target/X86/TargetInfo/CMakeLists.txt
lib/Target/X86/Utils/CMakeLists.txt
lib/Target/XCore/CMakeLists.txt
lib/Target/XCore/MCTargetDesc/CMakeLists.txt
lib/Target/XCore/TargetInfo/CMakeLists.txt
lib/Transforms/IPO/CMakeLists.txt
lib/Transforms/InstCombine/CMakeLists.txt
lib/Transforms/Instrumentation/CMakeLists.txt
lib/Transforms/Scalar/CMakeLists.txt
lib/Transforms/Utils/CMakeLists.txt
lib/VMCore/CMakeLists.txt
utils/unittest/CMakeLists.txt

index 88e993f5e534c4c8a83e2794e947eb576df5a6e3..388208b6a8afe964ec617c415e1e040965b97df8 100755 (executable)
@@ -35,9 +35,6 @@ macro(add_llvm_library name)
   target_link_libraries(${name} ${lib_deps})
 endmacro(add_llvm_library name)
 
-macro(add_llvm_library_dependencies name)
-endmacro(add_llvm_library_dependencies name)
-
 macro(add_llvm_loadable_module name)
   if( NOT LLVM_ON_UNIX OR CYGWIN )
     message(STATUS "Loadable modules not supported on this platform.
index e79459d7a409276aec42f7a2bd37b3bcbf5cb81d..cb1e1ebbd18ca096ac429b5278e21245400bd195 100644 (file)
@@ -58,10 +58,4 @@ add_llvm_library(LLVMAnalysis
   ValueTracking.cpp
   )
 
-add_llvm_library_dependencies(LLVMAnalysis
-  LLVMCore
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(IPA)
index eae83fdc369ce30582fbc34affc40e2279de3540..8ffef29870ae0fef8fbf8d23ad2965c40c565e88 100644 (file)
@@ -5,9 +5,3 @@ add_llvm_library(LLVMipa
   GlobalsModRef.cpp
   IPA.cpp
   )
-
-add_llvm_library_dependencies(LLVMipa
-  LLVMAnalysis
-  LLVMCore
-  LLVMSupport
-  )
index b52974e0753de210d863c762c35488da7fba8170..7ff478a41a594c1e91e70109601ffdab7f3eb8a2 100644 (file)
@@ -3,9 +3,3 @@ add_llvm_library(LLVMArchive
   ArchiveReader.cpp
   ArchiveWriter.cpp
   )
-
-add_llvm_library_dependencies(LLVMArchive
-  LLVMBitReader
-  LLVMCore
-  LLVMSupport
-  )
index 749601510b5b0ae83cdfea8a3c23fdd0a30326d7..985ebe20098854afc12c6c603a8e0dc491c748e3 100644 (file)
@@ -4,8 +4,3 @@ add_llvm_library(LLVMAsmParser
   LLParser.cpp
   Parser.cpp
   )
-
-add_llvm_library_dependencies(LLVMAsmParser
-  LLVMCore
-  LLVMSupport
-  )
index 37bebc449635246ccc3d79a7ffdea7161bdc4658..693d4310b834576facf1a38d84a9165d6d4918de 100644 (file)
@@ -2,8 +2,3 @@ add_llvm_library(LLVMBitReader
   BitReader.cpp
   BitcodeReader.cpp
   )
-
-add_llvm_library_dependencies(LLVMBitReader
-  LLVMCore
-  LLVMSupport
-  )
index 3cf905697a4252308b2e96a6c3bd78b67ae9511a..f097b097c3371d5e8124293c3892ec5f5aac8e0e 100644 (file)
@@ -4,8 +4,3 @@ add_llvm_library(LLVMBitWriter
   BitcodeWriterPass.cpp
   ValueEnumerator.cpp
   )
-
-add_llvm_library_dependencies(LLVMBitWriter
-  LLVMCore
-  LLVMSupport
-  )
index f6ce17d221aa55f039a48e34cea0432d9249dfb4..58fe2ed9d35759ad082f1e7296df1519d671588b 100644 (file)
@@ -12,13 +12,3 @@ add_llvm_library(LLVMAsmPrinter
   OcamlGCPrinter.cpp
   Win64Exception.cpp
   )
-
-add_llvm_library_dependencies(LLVMAsmPrinter
-  LLVMAnalysis
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMMCParser
-  LLVMSupport
-  LLVMTarget
-  )
index c8d4dcf8398d3a390d949b704bec26e2332351c8..8de966d9ba9088f698a841fa1edb2efc95384294 100644 (file)
@@ -99,15 +99,5 @@ add_llvm_library(LLVMCodeGen
   VirtRegMap.cpp
   )
 
-add_llvm_library_dependencies(LLVMCodeGen
-  LLVMAnalysis
-  LLVMCore
-  LLVMMC
-  LLVMScalarOpts
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
-
 add_subdirectory(SelectionDAG)
 add_subdirectory(AsmPrinter)
index ff4184fccd5bf1289563857c90c41d02de4bf305..60233267a7a8485733422b5c20c555980b1d8cc8 100644 (file)
@@ -20,13 +20,3 @@ add_llvm_library(LLVMSelectionDAG
   TargetLowering.cpp
   TargetSelectionDAGInfo.cpp
   )
-
-add_llvm_library_dependencies(LLVMSelectionDAG
-  LLVMAnalysis
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
index fdffcb6a77c60ab028fea3528ca84908fbc7e0b7..441f1e86dcd8fdfa48acba740f97e744989535a4 100644 (file)
@@ -10,7 +10,3 @@ add_llvm_library(LLVMDebugInfo
   DWARFDebugLine.cpp
   DWARFFormValue.cpp
   )
-
-add_llvm_library_dependencies(LLVMDebugInfo
-  LLVMSupport
-  )
index fb14d41e91d2d4999d00238daf0aac4d8a4c3e9e..58caae830f4964a4b94f2ea81403f6177c2526e9 100644 (file)
@@ -4,13 +4,6 @@ add_llvm_library(LLVMExecutionEngine
   TargetSelect.cpp
   )
 
-add_llvm_library_dependencies(LLVMExecutionEngine
-  LLVMCore
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(Interpreter)
 add_subdirectory(JIT)
 add_subdirectory(MCJIT)
index 4fb58c2e3783b4cb48663c652f2afdcd0051f75b..d331f830b62eee906217eb849317d708fd00197b 100644 (file)
@@ -12,14 +12,6 @@ add_llvm_library(LLVMInterpreter
   Interpreter.cpp
   )
 
-add_llvm_library_dependencies(LLVMInterpreter
-  LLVMCodeGen
-  LLVMCore
-  LLVMExecutionEngine
-  LLVMSupport
-  LLVMTarget
-  )
-
 if( LLVM_ENABLE_FFI )
   target_link_libraries( LLVMInterpreter ${FFI_LIBRARY_PATH} )
 endif()
index 813ccced9a2c5fefd064f5f9f4ff7731023a7873..cefb0aedde0ba0fadff19a009f0d7d18aedc6a5d 100644 (file)
@@ -10,13 +10,3 @@ add_llvm_library(LLVMJIT
   JITMemoryManager.cpp
   OProfileJITEventListener.cpp
   )
-
-add_llvm_library_dependencies(LLVMJIT
-  LLVMCodeGen
-  LLVMCore
-  LLVMExecutionEngine
-  LLVMMC
-  LLVMRuntimeDyld
-  LLVMSupport
-  LLVMTarget
-  )
index aae8a1b2c521e9e81f6847be9cf5f10161cc0e4d..38fdffa0e991c292bcef9ccbdaf908542a7b59b8 100644 (file)
@@ -2,11 +2,3 @@ add_llvm_library(LLVMMCJIT
   MCJIT.cpp
   Intercept.cpp
   )
-
-add_llvm_library_dependencies(LLVMMCJIT
-  LLVMCore
-  LLVMExecutionEngine
-  LLVMRuntimeDyld
-  LLVMSupport
-  LLVMTarget
-  )
index c236d1d9d115c7f68f2da9edfec719922750d344..59bdfee3db435c94c4645a287aa26141399cda94 100644 (file)
@@ -2,8 +2,3 @@ add_llvm_library(LLVMRuntimeDyld
   RuntimeDyld.cpp
   RuntimeDyldMachO.cpp
   )
-
-add_llvm_library_dependencies(LLVMRuntimeDyld
-  LLVMObject
-  LLVMSupport
-  )
index 4d8824bfcb3f06567b294e1e5f48807e822c46d3..0b6d2f4218e3a4bfe8d8621219cfb94e0d4d1d4c 100644 (file)
@@ -4,11 +4,3 @@ add_llvm_library(LLVMLinker
   LinkModules.cpp
   Linker.cpp
   )
-
-add_llvm_library_dependencies(LLVMLinker
-  LLVMArchive
-  LLVMBitReader
-  LLVMCore
-  LLVMSupport
-  LLVMTransformUtils
-  )
index a4ac1bf60529ae6786ba54c98ff3b0f9bee39661..b2e62a57001ea9c0e63791258ce24cae9d24da2d 100644 (file)
@@ -45,10 +45,5 @@ add_llvm_library(LLVMMC
   WinCOFFStreamer.cpp
   )
 
-add_llvm_library_dependencies(LLVMMC
-  LLVMObject
-  LLVMSupport
-  )
-
 add_subdirectory(MCParser)
 add_subdirectory(MCDisassembler)
index 0de632e1f213c0b65bbb7ef1df75d41a38a436cf..5e2cd8387db1c6db9777de649ae861b41e0db745 100644 (file)
@@ -6,9 +6,3 @@ add_llvm_library(LLVMMCDisassembler
   EDOperand.cpp
   EDToken.cpp
   )
-
-add_llvm_library_dependencies(LLVMMCDisassembler
-  LLVMMC
-  LLVMMCParser
-  LLVMSupport
-  )
index 299d28168948e7c93cdcc6fb722751f8951e126f..222f237bfd6415d04f5abbe79ee274a3d6efd56b 100644 (file)
@@ -9,8 +9,3 @@ add_llvm_library(LLVMMCParser
   MCAsmParserExtension.cpp
   MCTargetAsmParser.cpp
   )
-
-add_llvm_library_dependencies(LLVMMCParser
-  LLVMMC
-  LLVMSupport
-  )
index 86eb51a016460668db6b4996ae640aefda8fb357..c20fc0cc399ddcc54ee6218e59174e3d47f0a056 100644 (file)
@@ -9,8 +9,3 @@ add_llvm_library(LLVMObject
   Object.cpp
   ObjectFile.cpp
   )
-
-add_llvm_library_dependencies(LLVMObject
-  LLVMCore
-  LLVMSupport
-  )
index 0db41346911d5c365f860806ef4da8913da44587..e678087a572d61e4fab0c5af40f74f675ca2fedc 100644 (file)
@@ -10,7 +10,3 @@ add_llvm_library(LLVMTableGen
   TGLexer.cpp
   TGParser.cpp
   )
-
-add_llvm_library_dependencies(LLVMTableGen
-  LLVMSupport
-  )
index 3f5ad39debc3130a67f3b664a3ecfa006116935a..e24a1b17867a22d8ee55eab3ecb5436a67f53861 100644 (file)
@@ -6,11 +6,3 @@ add_llvm_library(LLVMARMAsmParser
   )
 
 add_dependencies(LLVMARMAsmParser ARMCommonTableGen)
-
-add_llvm_library_dependencies(LLVMARMAsmParser
-  LLVMARMDesc
-  LLVMARMInfo
-  LLVMMC
-  LLVMMCParser
-  LLVMSupport
-  )
index 511932e2bd20cafdd78ed054a3e0da36ec1c782b..04cdf55faae9c7f141bcbc56ff6e0f7d8bd01d8d 100644 (file)
@@ -48,20 +48,6 @@ add_llvm_target(ARMCodeGen
   Thumb2SizeReduction.cpp
   )
 
-add_llvm_library_dependencies(LLVMARMCodeGen
-  LLVMARMAsmPrinter
-  LLVMARMDesc
-  LLVMARMInfo
-  LLVMAnalysis
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 # workaround for hanging compilation on MSVC9, 10
 if( MSVC_VERSION EQUAL 1600 OR MSVC_VERSION EQUAL 1500 )
 set_property(
index da87751150e85f94c843263f0b7d9ae2672f9632..9de6e5c511bde0e344350847e90972fbb39d7176 100644 (file)
@@ -11,11 +11,3 @@ set_property(
   )
 endif()
 add_dependencies(LLVMARMDisassembler ARMCommonTableGen)
-
-add_llvm_library_dependencies(LLVMARMDisassembler
-  LLVMARMCodeGen
-  LLVMARMDesc
-  LLVMARMInfo
-  LLVMMC
-  LLVMSupport
-  )
index fa0b4957ccdee67a35000e82a46313ebfb4673df..e2d4819b4b4a2d4b0bb71b3f35c4532c0b06f0b9 100644 (file)
@@ -5,8 +5,3 @@ add_llvm_library(LLVMARMAsmPrinter
   )
 
 add_dependencies(LLVMARMAsmPrinter ARMCommonTableGen)
-
-add_llvm_library_dependencies(LLVMARMAsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
index f5293140e8665eae85aadddaf085a0ed414e69b7..f2cf78add8bb7c36b8101bf594f896b67dbfd10c 100644 (file)
@@ -10,10 +10,3 @@ add_dependencies(LLVMARMDesc ARMCommonTableGen)
 
 # Hack: we need to include 'main' target directory to grab private headers
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/.. ${CMAKE_CURRENT_BINARY_DIR}/..)
-
-add_llvm_library_dependencies(LLVMARMDesc
-  LLVMARMAsmPrinter
-  LLVMARMInfo
-  LLVMMC
-  LLVMSupport
-  )
index 8b38b136ce64552ae31b14c45ba277d3a84e6077..533e747894caa926fe7ad5e63e9a1b8c285eb040 100644 (file)
@@ -5,9 +5,3 @@ add_llvm_library(LLVMARMInfo
   )
 
 add_dependencies(LLVMARMInfo ARMCommonTableGen)
-
-add_llvm_library_dependencies(LLVMARMInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
index edf8ee7a8a903550957be63e973162f598c56e46..fa819a4e0b47efed9934cd7d718ef8ea778d45a1 100644 (file)
@@ -2,16 +2,4 @@ add_llvm_target(CBackendCodeGen
   CBackend.cpp
   )
 
-add_llvm_library_dependencies(LLVMCBackendCodeGen
-  LLVMAnalysis
-  LLVMCBackendInfo
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMScalarOpts
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
-
 add_subdirectory(TargetInfo)
index 8e616bebd5320903d256a2502570994b781b9ebb..62036161fd81c35bdba0ae1980b85a7e6ed20a71 100644 (file)
@@ -3,9 +3,3 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/
 add_llvm_library(LLVMCBackendInfo
   CBackendTargetInfo.cpp
   )
-
-add_llvm_library_dependencies(LLVMCBackendInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
index 60e21895b35f1e9719b807591b5d7ddce59643ca..cc2462551e113546f192b5c2d781f2760c6453b2 100644 (file)
@@ -13,12 +13,6 @@ add_llvm_library(LLVMTarget
   TargetSubtargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMTarget
-  LLVMCore
-  LLVMMC
-  LLVMSupport
-  )
-
 foreach(t ${LLVM_TARGETS_TO_BUILD})
   message(STATUS "Targeting ${t}")
   add_subdirectory(${t})
index b442a5c158303c67a153f368a8f71a82cf5f6367..6c67c2dc48b02ca6d246b556386342a0a371ee53 100644 (file)
@@ -23,17 +23,5 @@ add_llvm_target(CellSPUCodeGen
   SPUNopFiller.cpp
   )
 
-add_llvm_library_dependencies(LLVMCellSPUCodeGen
-  LLVMAsmPrinter
-  LLVMCellSPUDesc
-  LLVMCellSPUInfo
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index d41fe934e2c5c85b39736837549af3f6e1627a23..0027bdbf6ca1dc49a4717bd2c08ff71d5e21f9ff 100644 (file)
@@ -3,9 +3,4 @@ add_llvm_library(LLVMCellSPUDesc
   SPUMCAsmInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMCellSPUDesc
-  LLVMCellSPUInfo
-  LLVMMC
-  )
-
 add_dependencies(LLVMCellSPUDesc CellSPUCommonTableGen)
index 3f2d6b09adad534e207e6d0c1a1a3dae0b54748b..6a98f95db6642cc3b07b208a9809da819a085578 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMCellSPUInfo
   CellSPUTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMCellSPUInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMCellSPUInfo CellSPUCommonTableGen)
index 53f68688b13cf2bd54a6377c64a8aac5cbed8c75..515e1dd7e39feda4c51213ac6e12acdfca2e2ac4 100644 (file)
@@ -2,11 +2,4 @@ add_llvm_target(CppBackendCodeGen
   CPPBackend.cpp
   )
 
-add_llvm_library_dependencies(LLVMCppBackendCodeGen
-  LLVMCore
-  LLVMCppBackendInfo
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(TargetInfo)
index 738b21559ee25eb28cc5999e2e01223df534f108..f82d72e378cb5b61a5b0ae9e760ddd82af7a7318 100644 (file)
@@ -3,9 +3,3 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/
 add_llvm_library(LLVMCppBackendInfo
   CppBackendTargetInfo.cpp
   )
-
-add_llvm_library_dependencies(LLVMCppBackendInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
index ec8f52a92cb1e9eaa2f6216467d97ef4503b4753..813767ba6d65ea914bc9e798ae43c18e68731c2e 100644 (file)
@@ -6,11 +6,4 @@ add_llvm_library(LLVMMBlazeAsmParser
   MBlazeAsmParser.cpp
   )
 
-add_llvm_library_dependencies(LLVMMBlazeAsmParser
-  LLVMMBlazeInfo
-  LLVMMC
-  LLVMMCParser
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMBlazeAsmParser MBlazeCommonTableGen)
index d3f1383c36cdc6e4a8282868a99ceecf03f7f33d..71095e5ea614b6c3aa2ef5322b1a440a774099bc 100644 (file)
@@ -29,19 +29,6 @@ add_llvm_target(MBlazeCodeGen
   MBlazeELFWriterInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMBlazeCodeGen
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMBlazeAsmPrinter
-  LLVMMBlazeDesc
-  LLVMMBlazeInfo
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(AsmParser)
 add_subdirectory(Disassembler)
 add_subdirectory(InstPrinter)
index e0a53ee5174ece59272a9700edf95dd448516079..be2dce156d56080ddd54c90800f5c5f2d0d4af7d 100644 (file)
@@ -13,11 +13,4 @@ set_property(
   )
 endif()
 
-add_llvm_library_dependencies(LLVMMBlazeDisassembler
-  LLVMMBlazeDesc
-  LLVMMBlazeInfo
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMBlazeDisassembler MBlazeCommonTableGen)
index aff0b3d992d4cbabe44c88d393aad193a78c96d7..586e2d3eefc33c66127d97f2cb39bcec92cbc467 100644 (file)
@@ -5,9 +5,4 @@ add_llvm_library(LLVMMBlazeAsmPrinter
   MBlazeInstPrinter.cpp
   )
 
-add_llvm_library_dependencies(LLVMMBlazeAsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMBlazeAsmPrinter MBlazeCommonTableGen)
index 37871b6916c9f0d8760b88af73494a2ae0ca9634..6fa7f433a396571cf37fa3c39bc5734ff0e67957 100644 (file)
@@ -5,11 +5,4 @@ add_llvm_library(LLVMMBlazeDesc
   MBlazeMCTargetDesc.cpp
   )
 
-add_llvm_library_dependencies(LLVMMBlazeDesc
-  LLVMMBlazeAsmPrinter
-  LLVMMBlazeInfo
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMBlazeDesc MBlazeCommonTableGen)
index 93fce58883edc5a57d9bae6beaa4e56a3ac0772c..b554d9b15e4510750b430d295a0dfc36a31d5411 100644 (file)
@@ -5,10 +5,4 @@ add_llvm_library(LLVMMBlazeInfo
   MBlazeTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMBlazeInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMMBlazeInfo MBlazeCommonTableGen)
index 55c2d7dce48d77e3f6e798a6025e0fa6c100177b..7daa7a261a512caaf1ec69c7889cb73d3699f0dd 100644 (file)
@@ -22,19 +22,6 @@ add_llvm_target(MSP430CodeGen
   MSP430MCInstLower.cpp
   )
 
-add_llvm_library_dependencies(LLVMMSP430CodeGen
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMMSP430AsmPrinter
-  LLVMMSP430Desc
-  LLVMMSP430Info
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(InstPrinter)
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index ce39d9517efe15639df20fb0fed3c8cb8862c810..64ac994b7f473965436e1cdc4e6e11b456a4f3fc 100644 (file)
@@ -4,9 +4,4 @@ add_llvm_library(LLVMMSP430AsmPrinter
   MSP430InstPrinter.cpp
   )
 
-add_llvm_library_dependencies(LLVMMSP430AsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMSP430AsmPrinter MSP430CommonTableGen)
index c2dd448be944467621eaf1ee3a5476aa7554bfe2..adc95c52014ec93f9a6706725d4b79244b616c40 100644 (file)
@@ -3,12 +3,4 @@ add_llvm_library(LLVMMSP430Desc
   MSP430MCAsmInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMSP430Desc
-  LLVMMC
-  LLVMMSP430AsmPrinter
-  LLVMMSP430Info
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMMSP430Desc MSP430CommonTableGen)
index 1526946af5fd661a91b48308b19308e37d5f2aaf..f6b40eab31b66ebf33305ada37d3e073cd142160 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMMSP430Info
   MSP430TargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMSP430Info
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMMSP430Info MSP430CommonTableGen)
index ac9cfc09dc72f1fb37edeb4b1c01df1ff54caace..a13c0e8b3d81629b9205e591a051d3c9bee8b0bd 100644 (file)
@@ -29,19 +29,6 @@ add_llvm_target(MipsCodeGen
   MipsSelectionDAGInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMipsCodeGen
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMMipsAsmPrinter
-  LLVMMipsDesc
-  LLVMMipsInfo
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(InstPrinter)
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index c45b35df8c115a5bd3f6af566a79dc1d1d46032e..3e9fbf1c55660bde3eb241de97dc1848af372f04 100644 (file)
@@ -4,9 +4,4 @@ add_llvm_library(LLVMMipsAsmPrinter
   MipsInstPrinter.cpp
   )
 
-add_llvm_library_dependencies(LLVMMipsAsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMipsAsmPrinter MipsCommonTableGen)
index 2ceb5c95746bd85b1401cbf9945282fa78d39234..0eb0a558f7a32f1daefc9ea85e7d759f4f895320 100644 (file)
@@ -5,11 +5,4 @@ add_llvm_library(LLVMMipsDesc
   MipsMCTargetDesc.cpp
   )
 
-add_llvm_library_dependencies(LLVMMipsDesc
-  LLVMMC
-  LLVMMipsAsmPrinter
-  LLVMMipsInfo
-  LLVMSupport
-  )
-
 add_dependencies(LLVMMipsDesc MipsCommonTableGen)
index 5692604504a8efd3165722de499e122ccb07be01..4172d00a33f0465907b5e1a73d61ee708cd82bc5 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMMipsInfo
   MipsTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMMipsInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMMipsInfo MipsCommonTableGen)
index 6709c1bd850f3825e535aecf98f655d1ce6601e0..a9f4330fc69d0427c52ece607e72730ff694cd00 100644 (file)
@@ -25,20 +25,6 @@ add_llvm_target(PTXCodeGen
   PTXTargetMachine.cpp
   )
 
-add_llvm_library_dependencies(LLVMPTXCodeGen
-  LLVMAnalysis
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMPTXDesc
-  LLVMPTXInfo
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
-
 add_subdirectory(TargetInfo)
 add_subdirectory(InstPrinter)
 add_subdirectory(MCTargetDesc)
index 029d06031dd231cc624106ee693f2adced7da29c..b25289347ba5d0f005322c4886c2229d7cb887bb 100644 (file)
@@ -6,8 +6,3 @@ add_llvm_library(LLVMPTXAsmPrinter
 
 add_dependencies(LLVMPTXAsmPrinter PTXCommonTableGen)
 
-add_llvm_library_dependencies(LLVMPTXAsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
-
index 94dbcee0509ac40f9fdb2cd6ddf2876f250282e0..d1fd74c369b9604528daef188f5b6f69444f3118 100644 (file)
@@ -3,11 +3,4 @@ add_llvm_library(LLVMPTXDesc
   PTXMCAsmInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMPTXDesc
-  LLVMMC
-  LLVMPTXAsmPrinter
-  LLVMPTXInfo
-  LLVMSupport
-  )
-
 add_dependencies(LLVMPTXDesc PTXCommonTableGen)
index 2366e45294f83f1f867dbff8d2606b73fbe17891..d9a5da3a90829b207efd6382fcf0e7a094138c23 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMPTXInfo
   PTXTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMPTXInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMPTXInfo PTXCommonTableGen)
index 05c1ffd68570e8b941e2dbd4889616c135de105b..1b85495173dca05fb135b1492e6c652b2bf6fdf9 100644 (file)
@@ -27,20 +27,6 @@ add_llvm_target(PowerPCCodeGen
   PPCSelectionDAGInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMPowerPCCodeGen
-  LLVMAnalysis
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMPowerPCAsmPrinter
-  LLVMPowerPCDesc
-  LLVMPowerPCInfo
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(InstPrinter)
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index 1d857e2f48d44cb48dcb9337bdcd1a6334972148..a605cc4b5f274db030f5f6aa093f7991fb84aaa7 100644 (file)
@@ -4,9 +4,4 @@ add_llvm_library(LLVMPowerPCAsmPrinter
   PPCInstPrinter.cpp
   )
 
-add_llvm_library_dependencies(LLVMPowerPCAsmPrinter
-  LLVMMC
-  LLVMSupport
-  )
-
 add_dependencies(LLVMPowerPCAsmPrinter PowerPCCommonTableGen)
index c4041db8cf0bc99fec362ae33ba0117912b70550..febf438bb7dc8c032ac064dda1944f2a54bc3b20 100644 (file)
@@ -6,11 +6,4 @@ add_llvm_library(LLVMPowerPCDesc
   PPCPredicates.cpp
   )
 
-add_llvm_library_dependencies(LLVMPowerPCDesc
-  LLVMMC
-  LLVMPowerPCAsmPrinter
-  LLVMPowerPCInfo
-  LLVMSupport
-  )
-
 add_dependencies(LLVMPowerPCDesc PowerPCCommonTableGen)
index f63111f465c33222445f905b24d015e01925fe78..fdb8a62b9d24218559aaac7ee65c0ea92c129c5b 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMPowerPCInfo
   PowerPCTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMPowerPCInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMPowerPCInfo PowerPCCommonTableGen)
index 9687951fd74065138a6772c8f99e3a3b3c85f86f..56ee7c2a4f2b9b3b4ccd251f479d24b359dfb069 100644 (file)
@@ -22,17 +22,5 @@ add_llvm_target(SparcCodeGen
   SparcSelectionDAGInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMSparcCodeGen
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSparcDesc
-  LLVMSparcInfo
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index d3bdf0b503aebde79c0b41fc88dbbc346dc431c6..9d4db4d25ef7ecc20cb3a84552042dddb65a45c7 100644 (file)
@@ -3,10 +3,4 @@ add_llvm_library(LLVMSparcDesc
   SparcMCAsmInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMSparcDesc
-  LLVMMC
-  LLVMSparcInfo
-  LLVMSupport
-  )
-
 add_dependencies(LLVMSparcDesc SparcCommonTableGen)
index a0760231386a57b525f848f9606bbe52a35a6c2f..b0d031e0c2bef12eabde441a018be57c66afaf2a 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMSparcInfo
   SparcTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMSparcInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMSparcInfo SparcCommonTableGen)
index 94aca7abb2bdf8a1481152e62b826fa31d6ec279..47489bb06c4e6a90c8fbcba001ff9edc363d8d67 100644 (file)
@@ -5,12 +5,4 @@ add_llvm_library(LLVMX86AsmParser
   X86AsmParser.cpp
   )
 
-add_llvm_library_dependencies(LLVMX86AsmParser
-  LLVMMC
-  LLVMMCParser
-  LLVMSupport
-  LLVMX86Desc
-  LLVMX86Info
-  )
-
 add_dependencies(LLVMX86AsmParser X86CommonTableGen)
index 4542d4bfca689b670df2279bf38f35a32d325a7d..be15899b150a2bbc4bac46709cf16ac45271e0ec 100644 (file)
@@ -51,21 +51,6 @@ endif()
 
 add_llvm_target(X86CodeGen ${sources})
 
-add_llvm_library_dependencies(LLVMX86CodeGen
-  LLVMAnalysis
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  LLVMX86AsmPrinter
-  LLVMX86Desc
-  LLVMX86Info
-  LLVMX86Utils
-  )
-
 add_subdirectory(AsmParser)
 add_subdirectory(Disassembler)
 add_subdirectory(InstPrinter)
index 4f570d56e60f095b4268b7f855105b2921d0a125..0cd6db96dabe8562bd980e58d419d27f64e41d19 100644 (file)
@@ -5,12 +5,6 @@ add_llvm_library(LLVMX86Disassembler
   X86DisassemblerDecoder.c
   )
 
-add_llvm_library_dependencies(LLVMX86Disassembler
-  LLVMMC
-  LLVMSupport
-  LLVMX86Info
-  )
-
 # workaround for hanging compilation on MSVC9 and 10
 if( MSVC_VERSION EQUAL 1400 OR MSVC_VERSION EQUAL 1500 OR MSVC_VERSION EQUAL 1600 )
 set_property(
index 2a2b5dbb43db67cde7567772efa938a362b87be5..28e2460d8233b3ca02af450e1c954cc2541f445f 100644 (file)
@@ -6,10 +6,4 @@ add_llvm_library(LLVMX86AsmPrinter
   X86InstComments.cpp
   )
 
-add_llvm_library_dependencies(LLVMX86AsmPrinter
-  LLVMMC
-  LLVMSupport
-  LLVMX86Utils
-  )
-
 add_dependencies(LLVMX86AsmPrinter X86CommonTableGen)
index 264e7912f83f3bbcc5413eee34f95baa5f0755a2..ab2ebb43a0b6b5bca238a7dc697ef7a53b61eeb1 100644 (file)
@@ -6,13 +6,6 @@ add_llvm_library(LLVMX86Desc
   X86MachObjectWriter.cpp
   )
 
-add_llvm_library_dependencies(LLVMX86Desc
-  LLVMMC
-  LLVMSupport
-  LLVMX86AsmPrinter
-  LLVMX86Info
-  )
-
 add_dependencies(LLVMX86Desc X86CommonTableGen)
 
 # Hack: we need to include 'main' target directory to grab private headers
index 4da00fa44f4d410d0679f4d03895069cd336ca1c..b1d0b9f9f9bd121a2a245c827dec760775a5f858 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMX86Info
   X86TargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMX86Info
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMX86Info X86CommonTableGen)
index caffd8b378168f3baf58ceefacf8765ee12d4df8..2e72c344d99c17e7123b8d2dfcad99510e7eadf7 100644 (file)
@@ -4,9 +4,4 @@ add_llvm_library(LLVMX86Utils
   X86ShuffleDecode.cpp
   )
 
-add_llvm_library_dependencies(LLVMX86Utils
-  LLVMCore
-  LLVMSupport
-  )
-
 add_dependencies(LLVMX86Utils X86CommonTableGen)
index d91da8c9f5a61a07006d3ad066515bb401e9b5e6..de4abfcbd371c131e78dd54d0b328fd2acbebe49 100644 (file)
@@ -21,17 +21,5 @@ add_llvm_target(XCoreCodeGen
   XCoreSelectionDAGInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMXCoreCodeGen
-  LLVMAsmPrinter
-  LLVMCodeGen
-  LLVMCore
-  LLVMMC
-  LLVMSelectionDAG
-  LLVMSupport
-  LLVMTarget
-  LLVMXCoreDesc
-  LLVMXCoreInfo
-  )
-
 add_subdirectory(TargetInfo)
 add_subdirectory(MCTargetDesc)
index 269822db7113b86f28bf388c6428aa8aab2f42d1..3a3f5b4cc63ee234c19aed5e55dd5fb3b79f23f2 100644 (file)
@@ -3,11 +3,6 @@ add_llvm_library(LLVMXCoreDesc
   XCoreMCAsmInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMXCoreDesc
-  LLVMMC
-  LLVMXCoreInfo
-  )
-
 add_dependencies(LLVMXCoreDesc XCoreCommonTableGen)
 
 # Hack: we need to include 'main' target directory to grab private headers
index 7f84f69043058a25eebeebcb150225fc6b01cefd..2c34b8730c85ada1018631fd82809fd9fc6faa0e 100644 (file)
@@ -4,10 +4,4 @@ add_llvm_library(LLVMXCoreInfo
   XCoreTargetInfo.cpp
   )
 
-add_llvm_library_dependencies(LLVMXCoreInfo
-  LLVMMC
-  LLVMSupport
-  LLVMTarget
-  )
-
 add_dependencies(LLVMXCoreInfo XCoreCommonTableGen)
index 8fa66fc2ae9253660bc0906e49ef44f72df56d60..58b3551cd7a2fd0265ded531aac1fa15bc7f1345 100644 (file)
@@ -20,14 +20,3 @@ add_llvm_library(LLVMipo
   StripDeadPrototypes.cpp
   StripSymbols.cpp
   )
-
-add_llvm_library_dependencies(LLVMipo
-  LLVMAnalysis
-  LLVMCore
-  LLVMInstCombine
-  LLVMScalarOpts
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  LLVMipa
-  )
index a46d5adc0ab40adb12f3283f2142f766cf32cbfc..d070ccc0d63fb21f55f3d1664ebbfd6a2a5fae9d 100644 (file)
@@ -13,11 +13,3 @@ add_llvm_library(LLVMInstCombine
   InstCombineSimplifyDemanded.cpp
   InstCombineVectorOps.cpp
   )
-
-add_llvm_library_dependencies(LLVMInstCombine
-  LLVMAnalysis
-  LLVMCore
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
index 929b7cd394f23eb3a984e307c62faa9cb50bc8f5..a4a1fef51f4c900fad51defabef9660fdd5c3e63 100644 (file)
@@ -7,10 +7,3 @@ add_llvm_library(LLVMInstrumentation
   PathProfiling.cpp
   ProfilingUtils.cpp
   )
-
-add_llvm_library_dependencies(LLVMInstrumentation
-  LLVMAnalysis
-  LLVMCore
-  LLVMSupport
-  LLVMTransformUtils
-  )
index a6f0cf3239a61c372c926e09bb16329e6f482bab..d660c722c7caab5c91e111725e00df11537f28fc 100644 (file)
@@ -32,12 +32,3 @@ add_llvm_library(LLVMScalarOpts
   Sink.cpp
   TailRecursionElimination.cpp
   )
-
-add_llvm_library_dependencies(LLVMScalarOpts
-  LLVMAnalysis
-  LLVMCore
-  LLVMInstCombine
-  LLVMSupport
-  LLVMTarget
-  LLVMTransformUtils
-  )
index 6d5432d9632b7717809940a95d4b668674058305..d43a275aa88289774b77e79cd801cd90612dbc88 100644 (file)
@@ -28,11 +28,3 @@ add_llvm_library(LLVMTransformUtils
   Utils.cpp
   ValueMapper.cpp
   )
-
-add_llvm_library_dependencies(LLVMTransformUtils
-  LLVMAnalysis
-  LLVMCore
-  LLVMSupport
-  LLVMTarget
-  LLVMipa
-  )
index 0404297500c097486402774a712f43aab430d03a..99eeba13c46ae3224a7cacc8f889ec7554947d97 100644 (file)
@@ -37,5 +37,3 @@ add_llvm_library(LLVMCore
   ValueTypes.cpp
   Verifier.cpp
   )
-
-add_llvm_library_dependencies(LLVMCore LLVMSupport)
index d882de2b66bfc54a7b53a87df652facb52ec0ab4..73491f0721d5e700aed054fc5d0bf3be3b864788 100644 (file)
@@ -40,11 +40,3 @@ add_llvm_library(gtest
 add_llvm_library(gtest_main
   UnitTestMain/TestMain.cpp
   )
-
-add_llvm_library_dependencies(gtest
-  LLVMSupport
-  )
-
-add_llvm_library_dependencies(gtest_main
-  gtest
-  )