blob: ffa11b4fe328add6b6c2a140d40c7efad5c3f420 (
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
|
# $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 \
DeclNodes \
DiagnosticCommonKinds \
DiagnosticFrontendKinds \
StmtNodes
.include "../clang.lib.mk"
|