1*76c7fc5fSjoerg# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:16 joerg Exp $ 2*76c7fc5fSjoerg 3*76c7fc5fSjoergLIB= clangIndex 4*76c7fc5fSjoerg 5*76c7fc5fSjoerg.include <bsd.init.mk> 6*76c7fc5fSjoerg 7*76c7fc5fSjoerg.PATH: ${CLANG_SRCDIR}/lib/Index 8*76c7fc5fSjoerg 9*76c7fc5fSjoergSRCS+= CommentToXML.cpp \ 10*76c7fc5fSjoerg FileIndexRecord.cpp \ 11*76c7fc5fSjoerg IndexBody.cpp \ 12*76c7fc5fSjoerg IndexDecl.cpp \ 13*76c7fc5fSjoerg IndexingAction.cpp \ 14*76c7fc5fSjoerg IndexingContext.cpp \ 15*76c7fc5fSjoerg IndexSymbol.cpp \ 16*76c7fc5fSjoerg IndexTypeSourceInfo.cpp \ 17*76c7fc5fSjoerg USRGeneration.cpp 18*76c7fc5fSjoerg 19*76c7fc5fSjoerg.if defined(HOSTLIB) 20*76c7fc5fSjoerg.include <bsd.hostlib.mk> 21*76c7fc5fSjoerg.else 22*76c7fc5fSjoerg.include <bsd.lib.mk> 23*76c7fc5fSjoerg.endif 24