mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
57 lines
1.2 KiB
Makefile
57 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= clangfrontend
|
|
|
|
SRCDIR= tools/clang/lib/Frontend
|
|
SRCS= ASTConsumers.cpp \
|
|
ASTMerge.cpp \
|
|
ASTUnit.cpp \
|
|
CacheTokens.cpp \
|
|
ChainedDiagnosticConsumer.cpp \
|
|
ChainedIncludesSource.cpp \
|
|
CodeGenOptions.cpp \
|
|
CompilerInstance.cpp \
|
|
CompilerInvocation.cpp \
|
|
CreateInvocationFromCommandLine.cpp \
|
|
DependencyFile.cpp \
|
|
DependencyGraph.cpp \
|
|
DiagnosticRenderer.cpp \
|
|
FrontendAction.cpp \
|
|
FrontendActions.cpp \
|
|
FrontendOptions.cpp \
|
|
HeaderIncludeGen.cpp \
|
|
InitHeaderSearch.cpp \
|
|
InitPreprocessor.cpp \
|
|
LangStandards.cpp \
|
|
LayoutOverrideSource.cpp \
|
|
LogDiagnosticPrinter.cpp \
|
|
ModuleDependencyCollector.cpp \
|
|
MultiplexConsumer.cpp \
|
|
PrintPreprocessedOutput.cpp \
|
|
SerializedDiagnosticPrinter.cpp \
|
|
SerializedDiagnosticReader.cpp \
|
|
TextDiagnostic.cpp \
|
|
TextDiagnosticBuffer.cpp \
|
|
TextDiagnosticPrinter.cpp \
|
|
VerifyDiagnosticConsumer.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
AttrParsedAttrList \
|
|
AttrVisitor \
|
|
Attrs \
|
|
CommentCommandList \
|
|
CommentNodes \
|
|
DeclNodes \
|
|
DiagnosticASTKinds \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticDriverKinds \
|
|
DiagnosticFrontendKinds \
|
|
DiagnosticLexKinds \
|
|
DiagnosticSemaKinds \
|
|
Options \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|