139f7f9bf5
upcoming 3.3 release (branching and freezing expected in a few weeks). Preliminary release notes can be found at the usual location: <http://llvm.org/docs/ReleaseNotes.html> An MFC is planned once the actual 3.3 release is finished.
43 lines
794 B
Makefile
43 lines
794 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= clangbasic
|
|
|
|
SRCDIR= tools/clang/lib/Basic
|
|
SRCS= Builtins.cpp \
|
|
CharInfo.cpp \
|
|
Diagnostic.cpp \
|
|
DiagnosticIDs.cpp \
|
|
FileManager.cpp \
|
|
FileSystemStatCache.cpp \
|
|
IdentifierTable.cpp \
|
|
LangOptions.cpp \
|
|
Module.cpp \
|
|
ObjCRuntime.cpp \
|
|
OpenMPKinds.cpp \
|
|
OperatorPrecedence.cpp \
|
|
SourceLocation.cpp \
|
|
SourceManager.cpp \
|
|
TargetInfo.cpp \
|
|
Targets.cpp \
|
|
TokenKinds.cpp \
|
|
Version.cpp \
|
|
VersionTuple.cpp
|
|
|
|
TGHDRS= DiagnosticAnalysisKinds \
|
|
DiagnosticASTKinds \
|
|
DiagnosticCommentKinds \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticDriverKinds \
|
|
DiagnosticFrontendKinds \
|
|
DiagnosticGroups \
|
|
DiagnosticIndexName \
|
|
DiagnosticLexKinds \
|
|
DiagnosticParseKinds \
|
|
DiagnosticSemaKinds \
|
|
DiagnosticSerializationKinds \
|
|
arm_neon
|
|
|
|
.include "../clang.lib.mk"
|