1 # $NetBSD: Makefile,v 1.2 2021/05/30 01:56:58 joerg Exp $ 2 3 LIB= clangToolingTransformer 4 5 .include <bsd.init.mk> 6 7 .PATH: ${CLANG_SRCDIR}/lib/Tooling/Transformer 8 9 SRCS+= Parsing.cpp \ 10 RangeSelector.cpp \ 11 RewriteRule.cpp \ 12 SourceCodeBuilders.cpp \ 13 SourceCode.cpp \ 14 Stencil.cpp \ 15 Transformer.cpp 16 17 .if defined(HOSTLIB) 18 .include <bsd.hostlib.mk> 19 .else 20 .include <bsd.lib.mk> 21 .endif 22