34cdd77646
clang-tblgen and clang itself built.
30 lines
498 B
Makefile
30 lines
498 B
Makefile
# $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"
|