mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
36 lines
669 B
Makefile
36 lines
669 B
Makefile
# $NetBSD: Makefile,v 1.6 2012/08/09 14:37:07 joerg Exp $
|
|
|
|
LIB= clangBasic
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${CLANG_SRCDIR}/lib/Basic
|
|
|
|
SRCS+= Builtins.cpp \
|
|
ConvertUTF.c \
|
|
ConvertUTFWrapper.cpp \
|
|
Diagnostic.cpp \
|
|
DiagnosticIDs.cpp \
|
|
FileManager.cpp \
|
|
FileSystemStatCache.cpp \
|
|
IdentifierTable.cpp \
|
|
LangOptions.cpp \
|
|
Module.cpp \
|
|
ObjCRuntime.cpp \
|
|
SourceLocation.cpp \
|
|
SourceManager.cpp \
|
|
TargetInfo.cpp \
|
|
Targets.cpp \
|
|
TokenKinds.cpp \
|
|
Version.cpp \
|
|
VersionTuple.cpp
|
|
|
|
CPPFLAGS.Version.cpp= -DSVN_REVISION=\"${CLANG_REVISION}\" \
|
|
-DLLVM_REVISION=\"${LLVM_REVISION}\"
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|