Home | History | Annotate | Line # | Download | only in clang-format
      1 #	$NetBSD: Makefile,v 1.1 2019/11/11 22:44:58 joerg Exp $
      2 
      3 PROG_CXX=	clang-format
      4 NOMAN=		yes
      5 
      6 .include <bsd.init.mk>
      7 
      8 .PATH: ${CLANG_SRCDIR}/tools/clang-format
      9 
     10 SRCS=	ClangFormat.cpp
     11 
     12 CLANG_LIBS+= \
     13 	clangFormat \
     14 	clangToolingCore \
     15 	clangToolingInclusions \
     16 	clangTooling \
     17 	clangFrontend \
     18 	clangSerialization \
     19 	clangDriver \
     20 	clangParse \
     21 	clangRewrite \
     22 	clangSema \
     23 	clangEdit \
     24 	clangAnalysis \
     25 	clangAST \
     26 	clangLex \
     27 	clangBasic
     28 
     29 LLVM_LIBS+= \
     30 	BitReader \
     31 	MCParser \
     32 	MC \
     33 	Option \
     34 	Support \
     35 	Demangle
     36 
     37 .include "${.PARSEDIR}/../../link.mk"
     38 
     39 .include <bsd.prog.mk>
     40