xref: /openbmc/linux/arch/arm/probes/kprobes/Makefile (revision 03ab8e6297acd1bc0eedaa050e2a1635c576fd11)
1# SPDX-License-Identifier: GPL-2.0
2KASAN_SANITIZE_actions-common.o := n
3KASAN_SANITIZE_actions-arm.o := n
4KASAN_SANITIZE_actions-thumb.o := n
5obj-$(CONFIG_KPROBES)		+= core.o actions-common.o checkers-common.o
6obj-$(CONFIG_ARM_KPROBES_TEST)	+= test-kprobes.o
7test-kprobes-objs		:= test-core.o
8
9ifdef CONFIG_THUMB2_KERNEL
10obj-$(CONFIG_KPROBES)		+= actions-thumb.o checkers-thumb.o
11test-kprobes-objs		+= test-thumb.o
12else
13obj-$(CONFIG_KPROBES)		+= actions-arm.o checkers-arm.o
14obj-$(CONFIG_OPTPROBES)		+= opt-arm.o
15test-kprobes-objs		+= test-arm.o
16endif
17