summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2011-10-06 13:03:08 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2011-10-06 13:03:08 +0000
commit51d7777a21b9706d503496c650af06f80d278c1a (patch)
tree8df4c24cf778825426143834aca57c1c863b2792 /Makefile
parent733dbc805facad7cebec5420f6c47c83848cee5f (diff)
downloadclang-51d7777a21b9706d503496c650af06f80d278c1a.tar.gz
clang-51d7777a21b9706d503496c650af06f80d278c1a.tar.bz2
clang-51d7777a21b9706d503496c650af06f80d278c1a.tar.xz
Add the Clang tblgen backends to Clang, and flip the switch to cause
the build systems to use clang-tblgen. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7a983882b5..bf1a77210b 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ ifndef CLANG_LEVEL
IS_TOP_LEVEL := 1
CLANG_LEVEL := .
-DIRS := include lib tools runtime docs unittests
+DIRS := utils/TableGen include lib tools runtime docs unittests
PARALLEL_DIRS :=
@@ -63,9 +63,9 @@ CXX.Flags += -fno-strict-aliasing
# Set up Clang's tblgen.
ifndef CLANG_TBLGEN
ifeq ($(LLVM_CROSS_COMPILING),1)
- CLANG_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
+ CLANG_TBLGEN := $(BuildLLVMToolDir)/clang-tblgen$(BUILD_EXEEXT)
else
- CLANG_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
+ CLANG_TBLGEN := $(LLVMToolDir)/clang-tblgen$(EXEEXT)
endif
endif
ClangTableGen = $(CLANG_TBLGEN) $(TableGen.Flags)