f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
43 lines
955 B
Makefile
43 lines
955 B
Makefile
# $NetBSD: Makefile,v 1.11 2012/02/28 17:09:31 joerg Exp $
|
|
|
|
LIB= clangFrontend
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${CLANG_SRCDIR}/lib/Frontend
|
|
|
|
SRCS+= ASTConsumers.cpp \
|
|
ASTMerge.cpp \
|
|
ASTUnit.cpp \
|
|
CacheTokens.cpp \
|
|
ChainedDiagnosticConsumer.cpp \
|
|
ChainedIncludesSource.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 \
|
|
MultiplexConsumer.cpp \
|
|
PrintPreprocessedOutput.cpp \
|
|
SerializedDiagnosticPrinter.cpp \
|
|
TextDiagnostic.cpp \
|
|
TextDiagnosticBuffer.cpp \
|
|
TextDiagnosticPrinter.cpp \
|
|
VerifyDiagnosticConsumer.cpp \
|
|
Warnings.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|