xref: /openbsd-src/gnu/usr.bin/clang/liblldbPluginInstruction/Makefile (revision c04ab3e34662cd5b490d8e7187b529217351cc52)
1# $OpenBSD: Makefile,v 1.4 2021/04/28 12:55:41 patrick Exp $
2
3LIB=	lldbPluginInstruction
4NOPIC=
5NOPROFILE=
6
7.include <bsd.own.mk>
8SRCS=	EmulateInstructionARM.cpp \
9	EmulationStateARM.cpp \
10	EmulateInstructionARM64.cpp \
11	EmulateInstructionMIPS.cpp \
12	EmulateInstructionMIPS64.cpp \
13	EmulateInstructionPPC64.cpp
14
15.PATH:	${.CURDIR}/../../../llvm/lldb/source/Plugins/Instruction/ARM
16.PATH:	${.CURDIR}/../../../llvm/lldb/source/Plugins/Instruction/ARM64
17.PATH:	${.CURDIR}/../../../llvm/lldb/source/Plugins/Instruction/MIPS
18.PATH:	${.CURDIR}/../../../llvm/lldb/source/Plugins/Instruction/MIPS64
19.PATH:	${.CURDIR}/../../../llvm/lldb/source/Plugins/Instruction/PPC64
20
21install:
22	@# Nothing here so far ...
23
24.include <bsd.lib.mk>
25
26CPPFLAGS+=	${LLDB_INCLUDES}
27CPPFLAGS+=	${CLANG_INCLUDES}
28