mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
22 lines
970 B
Makefile
22 lines
970 B
Makefile
LEVEL = ../../../../..
|
|
BUILT_SOURCES = DiagnosticAnalysisKinds.inc DiagnosticASTKinds.inc \
|
|
DiagnosticCommonKinds.inc DiagnosticDriverKinds.inc \
|
|
DiagnosticFrontendKinds.inc DiagnosticLexKinds.inc \
|
|
DiagnosticParseKinds.inc DiagnosticSemaKinds.inc \
|
|
DiagnosticGroups.inc
|
|
|
|
TABLEGEN_INC_FILES_COMMON = 1
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
INPUT_TDS = $(wildcard $(PROJ_SRC_DIR)/Diagnostic*.td)
|
|
|
|
$(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td Diagnostic%Kinds.td $(TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang $(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) diagnostic tables with tblgen"
|
|
$(Verb) $(TableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
|
|
|
|
$(ObjDir)/DiagnosticGroups.inc.tmp : Diagnostic.td DiagnosticGroups.td $(INPUT_TDS) $(TBLGEN) $(ObjDir)/.dir
|
|
$(Echo) "Building Clang diagnostic groups with tblgen"
|
|
$(Verb) $(TableGen) -gen-clang-diag-groups -o $(call SYSPATH, $@) $<
|
|
|
|
|