26 lines
420 B
Makefile
26 lines
420 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
LIB= clangserialization
|
||
|
|
||
|
SRCDIR= tools/clang/lib/Serialization
|
||
|
SRCS= ASTCommon.cpp \
|
||
|
ASTReader.cpp \
|
||
|
ASTReaderDecl.cpp \
|
||
|
ASTReaderStmt.cpp \
|
||
|
ASTWriter.cpp \
|
||
|
ASTWriterDecl.cpp \
|
||
|
ASTWriterStmt.cpp \
|
||
|
GeneratePCH.cpp
|
||
|
|
||
|
TGHDRS= AttrList \
|
||
|
AttrPCHRead \
|
||
|
AttrPCHWrite \
|
||
|
Attrs \
|
||
|
DeclNodes \
|
||
|
DiagnosticCommonKinds \
|
||
|
DiagnosticFrontendKinds \
|
||
|
DiagnosticSemaKinds \
|
||
|
StmtNodes
|
||
|
|
||
|
.include "../clang.lib.mk"
|