ffd1746d03
This commit merges the latest LLVM sources from the vendor space. It also updates the build glue to match the new sources. Clang's version number is changed to match LLVM's, which means /usr/include/clang/2.0 has been renamed to /usr/include/clang/2.8. Obtained from: projects/clangbsd
51 lines
968 B
Makefile
51 lines
968 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clangsema
|
|
|
|
SRCDIR= tools/clang/lib/Sema
|
|
SRCS= AnalysisBasedWarnings.cpp \
|
|
CodeCompleteConsumer.cpp \
|
|
IdentifierResolver.cpp \
|
|
IdentifierResolver.cpp \
|
|
JumpDiagnostics.cpp \
|
|
ParseAST.cpp \
|
|
Sema.cpp \
|
|
SemaAccess.cpp \
|
|
SemaAttr.cpp \
|
|
SemaCXXCast.cpp \
|
|
SemaCXXScopeSpec.cpp \
|
|
SemaChecking.cpp \
|
|
SemaCodeComplete.cpp \
|
|
SemaDecl.cpp \
|
|
SemaDeclAttr.cpp \
|
|
SemaDeclCXX.cpp \
|
|
SemaDeclObjC.cpp \
|
|
SemaExceptionSpec.cpp \
|
|
SemaExpr.cpp \
|
|
SemaExprCXX.cpp \
|
|
SemaExprObjC.cpp \
|
|
SemaInit.cpp \
|
|
SemaLookup.cpp \
|
|
SemaObjCProperty.cpp \
|
|
SemaOverload.cpp \
|
|
SemaStmt.cpp \
|
|
SemaTemplate.cpp \
|
|
SemaTemplateDeduction.cpp \
|
|
SemaTemplateInstantiate.cpp \
|
|
SemaTemplateInstantiate.cpp \
|
|
SemaTemplateInstantiateDecl.cpp \
|
|
SemaType.cpp \
|
|
TargetAttributesSema.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
DeclNodes \
|
|
DiagnosticASTKinds \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticParseKinds \
|
|
DiagnosticSemaKinds \
|
|
StmtNodes \
|
|
arm_neon
|
|
|
|
.include "../clang.lib.mk"
|