blob: f9d3ed2785db44b635581343fb0ca0972dba8b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:17 joerg Exp $
LIB= clangToolingInclusions
.include <bsd.init.mk>
.PATH: ${CLANG_SRCDIR}/lib/Tooling/Inclusions
SRCS+= HeaderIncludes.cpp \
IncludeStyle.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|