From: Chris Lattner Date: Wed, 15 Apr 2009 19:58:08 +0000 (+0000) Subject: move clang specific makefile goop to clang instead of llvm. This may require X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ee50eaf015e3857c04d0ed229f8165faee5544d;p=clang move clang specific makefile goop to clang instead of llvm. This may require updating the llvm tree. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69207 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/Makefile b/include/clang/Basic/Makefile index 39193111b3..f8fefcf84d 100644 --- a/include/clang/Basic/Makefile +++ b/include/clang/Basic/Makefile @@ -3,7 +3,19 @@ BUILT_SOURCES = DiagnosticAnalysisKinds.inc DiagnosticASTKinds.inc \ DiagnosticCommonKinds.inc DiagnosticDriverKinds.inc \ DiagnosticFrontendKinds.inc DiagnosticLexKinds.inc \ DiagnosticParseKinds.inc DiagnosticSemaKinds.inc +# DiagnosticGroups.inc -CLANG_BUILD_DIAGNOSTICS_INC = 1 +TABLEGEN_INC_FILES_COMMON = 1 include $(LEVEL)/Makefile.common + +$(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td Diagnostic%Kinds.td $(TBLGEN) + $(Echo) "Building Clang $(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) diagnostic tables with tblgen" + $(Verb) $(MKDIR) $(@D) + $(Verb) $(TableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $< + + + +# DiagnosticGroups.inc + +