
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2015/01/29 20:41:37 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 \
|
|
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
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|