1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.4 2013/07/07 21:36:42 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucPROG_CXX= clang-tblgen 4*f4a2713aSLionel SambucNOMAN= yes 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc.include <bsd.init.mk> 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc.PATH: ${CLANG_SRCDIR}/utils/TableGen 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel SambucSRCS= ClangASTNodesEmitter.cpp \ 11*f4a2713aSLionel Sambuc ClangAttrEmitter.cpp \ 12*f4a2713aSLionel Sambuc ClangCommentCommandInfoEmitter.cpp \ 13*f4a2713aSLionel Sambuc ClangCommentHTMLNamedCharacterReferenceEmitter.cpp \ 14*f4a2713aSLionel Sambuc ClangCommentHTMLTagsEmitter.cpp \ 15*f4a2713aSLionel Sambuc ClangDiagnosticsEmitter.cpp \ 16*f4a2713aSLionel Sambuc ClangSACheckersEmitter.cpp \ 17*f4a2713aSLionel Sambuc NeonEmitter.cpp \ 18*f4a2713aSLionel Sambuc TableGen.cpp 19*f4a2713aSLionel Sambuc 20*f4a2713aSLionel SambucLLVM_LIBS+= \ 21*f4a2713aSLionel Sambuc TableGen \ 22*f4a2713aSLionel Sambuc Support 23*f4a2713aSLionel Sambuc 24*f4a2713aSLionel Sambuc.include "${.PARSEDIR}/../../link.mk" 25*f4a2713aSLionel Sambuc 26*f4a2713aSLionel Sambuc.include <bsd.prog.mk> 27