1# $OpenBSD: Makefile,v 1.4 2021/04/28 12:55:42 patrick Exp $ 2 3LIB= lldbSymbol 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= ArmUnwindInfo.cpp \ 9 Block.cpp \ 10 CompactUnwindInfo.cpp \ 11 CompileUnit.cpp \ 12 CompilerDecl.cpp \ 13 CompilerDeclContext.cpp \ 14 CompilerType.cpp \ 15 DWARFCallFrameInfo.cpp \ 16 DebugMacros.cpp \ 17 Declaration.cpp \ 18 DeclVendor.cpp \ 19 FuncUnwinders.cpp \ 20 Function.cpp \ 21 LineEntry.cpp \ 22 LineTable.cpp \ 23 LocateSymbolFile.cpp \ 24 ObjectFile.cpp \ 25 PostfixExpression.cpp \ 26 Symbol.cpp \ 27 SymbolContext.cpp \ 28 SymbolFile.cpp \ 29 SymbolVendor.cpp \ 30 Symtab.cpp \ 31 Type.cpp \ 32 TypeList.cpp \ 33 TypeMap.cpp \ 34 TypeSystem.cpp \ 35 UnwindPlan.cpp \ 36 UnwindTable.cpp \ 37 Variable.cpp \ 38 VariableList.cpp 39 40.PATH: ${.CURDIR}/../../../llvm/lldb/source/Symbol 41 42install: 43 @# Nothing here so far ... 44 45.include <bsd.lib.mk> 46 47CPPFLAGS+= ${LLDB_INCLUDES} 48CPPFLAGS+= ${CLANG_INCLUDES} 49