mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
28 lines
462 B
Makefile
28 lines
462 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clangparse
|
|
|
|
SRCDIR= tools/clang/lib/Parse
|
|
SRCS= ParseAST.cpp \
|
|
ParseCXXInlineMethods.cpp \
|
|
ParseDecl.cpp \
|
|
ParseDeclCXX.cpp \
|
|
ParseExpr.cpp \
|
|
ParseExprCXX.cpp \
|
|
ParseInit.cpp \
|
|
ParseObjc.cpp \
|
|
ParsePragma.cpp \
|
|
ParseStmt.cpp \
|
|
ParseTemplate.cpp \
|
|
ParseTentative.cpp \
|
|
Parser.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
DeclNodes \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticParseKinds \
|
|
DiagnosticSemaKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|