diff options
Diffstat (limited to 'include/clang/AST/Makefile')
-rw-r--r-- | include/clang/AST/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/clang/AST/Makefile b/include/clang/AST/Makefile index a25977cad6..6544e3a68a 100644 --- a/include/clang/AST/Makefile +++ b/include/clang/AST/Makefile @@ -1,13 +1,16 @@ LEVEL = ../../../../.. -BUILT_SOURCES = StmtNodes.inc +BUILT_SOURCES = StmtNodes.inc DeclNodes.inc TABLEGEN_INC_FILES_COMMON = 1 include $(LEVEL)/Makefile.common -INPUT_TDS = $(PROJ_SRC_DIR)/StmtNodes.td +INPUT_TDS = $(PROJ_SRC_DIR)/StmtNodes.td $(PROJ_SRC_DIR)/DeclNodes.td $(ObjDir)/StmtNodes.inc.tmp : StmtNodes.td $(TBLGEN) $(ObjDir)/.dir $(Echo) "Building Clang statement node tables with tblgen" $(Verb) $(TableGen) -gen-clang-stmt-nodes -o $(call SYSPATH, $@) $< +$(ObjDir)/DeclNodes.inc.tmp : DeclNodes.td $(TBLGEN) $(ObjDir)/.dir + $(Echo) "Building Clang declaration node tables with tblgen" + $(Verb) $(TableGen) -gen-clang-decl-nodes -o $(call SYSPATH, $@) $< |