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