22 lines
398 B
Makefile
22 lines
398 B
Makefile
# $NetBSD: Makefile,v 1.7 2012/09/23 17:22:25 joerg Exp $
|
|
|
|
LIB= clangTooling
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${CLANG_SRCDIR}/lib/Tooling
|
|
|
|
SRCS+= ArgumentsAdjusters.cpp \
|
|
CommonOptionsParser.cpp \
|
|
CompilationDatabase.cpp \
|
|
JSONCompilationDatabase.cpp \
|
|
Refactoring.cpp \
|
|
RefactoringCallbacks.cpp \
|
|
Tooling.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|