mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
35 lines
729 B
Makefile
35 lines
729 B
Makefile
# $NetBSD: Makefile,v 1.2 2015/01/29 20:41:38 joerg Exp $
|
|
|
|
LIB= lldbExpression
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLDB_SRCDIR}/source/Expression
|
|
|
|
SRCS+= ASTDumper.cpp \
|
|
ASTResultSynthesizer.cpp \
|
|
ASTStructExtractor.cpp \
|
|
ClangASTSource.cpp \
|
|
ClangExpressionDeclMap.cpp \
|
|
ClangExpressionParser.cpp \
|
|
ClangExpressionVariable.cpp \
|
|
ClangFunction.cpp \
|
|
ClangModulesDeclVendor.cpp \
|
|
ClangPersistentVariables.cpp \
|
|
ClangUserExpression.cpp \
|
|
ClangUtilityFunction.cpp \
|
|
DWARFExpression.cpp \
|
|
ExpressionSourceCode.cpp \
|
|
IRDynamicChecks.cpp \
|
|
IRExecutionUnit.cpp \
|
|
IRForTarget.cpp \
|
|
IRInterpreter.cpp \
|
|
IRMemoryMap.cpp \
|
|
Materializer.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|