1# $NetBSD: Makefile,v 1.5 2013/01/23 15:03:00 joerg Exp $ 2 3LIB= clangARCMigrate 4 5.include <bsd.init.mk> 6 7.PATH: ${CLANG_SRCDIR}/lib/ARCMigrate 8 9SRCS+= ARCMT.cpp \ 10 ARCMTActions.cpp \ 11 ObjCMT.cpp \ 12 FileRemapper.cpp \ 13 PlistReporter.cpp \ 14 TransAPIUses.cpp \ 15 TransARCAssign.cpp \ 16 TransAutoreleasePool.cpp \ 17 TransBlockObjCVariable.cpp \ 18 TransEmptyStatementsAndDealloc.cpp \ 19 TransGCAttrs.cpp \ 20 TransGCCalls.cpp \ 21 TransProperties.cpp \ 22 TransProtectedScope.cpp \ 23 TransRetainReleaseDealloc.cpp \ 24 TransUnbridgedCasts.cpp \ 25 TransUnusedInitDelegate.cpp \ 26 TransZeroOutPropsInDealloc.cpp \ 27 Transforms.cpp \ 28 TransformActions.cpp 29 30.if defined(HOSTLIB) 31.include <bsd.hostlib.mk> 32.else 33.include <bsd.lib.mk> 34.endif 35