summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-10 15:35:14 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-10 15:35:14 +0000
commit977665c24a4f2c0d05774deef607b6a20bc265f2 (patch)
treec03073a9f84f9e5153a91023cb9ef96bd11e6c76 /lib
parentb191f5a7ef6e1e5006bb5b15b25b1dd5199b499c (diff)
downloadllvm-977665c24a4f2c0d05774deef607b6a20bc265f2.tar.gz
llvm-977665c24a4f2c0d05774deef607b6a20bc265f2.tar.bz2
llvm-977665c24a4f2c0d05774deef607b6a20bc265f2.tar.xz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/CBackend/CMakeLists.txt4
-rw-r--r--lib/Target/CBackend/Makefile2
-rw-r--r--lib/Target/CppBackend/CMakeLists.txt4
-rw-r--r--lib/Target/CppBackend/Makefile2
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/CBackend/CMakeLists.txt b/lib/Target/CBackend/CMakeLists.txt
index 96ae49f01f..edf8ee7a8a 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 621948a9f4..bac3474099 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 95b6058243..53f68688b1 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 d75f4e8722..efc7463fda 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