Home | History | Annotate | Download | only in ARCMigrate
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 # For the host only
      4 # =====================================================
      5 include $(CLEAR_VARS)
      6 include $(CLEAR_TBLGEN_VARS)
      7 
      8 TBLGEN_TABLES := \
      9   Attrs.inc \
     10   AttrList.inc \
     11   DeclNodes.inc \
     12   DiagnosticCommonKinds.inc \
     13   DiagnosticGroups.inc \
     14   DiagnosticSemaKinds.inc \
     15   StmtNodes.inc
     16 
     17 clang_arc_migrate_SRC_FILES := \
     18   ARCMT.cpp \
     19   ARCMTActions.cpp \
     20   FileRemapper.cpp \
     21   PlistReporter.cpp \
     22   TransAPIUses.cpp \
     23   TransARCAssign.cpp \
     24   TransAutoreleasePool.cpp \
     25   TransBlockObjCVariable.cpp \
     26   TransEmptyStatementsAndDealloc.cpp \
     27   TransformActions.cpp \
     28   Transforms.cpp \
     29   TransProperties.cpp \
     30   TransRetainReleaseDealloc.cpp \
     31   TransUnbridgedCasts.cpp \
     32   TransUnusedInitDelegate.cpp \
     33   TransZeroOutPropsInDealloc.cpp
     34 
     35 LOCAL_SRC_FILES := $(clang_arc_migrate_SRC_FILES)
     36 
     37 LOCAL_MODULE := libclangARCMigrate
     38 LOCAL_MODULE_TAGS := optional
     39 
     40 include $(CLANG_HOST_BUILD_MK)
     41 include $(CLANG_TBLGEN_RULES_MK)
     42 include $(BUILD_HOST_STATIC_LIBRARY)
     43