27 lines
535 B
Makefile
27 lines
535 B
Makefile
|
# $NetBSD: Makefile,v 1.4 2013/07/07 21:36:42 joerg Exp $
|
||
|
|
||
|
PROG_CXX= clang-tblgen
|
||
|
NOMAN= yes
|
||
|
|
||
|
.include <bsd.init.mk>
|
||
|
|
||
|
.PATH: ${CLANG_SRCDIR}/utils/TableGen
|
||
|
|
||
|
SRCS= ClangASTNodesEmitter.cpp \
|
||
|
ClangAttrEmitter.cpp \
|
||
|
ClangCommentCommandInfoEmitter.cpp \
|
||
|
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp \
|
||
|
ClangCommentHTMLTagsEmitter.cpp \
|
||
|
ClangDiagnosticsEmitter.cpp \
|
||
|
ClangSACheckersEmitter.cpp \
|
||
|
NeonEmitter.cpp \
|
||
|
TableGen.cpp
|
||
|
|
||
|
LLVM_LIBS+= \
|
||
|
TableGen \
|
||
|
Support
|
||
|
|
||
|
.include "${.PARSEDIR}/../../link.mk"
|
||
|
|
||
|
.include <bsd.prog.mk>
|