1*0a6a1f1dSLionel Sambuc# $NetBSD: Makefile,v 1.15 2015/01/29 20:41:37 joerg Exp $ 2f4a2713aSLionel Sambuc 3f4a2713aSLionel SambucLIB= clangSema 4f4a2713aSLionel Sambuc 5f4a2713aSLionel Sambuc.include <bsd.init.mk> 6f4a2713aSLionel Sambuc 7f4a2713aSLionel Sambuc.PATH: ${CLANG_SRCDIR}/lib/Sema 8f4a2713aSLionel Sambuc 9f4a2713aSLionel SambucSRCS+= AnalysisBasedWarnings.cpp \ 10f4a2713aSLionel Sambuc AttributeList.cpp \ 11f4a2713aSLionel Sambuc CodeCompleteConsumer.cpp \ 12f4a2713aSLionel Sambuc DeclSpec.cpp \ 13f4a2713aSLionel Sambuc DelayedDiagnostic.cpp \ 14f4a2713aSLionel Sambuc IdentifierResolver.cpp \ 15f4a2713aSLionel Sambuc JumpDiagnostics.cpp \ 16f4a2713aSLionel Sambuc MultiplexExternalSemaSource.cpp \ 17f4a2713aSLionel Sambuc Scope.cpp \ 18f4a2713aSLionel Sambuc ScopeInfo.cpp \ 19f4a2713aSLionel Sambuc Sema.cpp \ 20f4a2713aSLionel Sambuc SemaAccess.cpp \ 21f4a2713aSLionel Sambuc SemaAttr.cpp \ 22*0a6a1f1dSLionel Sambuc SemaCUDA.cpp \ 23f4a2713aSLionel Sambuc SemaCXXScopeSpec.cpp \ 24f4a2713aSLionel Sambuc SemaCast.cpp \ 25f4a2713aSLionel Sambuc SemaChecking.cpp \ 26f4a2713aSLionel Sambuc SemaCodeComplete.cpp \ 27f4a2713aSLionel Sambuc SemaConsumer.cpp \ 28f4a2713aSLionel Sambuc SemaDecl.cpp \ 29f4a2713aSLionel Sambuc SemaDeclAttr.cpp \ 30f4a2713aSLionel Sambuc SemaDeclCXX.cpp \ 31f4a2713aSLionel Sambuc SemaDeclObjC.cpp \ 32f4a2713aSLionel Sambuc SemaExceptionSpec.cpp \ 33f4a2713aSLionel Sambuc SemaExpr.cpp \ 34f4a2713aSLionel Sambuc SemaExprCXX.cpp \ 35f4a2713aSLionel Sambuc SemaExprObjC.cpp \ 36f4a2713aSLionel Sambuc SemaExprMember.cpp \ 37f4a2713aSLionel Sambuc SemaFixItUtils.cpp \ 38f4a2713aSLionel Sambuc SemaInit.cpp \ 39f4a2713aSLionel Sambuc SemaLambda.cpp \ 40f4a2713aSLionel Sambuc SemaLookup.cpp \ 41f4a2713aSLionel Sambuc SemaObjCProperty.cpp \ 42f4a2713aSLionel Sambuc SemaOpenMP.cpp \ 43f4a2713aSLionel Sambuc SemaOverload.cpp \ 44f4a2713aSLionel Sambuc SemaPseudoObject.cpp \ 45f4a2713aSLionel Sambuc SemaStmt.cpp \ 46f4a2713aSLionel Sambuc SemaStmtAsm.cpp \ 47f4a2713aSLionel Sambuc SemaStmtAttr.cpp \ 48f4a2713aSLionel Sambuc SemaTemplate.cpp \ 49f4a2713aSLionel Sambuc SemaTemplateDeduction.cpp \ 50f4a2713aSLionel Sambuc SemaTemplateInstantiate.cpp \ 51f4a2713aSLionel Sambuc SemaTemplateInstantiateDecl.cpp \ 52f4a2713aSLionel Sambuc SemaTemplateVariadic.cpp \ 53f4a2713aSLionel Sambuc SemaType.cpp \ 54f4a2713aSLionel Sambuc TypeLocBuilder.cpp 55f4a2713aSLionel Sambuc 56f4a2713aSLionel Sambuc.if defined(HOSTLIB) 57f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 58f4a2713aSLionel Sambuc.else 59f4a2713aSLionel Sambuc.include <bsd.lib.mk> 60f4a2713aSLionel Sambuc.endif 61