diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-06-13 05:11:14 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-06-13 05:11:14 +0000 |
commit | 104ad064df78d047008b0079aed419d1bfd8aa8a (patch) | |
tree | 1b90342a0d88e0a25fe9f81d6fb431cffc7be80b /llvm/lib | |
parent | 3e79bb74e249143f6c76234818a6bd1786f27dad (diff) | |
download | bcm5719-llvm-104ad064df78d047008b0079aed419d1bfd8aa8a.tar.gz bcm5719-llvm-104ad064df78d047008b0079aed419d1bfd8aa8a.zip |
AMDGPU: s/R600/AMDGPU/ in the Makefiles
Now the library names in the Makefiles match the library names in
LLVMBuild.txt.
This should hopefully fix the remaining bot failures.
llvm-svn: 239661
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AMDGPU/AsmParser/Makefile | 6 | ||||
-rw-r--r-- | llvm/lib/Target/AMDGPU/InstPrinter/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/Target/AMDGPU/Makefile | 2 | ||||
-rw-r--r-- | llvm/lib/Target/AMDGPU/TargetInfo/Makefile | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Target/AMDGPU/AsmParser/Makefile b/llvm/lib/Target/AMDGPU/AsmParser/Makefile index e6689b54b6b..5ad21902803 100644 --- a/llvm/lib/Target/AMDGPU/AsmParser/Makefile +++ b/llvm/lib/Target/AMDGPU/AsmParser/Makefile @@ -1,4 +1,4 @@ -##===- lib/Target/R600/AsmParser/Makefile ----------------*- Makefile -*-===## +##===- lib/Target/AMDGPU/AsmParser/Makefile ----------------*- Makefile -*-===## # # The LLVM Compiler Infrastructure # @@ -7,9 +7,9 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../../.. -LIBRARYNAME = LLVMR600AsmParser +LIBRARYNAME = LLVMAMDGPUAsmParser -# Hack: we need to include 'main' R600 target directory to grab private headers +# Hack: we need to include 'main' AMDGPU target directory to grab private headers CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. include $(LEVEL)/Makefile.common diff --git a/llvm/lib/Target/AMDGPU/InstPrinter/Makefile b/llvm/lib/Target/AMDGPU/InstPrinter/Makefile index a794cc1124e..4e48ac7e28a 100644 --- a/llvm/lib/Target/AMDGPU/InstPrinter/Makefile +++ b/llvm/lib/Target/AMDGPU/InstPrinter/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../../.. -LIBRARYNAME = LLVMR600AsmPrinter +LIBRARYNAME = LLVMAMDGPUAsmPrinter # Hack: we need to include 'main' x86 target directory to grab private headers CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. diff --git a/llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile b/llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile index 8894a7607f4..5ad68662d98 100644 --- a/llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile +++ b/llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../../../.. -LIBRARYNAME = LLVMR600Desc +LIBRARYNAME = LLVMAMDGPUDesc # Hack: we need to include 'main' target directory to grab private headers CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. diff --git a/llvm/lib/Target/AMDGPU/Makefile b/llvm/lib/Target/AMDGPU/Makefile index 64a7c8c045c..2e2de502086 100644 --- a/llvm/lib/Target/AMDGPU/Makefile +++ b/llvm/lib/Target/AMDGPU/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = LLVMR600CodeGen +LIBRARYNAME = LLVMAMDGPUCodeGen TARGET = AMDGPU # Make sure that tblgen is run, first thing. diff --git a/llvm/lib/Target/AMDGPU/TargetInfo/Makefile b/llvm/lib/Target/AMDGPU/TargetInfo/Makefile index b8ac4e78230..1b232871bd6 100644 --- a/llvm/lib/Target/AMDGPU/TargetInfo/Makefile +++ b/llvm/lib/Target/AMDGPU/TargetInfo/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../../.. -LIBRARYNAME = LLVMR600Info +LIBRARYNAME = LLVMAMDGPUInfo # Hack: we need to include 'main' target directory to grab private headers CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. |