blob: 0bba66bb1f6076255d974c62fcb17a39d2542708 (
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
38
39
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:44:58 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 \
clangToolingInclusions \
clangTooling \
clangFrontend \
clangSerialization \
clangDriver \
clangParse \
clangRewrite \
clangSema \
clangEdit \
clangAnalysis \
clangAST \
clangLex \
clangBasic
LLVM_LIBS+= \
BitReader \
MCParser \
MC \
Option \
Support \
Demangle
.include "${.PARSEDIR}/../../link.mk"
.include <bsd.prog.mk>
|