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