summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-query
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-01-26 21:31:36 +0000
committerChris Bieneman <beanz@apple.com>2016-01-26 21:31:36 +0000
commit2cc7fec76a0ad622f1fcdb5ffee93cf5d53c08ee (patch)
tree408ec911c702ae9ed6f26c6fb7284e7fae639f86 /clang-tools-extra/clang-query
parent63a81b1415491e39cfd886397fdbdfb4b9142631 (diff)
downloadbcm5719-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-query')
-rw-r--r--clang-tools-extra/clang-query/Makefile16
-rw-r--r--clang-tools-extra/clang-query/tool/Makefile39
2 files changed, 0 insertions, 55 deletions
diff --git a/clang-tools-extra/clang-query/Makefile b/clang-tools-extra/clang-query/Makefile
deleted file mode 100644
index 13903b98a8c..00000000000
--- a/clang-tools-extra/clang-query/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-##===- tools/extra/clang-query/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 := clangQuery
-include $(CLANG_LEVEL)/../../Makefile.config
-
-DIRS = tool
-
-include $(CLANG_LEVEL)/Makefile
diff --git a/clang-tools-extra/clang-query/tool/Makefile b/clang-tools-extra/clang-query/tool/Makefile
deleted file mode 100644
index f62b0b54131..00000000000
--- a/clang-tools-extra/clang-query/tool/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-##===- tools/extra/clang-query/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 := ../../../..
-include $(CLANG_LEVEL)/../../Makefile.config
-
-TOOLNAME = clang-query
-
-# No plugins, optimize startup time.
-TOOL_NO_EXPORTS = 1
-
-SOURCES = ClangQuery.cpp
-
-LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc mcparser option
-USEDLIBS = clangQuery.a clangDynamicASTMatchers.a clangFormat.a clangTooling.a \
- clangFrontend.a clangSerialization.a clangDriver.a clangRewriteFrontend.a \
- LLVMLineEditor.a clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
- clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
-
-include $(CLANG_LEVEL)/Makefile
-
-CPP.Flags += -I$(PROJ_SRC_DIR)/..
-
-# BUILT_SOURCES gets used as a prereq for many top-level targets. However, at
-# the point those targets are defined, $(ObjDir) hasn't been defined and so the
-# directory to create becomes /<name>/ which is not what we want. So instead,
-# this .objdir recipe is defined at at point where $(ObjDir) is defined and
-# it's specialized to $(ObjDir) to ensure it only works on targets we want it
-# to.
-$(ObjDir)/%.objdir:
- $(Verb) $(MKDIR) $(ObjDir)/$* > /dev/null
- $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
-
OpenPOWER on IntegriCloud