1# $OpenBSD: Makefile,v 1.1 2018/10/04 11:43:29 patrick Exp $ 2 3LIB= lldbPluginObjectFile 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= ELFHeader.cpp \ 9 ObjectFileELF.cpp \ 10 ObjectFileJIT.cpp \ 11 ObjectFileMachO.cpp \ 12 ObjectFilePECOFF.cpp \ 13 WindowsMiniDump.cpp \ 14 15.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Plugins/ObjectFile/ELF 16.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Plugins/ObjectFile/JIT 17.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O 18.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF 19 20install: 21 @# Nothing here so far ... 22 23.include <bsd.lib.mk> 24 25CPPFLAGS+= ${LLDB_INCLUDES} 26CPPFLAGS+= ${CLANG_INCLUDES} 27