blob: bf8685885f290f685010c9811cac20e7cad9b0f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $FreeBSD$
.include <src.opts.mk>
LIB= clangrewritefrontend
SRCDIR= tools/clang/lib/Frontend/Rewrite
SRCS= FixItRewriter.cpp \
FrontendActions.cpp \
HTMLPrint.cpp \
InclusionRewriter.cpp \
RewriteMacros.cpp \
RewriteTest.cpp
.if ${MK_CLANG_EXTRAS} != "no"
SRCS+= RewriteModernObjC.cpp \
RewriteObjC.cpp
.endif
TGHDRS= AttrList \
AttrParsedAttrList \
Attrs \
CommentCommandList \
DeclNodes \
DiagnosticCommonKinds \
DiagnosticFrontendKinds \
StmtNodes
.include "../clang.lib.mk"
|