blob: e4c7d46a0f6109572d4fd3aa9374e99562a767de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.8 2012/10/28 17:07:47 joerg Exp $
LIB= clangTooling
.include <bsd.init.mk>
.PATH: ${CLANG_SRCDIR}/lib/Tooling
SRCS+= ArgumentsAdjusters.cpp \
CommonOptionsParser.cpp \
CompilationDatabase.cpp \
FileMatchTrie.cpp \
JSONCompilationDatabase.cpp \
Refactoring.cpp \
RefactoringCallbacks.cpp \
Tooling.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|