1# $OpenBSD: Makefile,v 1.1 2023/11/11 18:35:38 robert Exp $ 2 3LIB= clangIndex 4NOPIC= 5NOPROFILE= 6 7CPPFLAGS+= ${CLANG_INCLUDES} 8 9.include <bsd.own.mk> 10 11SRCS= CommentToXML.cpp \ 12 FileIndexRecord.cpp \ 13 IndexBody.cpp \ 14 IndexDecl.cpp \ 15 IndexingAction.cpp \ 16 IndexingContext.cpp \ 17 IndexSymbol.cpp \ 18 IndexTypeSourceInfo.cpp \ 19 USRGeneration.cpp 20 21.PATH: ${.CURDIR}/../../../llvm/clang/lib/Index 22 23install: 24 @# Nothing here so far ... 25 26.include <bsd.lib.mk> 27