summaryrefslogtreecommitdiffstats
path: root/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
commit5640675ac96e287b643c8323147e2ec1bd62bd6c (patch)
tree4f73bea9a3546522dab35a5c4dd85dc498c267f4 /clang-query
parent9cadfa1442c069069b9a62dff1f8921ff8a52a25 (diff)
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 git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@258864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-query')
-rw-r--r--clang-query/Makefile16
-rw-r--r--clang-query/tool/Makefile39
2 files changed, 0 insertions, 55 deletions
diff --git a/clang-query/Makefile b/clang-query/Makefile
deleted file mode 100644
index 13903b98..00000000
--- a/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-query/tool/Makefile b/clang-query/tool/Makefile
deleted file mode 100644
index f62b0b54..00000000
--- a/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) > $@
-