diff options
Diffstat (limited to 'lib/clang/libclangarcmigrate/Makefile')
-rw-r--r-- | lib/clang/libclangarcmigrate/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/clang/libclangarcmigrate/Makefile b/lib/clang/libclangarcmigrate/Makefile new file mode 100644 index 0000000..6544805 --- /dev/null +++ b/lib/clang/libclangarcmigrate/Makefile @@ -0,0 +1,36 @@ +# $FreeBSD$ + +LIB= clangarcmigrate + +SRCDIR= tools/clang/lib/ARCMigrate +SRCS= ARCMT.cpp \ + ARCMTActions.cpp \ + FileRemapper.cpp \ + ObjCMT.cpp \ + PlistReporter.cpp \ + TransAPIUses.cpp \ + TransARCAssign.cpp \ + TransAutoreleasePool.cpp \ + TransBlockObjCVariable.cpp \ + TransEmptyStatementsAndDealloc.cpp \ + TransformActions.cpp \ + Transforms.cpp \ + TransGCAttrs.cpp \ + TransGCCalls.cpp \ + TransProperties.cpp \ + TransRetainReleaseDealloc.cpp \ + TransUnbridgedCasts.cpp \ + TransUnusedInitDelegate.cpp \ + TransZeroOutPropsInDealloc.cpp + +TGHDRS= AttrList \ + AttrParsedAttrList \ + Attrs \ + CommentNodes \ + DeclNodes \ + DiagnosticCommonKinds \ + DiagnosticGroups \ + DiagnosticSemaKinds \ + StmtNodes + +.include "../clang.lib.mk" |