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