diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2013-11-04 13:02:44 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2013-11-04 13:02:44 +0000 |
| commit | ccdca78d504027fb04a1d7c464a3f3a433cc4738 (patch) | |
| tree | 8f029f63d5cbe3845280c1c8e5b10b55af6257f1 /clang | |
| parent | 4768b3179738c723bbab66b100a26f05457f9a87 (diff) | |
| download | bcm5719-llvm-ccdca78d504027fb04a1d7c464a3f3a433cc4738.tar.gz bcm5719-llvm-ccdca78d504027fb04a1d7c464a3f3a433cc4738.zip | |
Updating the makefile to reflect CMake; addendum to r193989.
llvm-svn: 193990
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/Parse/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Makefile b/clang/include/clang/Parse/Makefile index 203d1525663..00d41fafdde 100644 --- a/clang/include/clang/Parse/Makefile +++ b/clang/include/clang/Parse/Makefile @@ -1,6 +1,6 @@ CLANG_LEVEL := ../../.. TD_SRC_DIR = $(PROJ_SRC_DIR)/../Basic -BUILT_SOURCES = AttrIdentifierArg.inc AttrLateParsed.inc +BUILT_SOURCES = AttrIdentifierArg.inc AttrLateParsed.inc AttrTypeArg.inc TABLEGEN_INC_FILES_COMMON = 1 @@ -12,6 +12,12 @@ $(ObjDir)/AttrIdentifierArg.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \ $(Verb) $(ClangTableGen) -gen-clang-attr-identifier-arg-list -o $(call SYSPATH, $@) \ -I $(PROJ_SRC_DIR)/../../ $< +$(ObjDir)/AttrTypeArg.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \ + $(ObjDir)/.dir + $(Echo) "Building Clang attribute type argument table with tblgen" + $(Verb) $(ClangTableGen) -gen-clang-attr-type-arg-list -o $(call SYSPATH, $@) \ + -I $(PROJ_SRC_DIR)/../../ $< + $(ObjDir)/AttrLateParsed.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \ $(ObjDir)/.dir $(Echo) "Building Clang attribute late-parsed table with tblgen" |

