diff options
Diffstat (limited to 'lib/clang/libclangrewritefrontend/Makefile')
-rw-r--r-- | lib/clang/libclangrewritefrontend/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/clang/libclangrewritefrontend/Makefile b/lib/clang/libclangrewritefrontend/Makefile new file mode 100644 index 0000000..8c41669 --- /dev/null +++ b/lib/clang/libclangrewritefrontend/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +LIB= clangrewritefrontend + +SRCDIR= tools/clang/lib/Rewrite/Frontend +SRCS= FixItRewriter.cpp \ + FrontendActions.cpp \ + HTMLPrint.cpp \ + InclusionRewriter.cpp \ + RewriteMacros.cpp \ + RewriteModernObjC.cpp \ + RewriteObjC.cpp \ + RewriteTest.cpp + +TGHDRS= AttrList \ + AttrParsedAttrList \ + Attrs \ + CommentCommandList \ + DeclNodes \ + DiagnosticCommonKinds \ + DiagnosticFrontendKinds \ + StmtNodes + +.include "../clang.lib.mk" |