branch. This brings us very close to the 3.0 release, which is expected in a week or two. MFC after: 1 week
30 lines
480 B
Makefile
30 lines
480 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clangparse
|
|
|
|
SRCDIR= tools/clang/lib/Parse
|
|
SRCS= ParseAST.cpp \
|
|
ParseCXXInlineMethods.cpp \
|
|
ParseDecl.cpp \
|
|
ParseDeclCXX.cpp \
|
|
ParseExpr.cpp \
|
|
ParseExprCXX.cpp \
|
|
ParseInit.cpp \
|
|
ParseObjc.cpp \
|
|
ParsePragma.cpp \
|
|
ParseStmt.cpp \
|
|
ParseTemplate.cpp \
|
|
ParseTentative.cpp \
|
|
Parser.cpp
|
|
|
|
TGHDRS= AttrLateParsed \
|
|
AttrList \
|
|
Attrs \
|
|
DeclNodes \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticParseKinds \
|
|
DiagnosticSemaKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|