xref: /minix3/external/bsd/llvm/lib/libclangBasic/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.10 2013/04/25 13:59:58 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	clangBasic
4*f4a2713aSLionel Sambuc
5*f4a2713aSLionel Sambuc.include <bsd.init.mk>
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc.PATH: ${CLANG_SRCDIR}/lib/Basic
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel SambucSRCS+=	Builtins.cpp \
10*f4a2713aSLionel Sambuc	CharInfo.cpp \
11*f4a2713aSLionel Sambuc	Diagnostic.cpp \
12*f4a2713aSLionel Sambuc	DiagnosticIDs.cpp \
13*f4a2713aSLionel Sambuc	FileManager.cpp \
14*f4a2713aSLionel Sambuc	FileSystemStatCache.cpp \
15*f4a2713aSLionel Sambuc	IdentifierTable.cpp \
16*f4a2713aSLionel Sambuc	LangOptions.cpp \
17*f4a2713aSLionel Sambuc	Module.cpp \
18*f4a2713aSLionel Sambuc	ObjCRuntime.cpp \
19*f4a2713aSLionel Sambuc	OpenMPKinds.cpp \
20*f4a2713aSLionel Sambuc	OperatorPrecedence.cpp \
21*f4a2713aSLionel Sambuc	SourceLocation.cpp \
22*f4a2713aSLionel Sambuc	SourceManager.cpp \
23*f4a2713aSLionel Sambuc	TargetInfo.cpp \
24*f4a2713aSLionel Sambuc	Targets.cpp \
25*f4a2713aSLionel Sambuc	TokenKinds.cpp \
26*f4a2713aSLionel Sambuc	Version.cpp \
27*f4a2713aSLionel Sambuc	VersionTuple.cpp
28*f4a2713aSLionel Sambuc
29*f4a2713aSLionel SambucCPPFLAGS.Version.cpp=	-DSVN_REVISION=\"${CLANG_REVISION}\" \
30*f4a2713aSLionel Sambuc			-DLLVM_REVISION=\"${LLVM_REVISION}\"
31*f4a2713aSLionel Sambuc
32*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
33*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
34*f4a2713aSLionel Sambuc.else
35*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
36*f4a2713aSLionel Sambuc.endif
37