1 # $NetBSD: Makefile,v 1.1 2019/11/11 22:45:15 joerg Exp $ 2 3 LIB= clangFormat 4 5 .include <bsd.init.mk> 6 7 .PATH: ${CLANG_SRCDIR}/lib/Format 8 9 SRCS+= AffectedRangeManager.cpp \ 10 BreakableToken.cpp \ 11 ContinuationIndenter.cpp \ 12 Format.cpp \ 13 FormatToken.cpp \ 14 FormatTokenLexer.cpp \ 15 NamespaceEndCommentsFixer.cpp \ 16 SortJavaScriptImports.cpp \ 17 TokenAnalyzer.cpp \ 18 TokenAnnotator.cpp \ 19 UnwrappedLineFormatter.cpp \ 20 UnwrappedLineParser.cpp \ 21 UsingDeclarationsSorter.cpp \ 22 WhitespaceManager.cpp 23 24 .if defined(HOSTLIB) 25 .include <bsd.hostlib.mk> 26 .else 27 .include <bsd.lib.mk> 28 .endif 29