diff options
| author | Chris Bieneman <beanz@apple.com> | 2016-01-26 21:31:36 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2016-01-26 21:31:36 +0000 |
| commit | 2cc7fec76a0ad622f1fcdb5ffee93cf5d53c08ee (patch) | |
| tree | 408ec911c702ae9ed6f26c6fb7284e7fae639f86 /clang-tools-extra/clang-tidy | |
| parent | 63a81b1415491e39cfd886397fdbdfb4b9142631 (diff) | |
| download | bcm5719-llvm-2cc7fec76a0ad622f1fcdb5ffee93cf5d53c08ee.tar.gz bcm5719-llvm-2cc7fec76a0ad622f1fcdb5ffee93cf5d53c08ee.zip | |
Remove autoconf support
Summary:
This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html
"Now I am become Death, the destroyer of worlds."
-J. Robert Oppenheimer
Reviewers: chandlerc, grosbach, bob.wilson, echristo
Subscribers: cfe-commits, klimek
Differential Revision: http://reviews.llvm.org/D16475
llvm-svn: 258864
Diffstat (limited to 'clang-tools-extra/clang-tidy')
| -rw-r--r-- | clang-tools-extra/clang-tidy/Makefile | 16 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/cert/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/cppcoreguidelines/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/google/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/llvm/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/misc/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/modernize/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/performance/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/readability/Makefile | 12 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/tool/Makefile | 49 | ||||
| -rw-r--r-- | clang-tools-extra/clang-tidy/utils/Makefile | 12 |
11 files changed, 0 insertions, 173 deletions
diff --git a/clang-tools-extra/clang-tidy/Makefile b/clang-tools-extra/clang-tidy/Makefile deleted file mode 100644 index c6509ac04e7..00000000000 --- a/clang-tools-extra/clang-tidy/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -##===- tools/extra/clang-tidy/Makefile ---------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## - -CLANG_LEVEL := ../../.. -LIBRARYNAME := clangTidy -include $(CLANG_LEVEL)/../../Makefile.config - -DIRS = utils cert cppcoreguidelines readability llvm google misc modernize performance tool - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/cert/Makefile b/clang-tools-extra/clang-tidy/cert/Makefile deleted file mode 100644 index 0c0f52701b6..00000000000 --- a/clang-tools-extra/clang-tidy/cert/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/cert/Makefile ----------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyCERTModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/cppcoreguidelines/Makefile b/clang-tools-extra/clang-tidy/cppcoreguidelines/Makefile deleted file mode 100644 index a30b3c0fda5..00000000000 --- a/clang-tools-extra/clang-tidy/cppcoreguidelines/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/cppcoreguidelines/Makefile ----------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyCppCoreGuidelinesModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/google/Makefile b/clang-tools-extra/clang-tidy/google/Makefile deleted file mode 100644 index 4a39fddf51c..00000000000 --- a/clang-tools-extra/clang-tidy/google/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/google/Makefile --------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyGoogleModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/llvm/Makefile b/clang-tools-extra/clang-tidy/llvm/Makefile deleted file mode 100644 index 15ece2e2ca3..00000000000 --- a/clang-tools-extra/clang-tidy/llvm/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/llvm/Makefile ----------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyLLVMModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/misc/Makefile b/clang-tools-extra/clang-tidy/misc/Makefile deleted file mode 100644 index 57e1f1a3eda..00000000000 --- a/clang-tools-extra/clang-tidy/misc/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/misc/Makefile ----------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyMiscModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/modernize/Makefile b/clang-tools-extra/clang-tidy/modernize/Makefile deleted file mode 100644 index 28cf9ef4538..00000000000 --- a/clang-tools-extra/clang-tidy/modernize/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/modernize/Makefile -----------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyModernizeModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/performance/Makefile b/clang-tools-extra/clang-tidy/performance/Makefile deleted file mode 100644 index afa9535bd52..00000000000 --- a/clang-tools-extra/clang-tidy/performance/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/performance/Makefile ---------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyPerformanceModule - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/readability/Makefile b/clang-tools-extra/clang-tidy/readability/Makefile deleted file mode 100644 index 7d9e2acec7e..00000000000 --- a/clang-tools-extra/clang-tidy/readability/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/readability/Makefile ---------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyReadability - -include $(CLANG_LEVEL)/Makefile diff --git a/clang-tools-extra/clang-tidy/tool/Makefile b/clang-tools-extra/clang-tidy/tool/Makefile deleted file mode 100644 index 2f7771df299..00000000000 --- a/clang-tools-extra/clang-tidy/tool/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -##===- clang-tidy/tool/Makefile ----------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## - -CLANG_LEVEL := ../../../.. - -TOOLNAME = clang-tidy - -# No plugins, optimize startup time. -TOOL_NO_EXPORTS = 1 - -include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option -USEDLIBS = clangTidy.a clangTidyLLVMModule.a clangTidyGoogleModule.a \ - clangTidyMiscModule.a clangTidyModernizeModule.a \ - clangTidyPerformanceModule.a clangTidyReadability.a \ - clangTidyUtils.a clangTidyCERTModule.a clangStaticAnalyzerFrontend.a \ - clangTidyCppCoreGuidelinesModule.a \ - clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \ - clangFormat.a clangASTMatchers.a clangTooling.a clangToolingCore.a \ - clangFrontend.a clangSerialization.a clangDriver.a clangParse.a \ - clangSema.a clangAnalysis.a clangRewriteFrontend.a clangRewrite.a \ - clangEdit.a clangAST.a clangLex.a clangBasic.a - -include $(CLANG_LEVEL)/Makefile - -PROJ_sharedir := $(DESTDIR)$(PROJ_prefix)/share/clang - -FILESLIST := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.py)) - -SRCFILES := $(addprefix $(PROJ_SRC_DIR)/, $(FILESLIST)) -DESTFILES := $(addprefix $(PROJ_sharedir)/, $(FILESLIST)) - -$(PROJ_sharedir): - $(Echo) Making install directory: $@ - $(Verb) $(MKDIR) $@ - -$(DESTFILES): $(SRCFILES) $(PROJ_sharedir) - -$(PROJ_sharedir)/%.py: $(PROJ_SRC_DIR)/%.py - $(Echo) Installing script file: $(notdir $<) - $(Verb) $(ScriptInstall) $< $(PROJ_sharedir) - -install-local:: $(DESTFILES) diff --git a/clang-tools-extra/clang-tidy/utils/Makefile b/clang-tools-extra/clang-tidy/utils/Makefile deleted file mode 100644 index b9e0337c746..00000000000 --- a/clang-tools-extra/clang-tidy/utils/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -##===- clang-tidy/google/Makefile --------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## -CLANG_LEVEL := ../../../.. -LIBRARYNAME := clangTidyUtils - -include $(CLANG_LEVEL)/Makefile |

