1 # $NetBSD: Makefile,v 1.2 2021/05/30 01:56:58 joerg Exp $ 2 3 LIB= clangToolingSyntax 4 5 .include <bsd.init.mk> 6 7 .PATH: ${CLANG_SRCDIR}/lib/Tooling/Syntax 8 9 SRCS+= BuildTree.cpp \ 10 ComputeReplacements.cpp \ 11 Mutations.cpp \ 12 Nodes.cpp \ 13 Synthesis.cpp \ 14 Tokens.cpp \ 15 Tree.cpp 16 17 .if defined(HOSTLIB) 18 .include <bsd.hostlib.mk> 19 .else 20 .include <bsd.lib.mk> 21 .endif 22