1# $OpenBSD: Makefile,v 1.7 2019/06/23 22:07:41 patrick Exp $ 2 3LIB= clangAST 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= ${CLANG_INCLUDES} 8 9.include <bsd.own.mk> 10SRCS= APValue.cpp \ 11 ASTConsumer.cpp \ 12 ASTContext.cpp \ 13 ASTDiagnostic.cpp \ 14 ASTDumper.cpp \ 15 ASTImporter.cpp \ 16 ASTImporterLookupTable.cpp \ 17 ASTStructuralEquivalence.cpp \ 18 ASTTypeTraits.cpp \ 19 AttrImpl.cpp \ 20 CXXInheritance.cpp \ 21 Comment.cpp \ 22 CommentBriefParser.cpp \ 23 CommentCommandTraits.cpp \ 24 CommentLexer.cpp \ 25 CommentParser.cpp \ 26 CommentSema.cpp \ 27 ComparisonCategories.cpp \ 28 Decl.cpp \ 29 DeclarationName.cpp \ 30 DeclBase.cpp \ 31 DeclCXX.cpp \ 32 DeclFriend.cpp \ 33 DeclGroup.cpp \ 34 DeclObjC.cpp \ 35 DeclOpenMP.cpp \ 36 DeclPrinter.cpp \ 37 DeclTemplate.cpp \ 38 Expr.cpp \ 39 ExprClassification.cpp \ 40 ExprConstant.cpp \ 41 ExprCXX.cpp \ 42 ExprObjC.cpp \ 43 ExternalASTMerger.cpp \ 44 ExternalASTSource.cpp \ 45 FormatString.cpp \ 46 InheritViz.cpp \ 47 ItaniumCXXABI.cpp \ 48 ItaniumMangle.cpp \ 49 Mangle.cpp \ 50 MicrosoftCXXABI.cpp \ 51 MicrosoftMangle.cpp \ 52 NestedNameSpecifier.cpp \ 53 NSAPI.cpp \ 54 ODRHash.cpp \ 55 OSLog.cpp \ 56 OpenMPClause.cpp \ 57 ParentMap.cpp \ 58 PrintfFormatString.cpp \ 59 QualTypeNames.cpp \ 60 RawCommentList.cpp \ 61 RecordLayout.cpp \ 62 RecordLayoutBuilder.cpp \ 63 ScanfFormatString.cpp \ 64 SelectorLocationsKind.cpp \ 65 Stmt.cpp \ 66 StmtCXX.cpp \ 67 StmtIterator.cpp \ 68 StmtObjC.cpp \ 69 StmtOpenMP.cpp \ 70 StmtPrinter.cpp \ 71 StmtProfile.cpp \ 72 StmtViz.cpp \ 73 TemplateBase.cpp \ 74 TemplateName.cpp \ 75 TextNodeDumper.cpp \ 76 Type.cpp \ 77 TypeLoc.cpp \ 78 TypePrinter.cpp \ 79 VTableBuilder.cpp \ 80 VTTBuilder.cpp 81 82.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/AST 83 84install: 85 @# Nothing here so far ... 86 87.include <bsd.lib.mk> 88