Cleanup upstream build infrastructure files that we don't use.

This commit is contained in:
dim 2014-11-24 20:57:20 +00:00
parent 0ddfaf7ab4
commit 9bedf10b18
14 changed files with 0 additions and 202 deletions

View File

@ -1,11 +0,0 @@
if(HAVE_LIBEDIT)
set(link_libs edit)
endif()
add_llvm_library(LLVMLineEditor
LineEditor.cpp
LINK_LIBS
LLVMSupport
${link_libs}
)

View File

@ -1,22 +0,0 @@
;===- ./lib/LineEditor/LLVMBuild.txt ---------------------------*- Conf -*--===;
;
; The LLVM Compiler Infrastructure
;
; This file is distributed under the University of Illinois Open Source
; License. See LICENSE.TXT for details.
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = LineEditor
parent = Libraries
required_libraries = Support

View File

@ -1,15 +0,0 @@
##===- lib/LineEditor/Makefile -----------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
LIBRARYNAME = LLVMLineEditor
BUILD_ARCHIVE := 1
include $(LEVEL)/Makefile.common

View File

@ -1,8 +0,0 @@
add_llvm_library(LLVMMCAnalysis
MCAtom.cpp
MCFunction.cpp
MCModule.cpp
MCModuleYAML.cpp
MCObjectDisassembler.cpp
MCObjectSymbolizer.cpp
)

View File

@ -1,5 +0,0 @@
[component_0]
type = Library
name = MCAnalysis
parent = Libraries
required_libraries = MC Object Support

View File

@ -1,14 +0,0 @@
##===- lib/MC/MCAnalysys/Makefile --------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../../..
LIBRARYNAME = LLVMMCAnalysis
BUILD_ARCHIVE := 1
include $(LEVEL)/Makefile.common

View File

@ -1,5 +0,0 @@
add_llvm_library(LLVMProfileData
InstrProf.cpp
InstrProfReader.cpp
InstrProfWriter.cpp
)

View File

@ -1,22 +0,0 @@
;===- ./lib/ProfileData/LLVMBuild.txt --------------------------*- Conf -*--===;
;
; The LLVM Compiler Infrastructure
;
; This file is distributed under the University of Illinois Open Source
; License. See LICENSE.TXT for details.
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = ProfileData
parent = Libraries
required_libraries = Support

View File

@ -1,14 +0,0 @@
##===- lib/ProfileData/Makefile ----------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
LIBRARYNAME = LLVMProfileData
BUILD_ARCHIVE := 1
include $(LEVEL)/Makefile.common

View File

@ -1,3 +0,0 @@
add_llvm_library(LLVMPowerPCDisassembler
PPCDisassembler.cpp
)

View File

@ -1,23 +0,0 @@
;===-- ./lib/Target/PowerPC/Disassembler/LLVMBuild.txt ---------*- Conf -*--===;
;
; The LLVM Compiler Infrastructure
;
; This file is distributed under the University of Illinois Open Source
; License. See LICENSE.TXT for details.
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = PowerPCDisassembler
parent = PowerPC
required_libraries = MC PowerPCInfo Support
add_to_library_groups = PowerPC

View File

@ -1,16 +0,0 @@
##===-- lib/Target/PowerPC/Disassembler/Makefile -----------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../../../..
LIBRARYNAME = LLVMPowerPCDisassembler
# Hack: we need to include 'main' PPC target directory to grab private headers
CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common

View File

@ -1,22 +0,0 @@
set(LLVM_LINK_COMPONENTS
Support
)
add_clang_library(clangRewriteFrontend
FixItRewriter.cpp
FrontendActions.cpp
HTMLPrint.cpp
InclusionRewriter.cpp
RewriteMacros.cpp
RewriteModernObjC.cpp
RewriteObjC.cpp
RewriteTest.cpp
LINK_LIBS
clangAST
clangBasic
clangEdit
clangFrontend
clangLex
clangRewrite
)

View File

@ -1,22 +0,0 @@
##===- clang/lib/Rewrite/Makefile --------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
#
# This implements code transformation / rewriting facilities.
#
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ../../..
LIBRARYNAME := clangRewriteFrontend
include $(CLANG_LEVEL)/Makefile
ifeq ($(ENABLE_CLANG_ARCMT),1)
CXX.Flags += -DCLANG_ENABLE_OBJC_REWRITER
endif