1# $NetBSD: Makefile,v 1.13 2015/01/29 20:41:36 joerg Exp $ 2 3LIB= clangAST 4 5.include <bsd.init.mk> 6 7.PATH: ${CLANG_SRCDIR}/lib/AST 8 9SRCS+= APValue.cpp \ 10 ASTConsumer.cpp \ 11 ASTContext.cpp \ 12 ASTDiagnostic.cpp \ 13 ASTDumper.cpp \ 14 ASTImporter.cpp \ 15 ASTTypeTraits.cpp \ 16 AttrImpl.cpp \ 17 CXXInheritance.cpp \ 18 Comment.cpp \ 19 CommentBriefParser.cpp \ 20 CommentCommandTraits.cpp \ 21 CommentLexer.cpp \ 22 CommentParser.cpp \ 23 CommentSema.cpp \ 24 Decl.cpp \ 25 DeclarationName.cpp \ 26 DeclBase.cpp \ 27 DeclCXX.cpp \ 28 DeclFriend.cpp \ 29 DeclGroup.cpp \ 30 DeclObjC.cpp \ 31 DeclOpenMP.cpp \ 32 DeclPrinter.cpp \ 33 DeclTemplate.cpp \ 34 Expr.cpp \ 35 ExprClassification.cpp \ 36 ExprConstant.cpp \ 37 ExprCXX.cpp \ 38 ExternalASTSource.cpp \ 39 InheritViz.cpp \ 40 ItaniumCXXABI.cpp \ 41 ItaniumMangle.cpp \ 42 Mangle.cpp \ 43 MicrosoftCXXABI.cpp \ 44 MicrosoftMangle.cpp \ 45 NSAPI.cpp \ 46 NestedNameSpecifier.cpp \ 47 ParentMap.cpp \ 48 RawCommentList.cpp \ 49 RecordLayout.cpp \ 50 RecordLayoutBuilder.cpp \ 51 SelectorLocationsKind.cpp \ 52 Stmt.cpp \ 53 StmtIterator.cpp \ 54 StmtPrinter.cpp \ 55 StmtProfile.cpp \ 56 StmtViz.cpp \ 57 TemplateBase.cpp \ 58 TemplateName.cpp \ 59 Type.cpp \ 60 TypeLoc.cpp \ 61 TypePrinter.cpp \ 62 VTTBuilder.cpp \ 63 VTableBuilder.cpp 64 65.if defined(HOSTLIB) 66.include <bsd.hostlib.mk> 67.else 68.include <bsd.lib.mk> 69.endif 70