f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
37 lines
550 B
Makefile
37 lines
550 B
Makefile
# $NetBSD: Makefile,v 1.2 2013/07/07 21:36:42 joerg Exp $
|
|
|
|
PROG_CXX= clang-format
|
|
NOMAN= yes
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${CLANG_SRCDIR}/tools/clang-format
|
|
|
|
SRCS= ClangFormat.cpp
|
|
|
|
CLANG_LIBS+= \
|
|
clangFormat \
|
|
clangTooling \
|
|
clangFrontend \
|
|
clangSerialization \
|
|
clangDriver \
|
|
clangParse \
|
|
clangRewriteFrontend \
|
|
clangRewriteCore \
|
|
clangSema \
|
|
clangEdit \
|
|
clangAnalysis \
|
|
clangAST \
|
|
clangLex \
|
|
clangBasic
|
|
|
|
LLVM_LIBS+= \
|
|
BitReader \
|
|
MCParser \
|
|
MC \
|
|
Option \
|
|
Support
|
|
|
|
.include "${.PARSEDIR}/../../link.mk"
|
|
|
|
.include <bsd.prog.mk>
|