Home | History | Annotate | Download | only in Edit
      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   DeclNodes.inc \
     18   DiagnosticCommonKinds.inc \
     19   StmtNodes.inc
     20 
     21 LOCAL_SRC_FILES := $(clang_edit_SRC_FILES)
     22 
     23 LOCAL_MODULE:= libclangEdit
     24 
     25 LOCAL_MODULE_TAGS := optional
     26 
     27 include $(CLANG_HOST_BUILD_MK)
     28 include $(CLANG_VERSION_INC_MK)
     29 include $(CLANG_TBLGEN_RULES_MK)
     30 include $(BUILD_HOST_STATIC_LIBRARY)
     31