From: Daniel Dunbar Date: Thu, 10 Nov 2011 15:35:14 +0000 (+0000) Subject: build: Rename CBackend and CppBackend libraries to have CodeGen suffix, for X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=977665c24a4f2c0d05774deef607b6a20bc265f2;p=oota-llvm.git build: Rename CBackend and CppBackend libraries to have CodeGen suffix, for consistency with other targets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144292 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/CBackend/CMakeLists.txt b/lib/Target/CBackend/CMakeLists.txt index 96ae49f01fc..edf8ee7a8a9 100644 --- a/lib/Target/CBackend/CMakeLists.txt +++ b/lib/Target/CBackend/CMakeLists.txt @@ -1,8 +1,8 @@ -add_llvm_target(CBackend +add_llvm_target(CBackendCodeGen CBackend.cpp ) -add_llvm_library_dependencies(LLVMCBackend +add_llvm_library_dependencies(LLVMCBackendCodeGen LLVMAnalysis LLVMCBackendInfo LLVMCodeGen diff --git a/lib/Target/CBackend/Makefile b/lib/Target/CBackend/Makefile index 621948a9f4a..bac3474099c 100644 --- a/lib/Target/CBackend/Makefile +++ b/lib/Target/CBackend/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = LLVMCBackend +LIBRARYNAME = LLVMCBackendCodeGen DIRS = TargetInfo include $(LEVEL)/Makefile.common diff --git a/lib/Target/CppBackend/CMakeLists.txt b/lib/Target/CppBackend/CMakeLists.txt index 95b6058243d..53f68688b13 100644 --- a/lib/Target/CppBackend/CMakeLists.txt +++ b/lib/Target/CppBackend/CMakeLists.txt @@ -1,8 +1,8 @@ -add_llvm_target(CppBackend +add_llvm_target(CppBackendCodeGen CPPBackend.cpp ) -add_llvm_library_dependencies(LLVMCppBackend +add_llvm_library_dependencies(LLVMCppBackendCodeGen LLVMCore LLVMCppBackendInfo LLVMSupport diff --git a/lib/Target/CppBackend/Makefile b/lib/Target/CppBackend/Makefile index d75f4e87226..efc7463fda3 100644 --- a/lib/Target/CppBackend/Makefile +++ b/lib/Target/CppBackend/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = LLVMCppBackend +LIBRARYNAME = LLVMCppBackendCodeGen DIRS = TargetInfo include $(LEVEL)/Makefile.common