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