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   AttrParsedAttrList.inc    \
     12   CommentCommandList.inc \
     13   CommentNodes.inc \
     14   DeclNodes.inc \
     15   DiagnosticCommonKinds.inc \
     16   DiagnosticGroups.inc \
     17   DiagnosticSemaKinds.inc \
     18   StmtNodes.inc
     19 
     20 clang_arc_migrate_SRC_FILES := \
     21   ARCMT.cpp \
     22   ARCMTActions.cpp \
     23   FileRemapper.cpp \
     24   ObjCMT.cpp \
     25   PlistReporter.cpp \
     26   TransAPIUses.cpp \
     27   TransARCAssign.cpp \
     28   TransAutoreleasePool.cpp \
     29   TransBlockObjCVariable.cpp \
     30   TransEmptyStatementsAndDealloc.cpp \
     31   TransformActions.cpp \
     32   Transforms.cpp \
     33   TransGCAttrs.cpp \
     34   TransGCCalls.cpp \
     35   TransProperties.cpp \
     36   TransRetainReleaseDealloc.cpp \
     37   TransUnbridgedCasts.cpp \
     38   TransUnusedInitDelegate.cpp \
     39   TransZeroOutPropsInDealloc.cpp
     40 
     41 LOCAL_SRC_FILES := $(clang_arc_migrate_SRC_FILES)
     42 
     43 LOCAL_MODULE := libclangARCMigrate
     44 LOCAL_MODULE_TAGS := optional
     45 
     46 include $(CLANG_HOST_BUILD_MK)
     47 include $(CLANG_TBLGEN_RULES_MK)
     48 include $(BUILD_HOST_STATIC_LIBRARY)
     49