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