blob: 1fa17321ad5c65d5170cbc5777c47660875f3e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $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>
|