1# $OpenBSD: Makefile,v 1.5 2021/04/28 12:55:40 patrick Exp $ 2 3LIB= clangSema 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= -I${.OBJDIR}/../include/clang/Sema \ 8 ${CLANG_INCLUDES} 9 10.include <bsd.own.mk> 11SRCS= AnalysisBasedWarnings.cpp \ 12 CodeCompleteConsumer.cpp \ 13 DeclSpec.cpp \ 14 DelayedDiagnostic.cpp \ 15 IdentifierResolver.cpp \ 16 JumpDiagnostics.cpp \ 17 MultiplexExternalSemaSource.cpp \ 18 ParsedAttr.cpp \ 19 Scope.cpp \ 20 ScopeInfo.cpp \ 21 Sema.cpp \ 22 SemaAccess.cpp \ 23 SemaAttr.cpp \ 24 SemaAvailability.cpp \ 25 SemaCXXScopeSpec.cpp \ 26 SemaCast.cpp \ 27 SemaChecking.cpp \ 28 SemaCodeComplete.cpp \ 29 SemaConcept.cpp \ 30 SemaConsumer.cpp \ 31 SemaCoroutine.cpp \ 32 SemaCUDA.cpp \ 33 SemaDecl.cpp \ 34 SemaDeclAttr.cpp \ 35 SemaDeclCXX.cpp \ 36 SemaDeclObjC.cpp \ 37 SemaExceptionSpec.cpp \ 38 SemaExpr.cpp \ 39 SemaExprCXX.cpp \ 40 SemaExprMember.cpp \ 41 SemaExprObjC.cpp \ 42 SemaFixItUtils.cpp \ 43 SemaInit.cpp \ 44 SemaLambda.cpp \ 45 SemaLookup.cpp \ 46 SemaModule.cpp \ 47 SemaObjCProperty.cpp \ 48 SemaOpenMP.cpp \ 49 SemaOverload.cpp \ 50 SemaPseudoObject.cpp \ 51 SemaStmt.cpp \ 52 SemaStmtAsm.cpp \ 53 SemaStmtAttr.cpp \ 54 SemaSYCL.cpp \ 55 SemaTemplate.cpp \ 56 SemaTemplateDeduction.cpp \ 57 SemaTemplateInstantiate.cpp \ 58 SemaTemplateInstantiateDecl.cpp \ 59 SemaTemplateVariadic.cpp \ 60 SemaType.cpp \ 61 TypeLocBuilder.cpp 62 63.PATH: ${.CURDIR}/../../../llvm/clang/lib/Sema 64 65install: 66 @# Nothing here so far ... 67 68.include <bsd.lib.mk> 69