1*76c7fc5fSjoerg# $NetBSD: Makefile,v 1.1 2019/11/11 22:44:58 joerg Exp $ 2*76c7fc5fSjoerg 3*76c7fc5fSjoergPROG_CXX= clang-format 4*76c7fc5fSjoergNOMAN= yes 5*76c7fc5fSjoerg 6*76c7fc5fSjoerg.include <bsd.init.mk> 7*76c7fc5fSjoerg 8*76c7fc5fSjoerg.PATH: ${CLANG_SRCDIR}/tools/clang-format 9*76c7fc5fSjoerg 10*76c7fc5fSjoergSRCS= ClangFormat.cpp 11*76c7fc5fSjoerg 12*76c7fc5fSjoergCLANG_LIBS+= \ 13*76c7fc5fSjoerg clangFormat \ 14*76c7fc5fSjoerg clangToolingCore \ 15*76c7fc5fSjoerg clangToolingInclusions \ 16*76c7fc5fSjoerg clangTooling \ 17*76c7fc5fSjoerg clangFrontend \ 18*76c7fc5fSjoerg clangSerialization \ 19*76c7fc5fSjoerg clangDriver \ 20*76c7fc5fSjoerg clangParse \ 21*76c7fc5fSjoerg clangRewrite \ 22*76c7fc5fSjoerg clangSema \ 23*76c7fc5fSjoerg clangEdit \ 24*76c7fc5fSjoerg clangAnalysis \ 25*76c7fc5fSjoerg clangAST \ 26*76c7fc5fSjoerg clangLex \ 27*76c7fc5fSjoerg clangBasic 28*76c7fc5fSjoerg 29*76c7fc5fSjoergLLVM_LIBS+= \ 30*76c7fc5fSjoerg BitReader \ 31*76c7fc5fSjoerg MCParser \ 32*76c7fc5fSjoerg MC \ 33*76c7fc5fSjoerg Option \ 34*76c7fc5fSjoerg Support \ 35*76c7fc5fSjoerg Demangle 36*76c7fc5fSjoerg 37*76c7fc5fSjoerg.include "${.PARSEDIR}/../../link.mk" 38*76c7fc5fSjoerg 39*76c7fc5fSjoerg.include <bsd.prog.mk> 40