1 LOCAL_PATH:= $(call my-dir) 2 3 clang_edit_SRC_FILES := \ 4 Commit.cpp \ 5 EditedSource.cpp \ 6 RewriteObjCFoundationAPI.cpp 7 8 9 # For the host only 10 # ===================================================== 11 include $(CLEAR_VARS) 12 include $(CLEAR_TBLGEN_VARS) 13 14 TBLGEN_TABLES := \ 15 Attrs.inc \ 16 AttrList.inc \ 17 CommentCommandList.inc \ 18 CommentNodes.inc \ 19 DeclNodes.inc \ 20 DiagnosticCommonKinds.inc \ 21 StmtNodes.inc 22 23 LOCAL_SRC_FILES := $(clang_edit_SRC_FILES) 24 25 LOCAL_MODULE:= libclangEdit 26 27 LOCAL_MODULE_TAGS := optional 28 29 include $(CLANG_HOST_BUILD_MK) 30 include $(CLANG_VERSION_INC_MK) 31 include $(CLANG_TBLGEN_RULES_MK) 32 include $(BUILD_HOST_STATIC_LIBRARY) 33