
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2015/01/29 20:41:38 joerg Exp $
|
|
|
|
LIB= lldbInterpreter
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLDB_SRCDIR}/source/Interpreter
|
|
|
|
SRCS+= Args.cpp \
|
|
CommandHistory.cpp \
|
|
CommandInterpreter.cpp \
|
|
CommandObject.cpp \
|
|
CommandObjectRegexCommand.cpp \
|
|
CommandObjectScript.cpp \
|
|
CommandOptionValidators.cpp \
|
|
CommandReturnObject.cpp \
|
|
OptionGroupArchitecture.cpp \
|
|
OptionGroupBoolean.cpp \
|
|
OptionGroupFile.cpp \
|
|
OptionGroupFormat.cpp \
|
|
OptionGroupOutputFile.cpp \
|
|
OptionGroupPlatform.cpp \
|
|
OptionGroupString.cpp \
|
|
OptionGroupUInt64.cpp \
|
|
OptionGroupUUID.cpp \
|
|
OptionGroupValueObjectDisplay.cpp \
|
|
OptionValue.cpp \
|
|
OptionValueArch.cpp \
|
|
OptionValueArgs.cpp \
|
|
OptionValueArray.cpp \
|
|
OptionValueBoolean.cpp \
|
|
OptionValueChar.cpp \
|
|
OptionValueDictionary.cpp \
|
|
OptionValueEnumeration.cpp \
|
|
OptionValueFileSpec.cpp \
|
|
OptionValueFileSpecLIst.cpp \
|
|
OptionValueFormat.cpp \
|
|
OptionValuePathMappings.cpp \
|
|
OptionValueProperties.cpp \
|
|
OptionValueRegex.cpp \
|
|
OptionValueSInt64.cpp \
|
|
OptionValueString.cpp \
|
|
OptionValueUInt64.cpp \
|
|
OptionValueUUID.cpp \
|
|
OptionGroupVariable.cpp \
|
|
OptionGroupWatchpoint.cpp \
|
|
Options.cpp \
|
|
Property.cpp \
|
|
PythonDataObjects.cpp \
|
|
ScriptInterpreter.cpp \
|
|
ScriptInterpreterNone.cpp \
|
|
ScriptInterpreterPython.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|