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