2015-10-15 10:25:28 +02:00

38 lines
542 B
Makefile

# $NetBSD: Makefile,v 1.4 2015/01/29 20:41:33 joerg Exp $
PROG_CXX= clang-format
NOMAN= yes
.include <bsd.init.mk>
.PATH: ${CLANG_SRCDIR}/tools/clang-format
SRCS= ClangFormat.cpp
CLANG_LIBS+= \
clangFormat \
clangToolingCore \
clangTooling \
clangFrontend \
clangSerialization \
clangDriver \
clangParse \
clangRewrite \
clangSema \
clangEdit \
clangAnalysis \
clangAST \
clangLex \
clangBasic
LLVM_LIBS+= \
BitReader \
MCParser \
MC \
Option \
Support
.include "${.PARSEDIR}/../../link.mk"
.include <bsd.prog.mk>