mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-12 07:31:12 -04:00
38 lines
542 B
Makefile
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>
|