1# $OpenBSD: Makefile,v 1.8 2020/08/03 14:45:28 patrick Exp $ 2 3LIB= clangBasic 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= ${CLANG_INCLUDES} 8CPPFLAGS+= -I${CLANG_SRCS}/lib/Basic 9 10.include <bsd.own.mk> 11SRCS= Attributes.cpp \ 12 Builtins.cpp \ 13 CharInfo.cpp \ 14 CodeGenOptions.cpp \ 15 Cuda.cpp \ 16 Diagnostic.cpp \ 17 DiagnosticIDs.cpp \ 18 DiagnosticOptions.cpp \ 19 FileManager.cpp \ 20 FileSystemStatCache.cpp \ 21 FixedPoint.cpp \ 22 IdentifierTable.cpp \ 23 LangOptions.cpp \ 24 LangStandards.cpp \ 25 Module.cpp \ 26 ObjCRuntime.cpp \ 27 OpenMPKinds.cpp \ 28 OperatorPrecedence.cpp \ 29 SanitizerBlacklist.cpp \ 30 SanitizerSpecialCaseList.cpp \ 31 Sanitizers.cpp \ 32 SourceLocation.cpp \ 33 SourceManager.cpp \ 34 Stack.cpp \ 35 TargetInfo.cpp \ 36 Targets.cpp \ 37 TokenKinds.cpp \ 38 Version.cpp \ 39 Warnings.cpp \ 40 XRayInstr.cpp \ 41 XRayLists.cpp 42 43.PATH: ${.CURDIR}/../../../llvm/clang/lib/Basic 44 45install: 46 @# Nothing here so far ... 47 48.include <bsd.lib.mk> 49